Searched refs:iBit (Results 1 – 2 of 2) sorted by relevance
49 for(int iBit = 0; iBit < keybits; iBit++) in calcBias() local51 flipbit(&K,keybytes,iBit); in calcBias()53 flipbit(&K,keybytes,iBit); in calcBias()
107 void bitarray_write_bit( unsigned short* bits, int iBit, int iVal) in bitarray_write_bit() argument110 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()