Searched refs:initBits (Results 1 - 4 of 4) sorted by last modified time

/macosx-10.9.5/CF-855.17/
H A DCFBitVector.c366 CFIndex initBits; /* Bits to extract off the front for the prev. byte */ member in struct:_getBitsContext
376 nBits = __CFMin(__CF_BITS_PER_BUCKET - context->initBits, context->totalBits);
377 /* First initBits bits go in *curByte ... */
378 if (0 < context->initBits) {
380 *context->curByte |= (uint8_t)(val >> (__CF_BITS_PER_BUCKET - context->initBits));
382 context->totalBits -= context->initBits;
385 val <<= context->initBits;
391 context->totalBits -= context->initBits;
413 context.initBits = range.location & (__CF_BITS_PER_BUCKET - 1);
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dbmpset.cpp47 initBits();
117 void BMPSet::initBits() {
204 * and not modified by initBits().
H A Dbmpset.h72 void initBits();
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkImgGIF.c1484 static void compress(int initBits, Tcl_Channel handle,
2215 int initBits,
2229 statePtr->codeClear = 1 << (initBits - 1);
2232 statePtr->outputBumpInit = (1 << (initBits - 1)) - 1;
2240 (initBits <= 3) ? 9 : (statePtr->outputBumpInit-1);
2252 statePtr->outputBitsInit = initBits;
2174 compress( int initBits, Tcl_Channel handle, ifunptr readValue, ClientData clientData) argument

Completed in 157 milliseconds