Searched refs:bit_index (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.0-release/sys/dev/isci/scil/
H A Dscic_sds_remote_node_table.c86 U32 bit_index; local
94 for (bit_index = 0; bit_index < 32; bit_index++)
96 if ((group_table[dword_index] & (1 << bit_index)) != 0)
98 return (dword_index * 32) + bit_index;
127 U32 bit_index; local
134 bit_index = group_index % 32;
137 group_table[dword_index] = group_table[dword_index] & ~(1 << bit_index);
161 U32 bit_index; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DLibStdcpp.cpp57 size_t bit_index = (idx & 7); // efficient idx % 8 for bit index local
68 switch (bit_index)
H A DLibCxx.cpp58 size_t bit_index = (idx & 7); // efficient idx % 8 for bit index local
69 switch (bit_index)
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dvalarith.c226 int offset, byte, bit_index;
234 bit_index = index % TARGET_CHAR_BIT;
235 byte >>= (BITS_BIG_ENDIAN ? TARGET_CHAR_BIT - 1 - bit_index : bit_index);
237 VALUE_BITPOS (v) = bit_index;
225 int offset, byte, bit_index; local
H A Deval.c627 int bit_index = (unsigned) range_low % TARGET_CHAR_BIT;
629 bit_index = TARGET_CHAR_BIT - 1 - bit_index;
631 |= 1 << bit_index;
625 int bit_index = (unsigned) range_low % TARGET_CHAR_BIT; local
/freebsd-10.0-release/contrib/gcc/
H A Dc-typeck.c4971 tree bit_index;
5143 p->bit_index = constructor_bit_index;
5285 p->bit_index = constructor_bit_index;
5564 constructor_bit_index = p->bit_index;
4944 tree bit_index; member in struct:constructor_stack

Completed in 127 milliseconds