Home
last modified time | relevance | path

Searched refs:iBit (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/smhasher/src/
DAvalancheTest.h49 for(int iBit = 0; iBit < keybits; iBit++) in calcBias() local
51 flipbit(&K,keybytes,iBit); in calcBias()
53 flipbit(&K,keybytes,iBit); in calcBias()
/external/srec/seti/sltsEngine/src/
Drun_seq_lts.c107 void bitarray_write_bit( unsigned short* bits, int iBit, int iVal) in bitarray_write_bit() argument
110 ASSERT( iBit<256); in bitarray_write_bit()
111 sect = bits[iBit/16]; in bitarray_write_bit()
112 if(iVal) { sect |= (1<<(iBit%16)); } in bitarray_write_bit()
113 else { sect &= ~(1<<(iBit%16)); } in bitarray_write_bit()
114 bits[ iBit/16] = sect; in bitarray_write_bit()