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

1234567891011>>

/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-ptrcheck/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/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/qemu/distrib/sdl-1.2.12/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/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);
/external/webp/src/dec/
H A Dbits.h33 int missing_; // number of missing bits in value_ (8bit)
36 // Initialize the bit reader and the boolean decoder.
49 // Read a bit with proba 'prob'. Speed-critical function!
63 uint32_t bit; local
70 bit = (br->value_ >= value_split);
71 if (bit) {
77 return bit;
90 const uint32_t bit = VP8BitUpdate(br, split); local
94 return bit;
99 const uint32_t bit local
[all...]
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp12 // returns the (currently, 32-bit unsigned) value of the instruction.
47 for (unsigned bit = 0, end = numBits / 2; bit != end; ++bit) {
48 unsigned bitSwapIdx = numBits - bit - 1;
49 Init *OrigBit = BI->getBit(bit);
51 NewBits[bit] = BitSwap;
67 // If the VarBitInit at position 'bit' matches the specified variable then
68 // return the variable bit position. Otherwise return -1.
70 BitsInit *BI, int bit) {
69 getVariableBit(const std::string &VarName, BitsInit *BI, int bit) argument
90 int bit = BI->getNumBits()-1; local
[all...]
/external/ping/
H A Dping_common.h32 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
33 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
34 #define SET(bit) (A(bit) |= B(bit))
35 #define CLR(bit) (A(bit)
[all...]
/external/webkit/Tools/Scripts/
H A Dset-webkit-configuration37 --32-bit Set the default architecture to 32-bit
38 --64-bit Set the default architecture to 64-bit
47 # Handle --64-bit explicitly here, as we don't want our other scripts to accept it
50 if ($opt =~ /^--64-bit$/i) {
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMUtil.java61 // P is the value with only bit i=1 set
85 int bit = 0;
89 block[i] = (byte) ((b >>> 1) | bit);
94 bit = (b & 1) << 7;
101 int bit = 0;
105 block[i] = (b >>> 1) | bit;
110 bit = b << 31;
/external/clang/test/Sema/
H A Dconstant-conversion.c18 struct { int bit : 1; } a; member in struct:__anon3604
19 a.bit = 1; // shouldn't warn
/external/icu4c/layout/
H A DOpenTypeUtilities.cpp15 // Finds the high bit by binary searching
24 le_uint8 bit = 0; local
28 bit += 16;
33 bit += 8;
38 bit += 4;
43 bit += 2;
48 bit += 1;
51 return bit;
56 le_uint8 bit = highBit(recordCount); local
57 le_int32 power = 1 << bit;
83 le_uint8 bit = highBit(recordCount); local
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.10-1.js38 a signed 32 bit integer.
222 for ( var bit = 0; bit < bs.length; bit++ ) {
223 if ( bs.charAt(bit) == "1" && ba.charAt(bit) == "1" ) {
240 for ( var bit = 0; bit < bs.length; bit++ ) {
241 if ( (bs.charAt(bit)
[all...]

Completed in 752 milliseconds

1234567891011>>