HomeSort by relevance Sort by last modified time
    Searched refs:bit (Results 1 - 25 of 632) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/aac/libSBRdec/src/
huff_dec.cpp 20 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/
conversion.h 4 #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/
hackedbz2.stdout.exp 12 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 9 -5 DATA_ERROR_MAGIC
    [all...]
  /external/valgrind/main/memcheck/tests/
origin5-bz2.stdout.exp 13 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 9 -5 DATA_ERROR_MAGIC
    [all...]
vcpu_bz2.stdout.exp 12 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 9 -5 DATA_ERROR_MAGIC
    [all...]
varinfo6.stdout.exp 12 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 27 0 OK really ok
    [all...]
  /external/aac/libAACdec/src/
rvlcbit.cpp 20 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);
aacdec_hcr_bit.cpp 20 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/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Settings.java 69 int bit = 1 << id; local
70 set |= bit;
72 persistValue |= bit;
74 persistValue &= ~bit;
77 persisted |= bit;
79 persisted &= ~bit;
87 int bit = 1 << id; local
88 return (set & bit) != 0;
110 int bit = 1 << UPLOAD_BANDWIDTH; local
111 return (bit & set) != 0 ? values[UPLOAD_BANDWIDTH] : defaultValue
115 int bit = 1 << DOWNLOAD_BANDWIDTH; local
120 int bit = 1 << ROUND_TRIP_TIME; local
125 int bit = 1 << MAX_CONCURRENT_STREAMS; local
130 int bit = 1 << CURRENT_CWND; local
135 int bit = 1 << DOWNLOAD_RETRANS_RATE; local
140 int bit = 1 << INITIAL_WINDOW_SIZE; local
145 int bit = 1 << CLIENT_CERTIFICATE_VECTOR_SIZE; local
154 int bit = 1 << id; local
160 int bit = 1 << id; local
    [all...]
  /system/core/include/cutils/
bitops.h 39 * int bit = bitmask_ffz(resource_bits, num_resources);
40 * bitmask_set(resource_bits, bit);
42 * if (bitmask_test(resource_bits, bit)) { ... }
44 * bitmask_clear(resource_bits, bit);
61 int bit, result; local
65 bit = ffs(~bitmask[i]);
66 if (bit) {
68 bit--;
69 result = BITS_PER_WORD * i + bit;
78 static inline void bitmask_set(unsigned int *bitmask, int bit)
    [all...]
  /ndk/tests/build/issue41297-atomic-64bit/jni/
Android.mk 4 LOCAL_MODULE := issue41297-atomic-64bit-dynamic-executable
5 LOCAL_SRC_FILES := issue41297-atomic-64bit.c
9 LOCAL_MODULE := issue41297-atomic-64bit-static-executable
10 LOCAL_SRC_FILES := issue41297-atomic-64bit.c
15 LOCAL_MODULE := issue41297-atomic-64bit-shared-lib
16 LOCAL_SRC_FILES := issue41297-atomic-64bit.c
  /external/arduino/hardware/arduino/cores/arduino/
wiring_pulse.c 34 // 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) {
wiring_private.h 41 #define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
44 #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
  /external/libvpx/libvpx/vp8/encoder/
boolhuff.c 65 int bit; local
67 for (bit = bits - 1; bit >= 0; bit--)
68 vp8_encode_bool(br, (1 & (data >> bit)), 0x80);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
Tables1kGCMExponentiator.java 27 int bit = 0; local
32 ensureAvailable(bit);
33 GCMUtil.multiply(y, (byte[])lookupPowX2.elementAt(bit));
35 ++bit;
42 private void ensureAvailable(int bit)
45 if (count <= bit)
54 while (++count <= bit);
  /external/llvm/autoconf/m4/
linux_mixed_64_32.m4 2 # 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/
linux_mixed_64_32.m4 2 # 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/
blkrawverify.c 104 static void dump_trace(FILE *ofp, char *prefix, struct blk_io_trace *bit)
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->error)
148 struct blk_io_trace *bit = malloc(sizeof(struct blk_io_trace)); local
    [all...]
  /bionic/libc/include/
