Lines Matching defs:word
120 uint word = elem >> 5; // Get the longword offset
121 if( word >= size ) // Beyond the last?
124 uint32 datum = data[word] & mask;// Get bit
125 data[word] |= mask; // Set bit
135 uint word = elem >> 5; // Get the longword offset
136 if( word >= size ) return 0; // Beyond the last?
138 return data[word] & mask; // Get bit
143 uint word = elem >> 5; // Get the longword offset
144 if( word >= size ) { // Beyond the last?
148 data[word] |= mask; // Set bit