HomeSort by relevance Sort by last modified time
    Searched refs:bit (Results 151 - 175 of 1259) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/blktrace/
blkparse.c 225 struct blk_io_trace *bit; member in struct:trace
573 static void handle_notify(struct blk_io_trace *bit)
575 void *payload = (caddr_t) bit + sizeof(*bit);
578 switch (bit->action) {
580 add_ppm_hash(bit->pid, payload);
584 if (bit->pdu_len != sizeof(two32))
591 start_timestamp = bit->time;
602 if (bit->pdu_len > 0) {
603 char msg[bit->pdu_len+1]
766 struct blk_io_trace *bit = bit_alloc_list; local
1917 struct blk_io_trace *bit = t->bit; local
1992 struct blk_io_trace *bit = t->bit; local
2043 struct blk_io_trace *bit; local
2160 struct blk_io_trace *bit; local
2318 struct blk_io_trace *bit = NULL; local
2457 struct blk_io_trace *bit; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
wctype.h 58 endian). We define the bit value interpretations here dependent on the
63 # define _ISwbit(bit) (1 << (bit))
65 # define _ISwbit(bit) \
66 ((bit) < 8 ? (int) ((1UL << (bit)) << 24) \
67 : ((bit) < 16 ? (int) ((1UL << (bit)) << 8) \
68 : ((bit) < 24 ? (int) ((1UL << (bit)) >> 8)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
wctype.h 58 endian). We define the bit value interpretations here dependent on the
63 # define _ISwbit(bit) (1 << (bit))
65 # define _ISwbit(bit) \
66 ((bit) < 8 ? (int) ((1UL << (bit)) << 24) \
67 : ((bit) < 16 ? (int) ((1UL << (bit)) << 8) \
68 : ((bit) < 24 ? (int) ((1UL << (bit)) >> 8)
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocationFunctions.h 25 for (size_t bit = 0; bit != sizeof (T1) * 8; ++bit) {
27 const bool maskBit = (pMask >> bit) & 1;
29 result |= static_cast<T1>(valBit) << bit;
  /external/chromium_org/v8/src/arm/
debug-arm.cc 173 Generate_DebugBreakCallHelper(masm, r1.bit() | r3.bit(), 0);
181 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0);
191 masm, receiver.bit() | name.bit() | value.bit(), 0);
207 masm, receiver.bit() | name.bit() | value.bit(), 0)
    [all...]
  /external/chromium_org/v8/src/mips/
debug-mips.cc 183 Generate_DebugBreakCallHelper(masm, a1.bit() | a3.bit(), 0);
190 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0);
200 masm, receiver.bit() | name.bit() | value.bit(), 0);
216 masm, receiver.bit() | name.bit() | value.bit(), 0)
    [all...]
  /external/chromium_org/media/cast/test/utility/
barcode.cc 15 // <-----start----><--one-bit-><-zero bit-><----stop---->
19 // From there on, a "one" bit is encoded as 2u black and 1u white,
20 // and a zero bit is encoded as 1u black and 2u white. After
62 for (size_t bit = 0; bit < bits.size(); bit++) {
63 memset(pos, 0, bits[bit] ? unit_size * 2: unit_size);
118 for (size_t bit = 0; valid && bit < output->size(); bit++)
    [all...]
  /external/chromium_org/third_party/icu/source/samples/layout/
cmaps.cpp 24 // Finds the high bit by binary searching
29 le_uint8 bit = 0; local
33 bit += 16;
38 bit += 8;
43 bit += 4;
48 bit += 2;
53 bit += 1;
56 return bit;
173 le_uint8 bit = highBit(nGroups); local
174 fPower = 1 << bit;
    [all...]
  /external/icu/icu4c/source/samples/layout/
cmaps.cpp 24 // Finds the high bit by binary searching
29 le_uint8 bit = 0; local
33 bit += 16;
38 bit += 8;
43 bit += 4;
48 bit += 2;
53 bit += 1;
56 return bit;
173 le_uint8 bit = highBit(nGroups); local
174 fPower = 1 << bit;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
querymatrix.c 110 unsigned int bit; local
151 for (i = 0, bit = 1; i < 16; i++, bit<<=1) {
183 rv |= bit;
197 rv |= bit;
206 rv |= bit;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
nomem64.asm 5 mov rax, 5 ; optimized to signed 32-bit form
6 mov rax, dword 5 ; explicitly 32-bit
7 mov rax, qword 5 ; explicitly 64-bit
  /external/iptables/extensions/
libxt_connlabel.c 44 info->bit = tmp;
74 const char *name = connlabel_get_name(info->bit);
80 printf(" %u", info->bit);
91 const char *name = connlabel_get_name(info->bit);
98 printf(" --label \"%u\"", info->bit);
107 .userspacesize = offsetof(struct xt_connlabel_mtinfo, bit),
  /external/mesa3d/src/mesa/main/
querymatrix.c 108 unsigned int bit; local
149 for (i = 0, bit = 1; i < 16; i++, bit<<=1) {
181 rv |= bit;
195 rv |= bit;
204 rv |= bit;
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 12 // returns the (currently, 32-bit unsigned) value of the instruction.
44 int getVariableBit(const std::string &VarName, BitsInit *BI, int bit);
54 // If the VarBitInit at position 'bit' matches the specified variable then
55 // return the variable bit position. Otherwise return -1.
57 BitsInit *BI, int bit) {
58 if (VarBitInit *VBI = dyn_cast<VarBitInit>(BI->getBit(bit))) {
62 } else if (VarInit *VI = dyn_cast<VarInit>(BI->getBit(bit))) {
78 int bit = BI->getNumBits()-1; local
80 // Scan for a bit that this contributed to.
81 for (; bit >= 0; )
    [all...]
  /external/iputils/
ping_common.h 106 #define A(bit) (rcvd_tbl.bitmap[(bit) >> BITMAP_SHIFT]) /* identify word in array */
107 #define B(bit) (((bitmap_t)1) << ((bit) & ((1 << BITMAP_SHIFT) - 1))) /* identify bit in word */
111 unsigned bit = seq % MAX_DUP_CHK; local
112 A(bit) |= B(bit);
117 unsigned bit = seq % MAX_DUP_CHK; local
118 A(bit) &= ~B(bit)
123 unsigned bit = seq % MAX_DUP_CHK; local
    [all...]
  /hardware/intel/img/hwcomposer/common/planes/
DisplayPlaneManager.cpp 115 int bit = (1 << i); local
116 if (bit & mask) {
117 mask &= ~bit;
130 int bit = (1 << index); local
132 if (bit & mask) {
133 WLOGTRACE("bit %d was set", index);
137 mask |= bit;
145 int bit = (1 << index); local
146 if (bit & mask) {
147 mask &= ~bit;
288 int bit = (1 << j); local
    [all...]
  /art/disassembler/
disassembler.h 73 static inline bool HasBitSet(uint32_t value, uint32_t bit) {
74 return (value & (1 << bit)) != 0;
  /device/htc/flounder/flounder32/
BoardConfig.mk 16 # Re-enable emulator for 32-bit
  /external/chromium_org/third_party/smhasher/src/
Bitvec.cpp 99 // Bit-level manipulation
101 // These two are from the "Bit Twiddling Hacks" webpage
122 uint32_t getbit ( const void * block, int len, uint32_t bit )
126 int byte = bit >> 3;
127 bit = bit & 0x7;
129 if(byte < len) return (b[byte] >> bit) & 1;
134 uint32_t getbit_wrap ( const void * block, int len, uint32_t bit )
138 int byte = bit >> 3;
139 bit = bit & 0x7
359 uint32_t bit = getbit(blob,len,nbits-1); local
454 uint32_t bit = getbit(blob,len,0); local
    [all...]
  /external/clang/test/Sema/
constant-conversion.c 18 struct { int bit : 1; } a; member in struct:__anon2788
19 a.bit = 1; // shouldn't warn
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
standard.h 22 #define bit(target,mask) ((target) & (mask)) macro
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3bitset.h 71 /// Pointer to the allocated array of bits for this bit set, which
72 /// is an array of 64 bit elements (of the architecture). If we find a
73 /// machine/C compiler that does not know anything about 64 bit values
74 /// then it should be easy enough to produce a 32 bit (or less) version
81 /// Length of the current bit set in ANTLR3_UINT64 units.
97 void (*add) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_INT32 bit);
100 ANTLR3_BOOLEAN (*isMember) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit);
102 void (*remove) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit);
  /external/chromium_org/v8/src/compiler/ia32/
linkage-ia32.cc 25 return esi.bit() | edi.bit() | ebx.bit();
  /external/ipsec-tools/src/racoon/
var.h 42 #define ISSET(exp, bit) (((exp) & (bit)) == (bit))
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_bitmap.c 89 static bool test_bit( const GLubyte *src, GLuint bit )
91 return (src[bit/8] & (1<<(bit % 8))) ? 1 : 0;
94 static void set_bit( GLubyte *dest, GLuint bit )
96 dest[bit/8] |= 1 << (bit % 8);
113 GLuint bit = 0; local
141 for (col = 0; col < w; col++, bit++) {
143 set_bit(dest, bit ^ 7);
149 bit = ALIGN(bit, row_align)
    [all...]

Completed in 3090 milliseconds

1 2 3 4 5 67 8 91011>>