Lines Matching defs:word
108 register uint word = elem >> 5; // Get the longword offset
111 if( word >= size ) // Need to grow set?
113 data[word] |= mask; // Set new bit
121 register uint word = elem >> 5; // Get the longword offset
122 if( word >= size ) // Beyond the last?
125 data[word] &= ~mask; // Clear bit
293 register uint word = elem >> 5; // Get the longword offset
294 if( word >= size ) // Beyond the last?
297 return ((data[word] & mask))!=0; // Return the sense of the bit
308 uint32 word = data[i];
310 for( j= -1; word; j++, word>>=1 );
374 j++; // Next element in word
375 mask = (mask & max_jint) << 1;// Next bit in word
377 while( mask ) { // While have bits in word
384 j = 0; // No more bits in word; setup for next word
386 for( i++; (i<s->size) && (!s->data[i]); i++ ); // Skip to non-zero word