Searched refs:bit (Results 1 - 25 of 604) sorted by relevance

1234567891011>>

/external/libpcap/Win32/Src/
H A Dffs.c47 register int bit; local
51 for (bit = 1; !(mask & 1); bit++)
53 return(bit);
/external/aac/libSBRdec/src/
H A Dhuff_dec.cpp20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
109 int value, bit; local
112 bit = FDKreadBits (hBs, 1);
113 index = h[index][bit];
/external/clang/test/Sema/Inputs/
H A Dconversion.h4 #define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0)
/external/valgrind/memcheck/tests/amd64/
H A Dinsn-pmovmskb.c23 bit means "defined"; 1 means "undefined". */
32 static void print(V128 vbits, V128 val, int bit, int result) argument
34 printf("vbits=0x%016lx%016lx val=0x%016lx%016lx bit=%d result=%d\n",
36 bit, result);
67 int bit = 0; ULong mask = (1UL << bit); local
68 if ((vbits_mask & mask) == 0) print(vbits, val_copy, bit, result & mask);
69 else use(bit, result & mask);
71 bit = 1; mask = (1UL << bit);
[all...]
/external/valgrind/exp-sgcheck/tests/
H A Dhackedbz2.stdout.exp12 bit 0 -5 DATA_ERROR_MAGIC
13 bit 1 -5 DATA_ERROR_MAGIC
14 bit 2 -5 DATA_ERROR_MAGIC
15 bit 3 -5 DATA_ERROR_MAGIC
16 bit 4 -5 DATA_ERROR_MAGIC
17 bit 5 -5 DATA_ERROR_MAGIC
18 bit 6 -5 DATA_ERROR_MAGIC
19 bit 7 -5 DATA_ERROR_MAGIC
20 bit 8 -5 DATA_ERROR_MAGIC
21 bit
[all...]
/external/valgrind/memcheck/tests/
H A Dorigin5-bz2.stdout.exp13 bit 0 -5 DATA_ERROR_MAGIC
14 bit 1 -5 DATA_ERROR_MAGIC
15 bit 2 -5 DATA_ERROR_MAGIC
16 bit 3 -5 DATA_ERROR_MAGIC
17 bit 4 -5 DATA_ERROR_MAGIC
18 bit 5 -5 DATA_ERROR_MAGIC
19 bit 6 -5 DATA_ERROR_MAGIC
20 bit 7 -5 DATA_ERROR_MAGIC
21 bit 8 -5 DATA_ERROR_MAGIC
22 bit
[all...]
H A Dvcpu_bz2.stdout.exp12 bit 0 -5 DATA_ERROR_MAGIC
13 bit 1 -5 DATA_ERROR_MAGIC
14 bit 2 -5 DATA_ERROR_MAGIC
15 bit 3 -5 DATA_ERROR_MAGIC
16 bit 4 -5 DATA_ERROR_MAGIC
17 bit 5 -5 DATA_ERROR_MAGIC
18 bit 6 -5 DATA_ERROR_MAGIC
19 bit 7 -5 DATA_ERROR_MAGIC
20 bit 8 -5 DATA_ERROR_MAGIC
21 bit
[all...]
/external/aac/libAACdec/src/
H A Drvlcbit.cpp20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
96 description: This function returns a bit from the bitstream according to read direction.
103 return: - bit from bitstream
110 UINT bit; local
118 bit = FDKreadBits(bs, 1);
123 bit = FDKreadBits(bs, 1);
129 return (bit);
H A Daacdec_hcr_bit.cpp20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
113 description: This function returns a bit from the bitstream according to read direction.
122 return: - bit from bitstream
129 UINT bit; local
138 bit = FDKreadBits(bs, 1);
149 bit = FDKreadBits(bs, 1);
159 bit = (bit == 0) ? 1 : 0;
163 return (bit);
/external/sepolicy/tools/sepolicy-analyze/
H A Dperm.c10 unsigned int bit; local
15 ebitmap_for_each_bit(&policydb->permissive_map, n, bit)
17 if (ebitmap_node_get_bit(n, bit)) {
18 printf("%s\n", policydb->p_type_val_to_name[bit -1]);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSettings.java94 int bit = 1 << id;
95 set |= bit;
97 persistValue |= bit;
99 persistValue &= ~bit;
102 persisted |= bit;
104 persisted &= ~bit;
113 int bit = 1 << id;
114 return (set & bit) != 0;
137 int bit = 1 << UPLOAD_BANDWIDTH;
138 return (bit
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DBitTreeEncoder.java26 int bit = (symbol >>> bitIndex) & 1;
27 rangeEncoder.Encode(Models, m, bit);
28 m = (m << 1) | bit;
37 int bit = symbol & 1;
38 rangeEncoder.Encode(Models, m, bit);
39 m = (m << 1) | bit;
51 int bit = (symbol >>> bitIndex) & 1;
52 price += Encoder.GetPrice(Models[m], bit);
53 m = (m << 1) + bit;
64 int bit
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dbitwriter_buffer.c19 void vpx_wb_write_bit(struct vpx_write_bit_buffer *wb, int bit) { argument
24 wb->bit_buffer[p] = bit << q;
27 wb->bit_buffer[p] |= bit << q;
33 int bit; local
34 for (bit = bits - 1; bit >= 0; bit--)
35 vpx_wb_write_bit(wb, (data >> bit) & 1);
H A Dbitreader_buffer.c21 const int bit = (rb->bit_buffer[p] >> q) & 1; local
23 return bit;
31 int value = 0, bit; local
32 for (bit = bits - 1; bit >= 0; bit--)
33 value |= vpx_rb_read_bit(rb) << bit;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbitfield.c40 void bitfield_set(struct bitfield *bf, size_t bit) argument
42 if (bit >= bf->max_bits)
44 bf->bits[bit / 8] |= BIT(bit % 8);
48 void bitfield_clear(struct bitfield *bf, size_t bit) argument
50 if (bit >= bf->max_bits)
52 bf->bits[bit / 8] &= ~BIT(bit % 8);
56 int bitfield_is_set(struct bitfield *bf, size_t bit) argument
58 if (bit >
[all...]
H A Dbitfield.h16 void bitfield_set(struct bitfield *bf, size_t bit);
17 void bitfield_clear(struct bitfield *bf, size_t bit);
18 int bitfield_is_set(struct bitfield *bf, size_t bit);
/external/wpa_supplicant_8/src/utils/
H A Dbitfield.c40 void bitfield_set(struct bitfield *bf, size_t bit) argument
42 if (bit >= bf->max_bits)
44 bf->bits[bit / 8] |= BIT(bit % 8);
48 void bitfield_clear(struct bitfield *bf, size_t bit) argument
50 if (bit >= bf->max_bits)
52 bf->bits[bit / 8] &= ~BIT(bit % 8);
56 int bitfield_is_set(struct bitfield *bf, size_t bit) argument
58 if (bit >
[all...]
H A Dbitfield.h16 void bitfield_set(struct bitfield *bf, size_t bit);
17 void bitfield_clear(struct bitfield *bf, size_t bit);
18 int bitfield_is_set(struct bitfield *bf, size_t bit);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbitfield.c40 void bitfield_set(struct bitfield *bf, size_t bit) argument
42 if (bit >= bf->max_bits)
44 bf->bits[bit / 8] |= BIT(bit % 8);
48 void bitfield_clear(struct bitfield *bf, size_t bit) argument
50 if (bit >= bf->max_bits)
52 bf->bits[bit / 8] &= ~BIT(bit % 8);
56 int bitfield_is_set(struct bitfield *bf, size_t bit) argument
58 if (bit >
[all...]
H A Dbitfield.h16 void bitfield_set(struct bitfield *bf, size_t bit);
17 void bitfield_clear(struct bitfield *bf, size_t bit);
18 int bitfield_is_set(struct bitfield *bf, size_t bit);
/external/libvpx/libvpx/vp8/encoder/
H A Dboolhuff.c65 int bit; local
67 for (bit = bits - 1; bit >= 0; bit--)
68 vp8_encode_bool(br, (1 & (data >> bit)), 0x80);
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs28 UInt32 bit = (symbol >> bitIndex) & 1;
29 Models[m].Encode(rangeEncoder, bit);
30 m = (m << 1) | bit;
39 UInt32 bit = symbol & 1;
40 Models[m].Encode(rangeEncoder, bit);
41 m = (m << 1) | bit;
53 UInt32 bit = (symbol >> bitIndex) & 1;
54 price += Models[m].GetPrice(bit);
55 m = (m << 1) + bit;
66 UInt32 bit
[all...]
/external/v8/src/compiler/x64/
H A Dlinkage-x64.cc32 return rbx.bit() | rdi.bit() | rsi.bit() | r12.bit() | r13.bit() |
33 r14.bit() | r15.bit();
35 return rbx.bit() | r12.bit() | r13.bit() | r1
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_connlabel.h10 __u16 bit; member in struct:xt_connlabel_mtinfo
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_connlabel.h10 __u16 bit; member in struct:xt_connlabel_mtinfo

Completed in 670 milliseconds

1234567891011>>