signal.h 61 int bit = signum - 1; // Signal numbers start at 1, but bit positions start at 0. local
62 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t))) {
67 return (int) ((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);
71 int bit = signum - 1; // Signal numbers start at 1, but bit positions start at 0. local
72 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t)))
82 int bit = signum - 1; \/\/ Signal numbers start at 1, but bit positions start at 0. local
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
cpufeature_32.h 125 #define cpu_has(c, bit) (__builtin_constant_p(bit) && ( (((bit)>>5)==0 && (1UL<<((bit)&31) & REQUIRED_MASK0)) || (((bit)>>5)==1 && (1UL<<((bit)&31) & REQUIRED_MASK1)) || (((bit)>>5)==2 && (1UL<<((bit)&31) & REQUIRED_MASK2)) || (((bit)>>5)==3 && (1UL<<((bit)&31) & REQUIRED_MASK3)) || (((bit)>>5)==4 && (1UL<<((bit)&31) & REQUIRED_MASK4)) || (((bit)>>5 (…)
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
cpufeature_32.h 125 #define cpu_has(c, bit) (__builtin_constant_p(bit) && ( (((bit)>>5)==0 && (1UL<<((bit)&31) & REQUIRED_MASK0)) || (((bit)>>5)==1 && (1UL<<((bit)&31) & REQUIRED_MASK1)) || (((bit)>>5)==2 && (1UL<<((bit)&31) & REQUIRED_MASK2)) || (((bit)>>5)==3 && (1UL<<((bit)&31) & REQUIRED_MASK3)) || (((bit)>>5)==4 && (1UL<<((bit)&31) & REQUIRED_MASK4)) || (((bit)>>5 (…)
    [all...]
  /external/kernel-headers/original/asm-x86/
cpufeature_32.h 15 #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)&31) & REQUIRED_MASK2)) ||
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
cpufeature_32.h 111 #define cpu_has(c, bit) (__builtin_constant_p(bit) && ( (((bit)>>5)==0 && (1UL<<((bit)&31) & REQUIRED_MASK0)) || (((bit)>>5)==1 && (1UL<<((bit)&31) & REQUIRED_MASK1)) || (((bit)>>5)==2 && (1UL<<((bit)&31) & REQUIRED_MASK2)) || (((bit)>>5)==3 && (1UL<<((bit)&31) & REQUIRED_MASK3)) || (((bit)>>5)==4 && (1UL<<((bit)&31) & REQUIRED_MASK4)) || (((bit)>>5 (…)
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
cpufeature_32.h 111 #define cpu_has(c, bit) (__builtin_constant_p(bit) && ( (((bit)>>5)==0 && (1UL<<((bit)&31) & REQUIRED_MASK0)) || (((bit)>>5)==1 && (1UL<<((bit)&31) & REQUIRED_MASK1)) || (((bit)>>5)==2 && (1UL<<((bit)&31) & REQUIRED_MASK2)) || (((bit)>>5)==3 && (1UL<<((bit)&31) & REQUIRED_MASK3)) || (((bit)>>5)==4 && (1UL<<((bit)&31) & REQUIRED_MASK4)) || (((bit)>>5 (…)
    [all...]
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
cpufeature_32.h 111 #define cpu_has(c, bit) (__builtin_constant_p(bit) && ( (((bit)>>5)==0 && (1UL<<((bit)&31) & REQUIRED_MASK0)) || (((bit)>>5)==1 && (1UL<<((bit)&31) & REQUIRED_MASK1)) || (((bit)>>5)==2 && (1UL<<((bit)&31) & REQUIRED_MASK2)) || (((bit)>>5)==3 && (1UL<<((bit)&31) & REQUIRED_MASK3)) || (((bit)>>5)==4 && (1UL<<((bit)&31) & REQUIRED_MASK4)) || (((bit)>>5 (…)
    [all...]

Completed in 3744 milliseconds

1 2 3 4 5 6 7 8 91011>>