Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/Binary/ClearBits_.hc

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <haskell2c.h>
#include "cLowBinary.h"

int hs_clearBits (BinHandle bh,int width)
{ unsigned int p;
  /* code based closely on putBits */
   p = (bh->file ? vtell(bh) : mtell(bh));
   if (bh->highwater < p+width) bh->highwater = p+width;
   while (width > 0) {
     int byte    = bh->cptr / 8;
     int avail   = 8 - (bh->cptr % 8);
     if  (width >= avail) {
       bh->cache[byte] = lhs(8-avail,bh->cache[byte]);
       bh->cptr += avail;
       width    -= avail;
       bh->w     = ((bh->w > byte+1) ? bh->w : byte+1);
       if ((byte+1) == CACHESIZE) nextcache(bh);
     } else {
       int rsegment = avail-width;
       bh->cache[byte] = lhs(8-avail,bh->cache[byte])
                       | rhs(rsegment,bh->cache[byte]); 
       bh->cptr += width;
       width     = 0;
       bh->w     = ((bh->w > byte+1) ? bh->w : byte+1);
     }
   }
  return p;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.