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

1234567891011>>

/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/main/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/main/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...]
H A Dvarinfo6.stdout.exp12 bit 0 -5 DATA_ERROR_MAGIC
13 bit 3 -5 DATA_ERROR_MAGIC
14 bit 6 -5 DATA_ERROR_MAGIC
15 bit 9 -5 DATA_ERROR_MAGIC
16 bit 12 -5 DATA_ERROR_MAGIC
17 bit 15 -5 DATA_ERROR_MAGIC
18 bit 18 -5 DATA_ERROR_MAGIC
19 bit 21 -5 DATA_ERROR_MAGIC
20 bit 24 0 OK really ok!
21 bit 2
[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/arduino/hardware/arduino/cores/arduino/
H A Dwiring_pulse.c34 // cache the port and bit of the pin in order to speed up the
37 uint8_t bit = digitalPinToBitMask(pin); local
39 uint8_t stateMask = (state ? bit : 0);
48 while ((*portInputRegister(port) & bit) == stateMask)
53 while ((*portInputRegister(port) & bit) != stateMask)
58 while ((*portInputRegister(port) & bit) == stateMask) {
H A Dwiring_private.h41 #define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
44 #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
H A Dwiring.h94 #define bitRead(value, bit) (((value) >> (bit)) & 0x01)
95 #define bitSet(value, bit) ((value) |= (1UL << (bit)))
96 #define bitClear(value, bit) ((value) &= ~(1UL << (bit)))
97 #define bitWrite(value, bit, bitvalue) (bitvalue ? bitSet(value, bit) : bitClear(value, bit))
102 #define bit( macro
[all...]
/external/llvm/autoconf/m4/
H A Dlinux_mixed_64_32.m42 # Some Linux machines run a 64-bit kernel with a 32-bit userspace. 'uname -m'
6 [AC_CACHE_CHECK(for 32-bit userspace on 64-bit system,llvm_cv_linux_mixed,
/external/llvm/projects/sample/autoconf/m4/
H A Dlinux_mixed_64_32.m42 # Some Linux machines run a 64-bit kernel with a 32-bit userspace. 'uname -m'
6 [AC_CACHE_CHECK(for 32-bit userspace on 64-bit system,llvm_cv_linux_mixed,
/external/blktrace/
H A Dblkrawverify.c104 static void dump_trace(FILE *ofp, char *prefix, struct blk_io_trace *bit) argument
107 fprintf(ofp, " %8s: %08x\n", "magic", bit->magic);
108 fprintf(ofp, " %8s: %u\n", "sequence", bit->sequence);
109 fprintf(ofp, " %8s: %llu\n", "time", (unsigned long long) bit->time);
110 fprintf(ofp, " %8s: %llu\n", "sector", (unsigned long long) bit->sector);
111 fprintf(ofp, " %8s: %u\n", "bytes", bit->bytes);
112 fprintf(ofp, " %8s: %s\n", "action", act_to_str(bit->action));
113 fprintf(ofp, " %8s: %u\n", "bytes", bit->bytes);
114 fprintf(ofp, " %8s: %u\n", "cpu", bit->cpu);
115 fprintf(ofp, " %8s: %u\n", "error", bit
148 struct blk_io_trace *bit = malloc(sizeof(struct blk_io_trace)); local
[all...]
H A Dblkiomon.c45 struct blk_io_trace bit; member in struct:trace
108 struct blk_io_trace *bit = &t->bit; local
114 fprintf(debug.fp, "magic %16d\n", bit->magic);
115 fprintf(debug.fp, "sequence %16d\n", bit->sequence);
116 fprintf(debug.fp, "time %16ld\n", (unsigned long)bit->time);
117 fprintf(debug.fp, "sector %16ld\n", (unsigned long)bit->sector);
118 fprintf(debug.fp, "bytes %16d\n", bit->bytes);
119 fprintf(debug.fp, "action %16x\n", bit->action);
120 fprintf(debug.fp, "pid %16d\n", bit
374 blkiomon_fetch_trace(struct blk_io_trace *bit) argument
431 blkiomon_dump_drvdata(struct blk_io_trace *bit, void *pdu_buf) argument
454 struct blk_io_trace *bit; local
[all...]
/external/kernel-headers/original/asm-x86/
H A Dcpufeature_32.h15 #define NCAPINTS 8 /* N 32-bit words worth of info */
34 #define X86_FEATURE_PSE36 (0*32+17) /* 36-bit PSEs */
119 #define cpu_has(c, bit) \
120 (__builtin_constant_p(bit) && \
121 ( (((bit)>>5)==0 && (1UL<<((bit)&31) & REQUIRED_MASK0)) || \
122 (((bit)>>5)==1 && (1UL<<((bit)&31) & REQUIRED_MASK1)) || \
123 (((bit)>>5)==2 && (1UL<<((bit)
[all...]
/external/qemu-pc-bios/bochs/bios/
H A Dnotes16 dl (bit 0) --> bit 4 # drive number
24 * drive sets the busy bit in Status Reg to 1
26 > drive sets the aborted-command bit in the Error register and
27 error bit in the Status register to 1.
28 > Drive also sets the busy bit in the Status register to 0.
34 transferred, the drive sets the data-request bit to 1, sets
35 the busy bit to 0, and generates an interrupt.
37 the data, the drive sets the data-request bit and the busy bit t
[all...]
/external/bzip2/
H A Dunzcrash.c6 and then repeatedly decompress it, each time with a different bit of
7 the compressed data inverted, so as to test all possible one-bit errors.
64 void flip_bit ( int bit )
66 int byteno = bit / 8;
67 int bitno = bit % 8;
69 //fprintf ( stderr, "(byte %d bit %d mask %d)",
78 int bit; local
102 for (bit = 0; bit < nZ*8; bit
[all...]
/external/icu4c/layoutex/
H A DLXUtilities.cpp14 // Finds the high bit by binary searching
23 le_int8 bit = 0; local
27 bit += 16;
32 bit += 8;
37 bit += 4;
42 bit += 2;
47 bit += 1;
50 return bit;
/external/libsepol/include/sepol/policydb/
H A Debitmap.h14 * an explicitly specified starting bit position within
26 #define MAPBIT 1ULL /* a bit in the node bitmap */
56 static inline unsigned int ebitmap_next(ebitmap_node_t ** n, unsigned int bit) argument
58 if ((bit == ((*n)->startbit + MAPSIZE - 1)) && (*n)->next) {
63 return (bit + 1);
66 static inline int ebitmap_node_get_bit(ebitmap_node_t * n, unsigned int bit) argument
68 if (n->map & (MAPBIT << (bit - n->startbit)))
73 #define ebitmap_for_each_bit(e, n, bit) \
74 for (bit = ebitmap_start(e, &n); bit < ebitmap_lengt
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit_0.c48 Uint8 byte = 0, bit; local
53 bit = (byte&0x80)>>7;
55 *dst = map[bit];
65 Uint8 byte = 0, bit; local
70 bit = (byte&0x80)>>7;
72 *dst = bit;
101 Uint8 byte = 0, bit; local
106 bit = (byte&0x80)>>7;
108 *dst = map[bit];
135 Uint8 byte = 0, bit; local
173 Uint8 byte = 0, bit; local
207 Uint8 byte = 0, bit; local
224 Uint8 byte = 0, bit; local
259 Uint8 byte = 0, bit; local
292 Uint8 byte = 0, bit; local
326 Uint8 byte = 0, bit; local
362 Uint8 byte = 0, bit; local
409 Uint8 byte = 0, bit; local
[all...]
/external/kernel-headers/original/asm-mips/
H A Dbitops.h49 * set_bit - Atomically set a bit in memory
50 * @nr: the bit to set
61 unsigned short bit = nr & SZLONG_MASK; local
73 : "ir" (1UL << bit), "m" (*m));
75 } else if (__builtin_constant_p(bit)) {
85 : "ir" (bit), "m" (*m), "r" (~0));
99 : "ir" (1UL << bit), "m" (*m));
106 mask = 1UL << bit;
114 * clear_bit - Clears a bit in memory
126 unsigned short bit local
203 unsigned short bit = nr & SZLONG_MASK; local
258 unsigned short bit = nr & SZLONG_MASK; local
328 unsigned short bit = nr & SZLONG_MASK; local
395 unsigned short bit = nr & SZLONG_MASK; local
485 unsigned short bit = nr & SZLONG_MASK; local
[all...]
/external/e2fsprogs/lib/uuid/
H A Duuid_types.h34 ?==error: undefined 16 bit type
47 ?== error: undefined 32 bit type
/external/libvpx/vp8/decoder/
H A Ddboolhuff.h70 unsigned int bit = 0; local
90 bit = 1;
104 return bit;
110 int bit; local
112 for (bit = bits - 1; bit >= 0; bit--)
114 z |= (vp8dx_decode_bool(br, 0x80) << bit);
129 * bits from the bitstream. So the last bit in the bitstream will be
/external/libvpx/vp8/encoder/
H A Dboolhuff.c77 void vp8_encode_bool(BOOL_CODER *br, int bit, int probability) argument
88 if (bit)
100 if (bit)
143 int bit; local
145 for (bit = bits - 1; bit >= 0; bit--)
146 vp8_encode_bool(br, (1 & (data >> bit)), 0x80);

Completed in 1837 milliseconds

1234567891011>>