/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/ |
vp9_reader.h | 56 unsigned int bit = 0; local 76 bit = 1; 89 return bit; 97 int literal = 0, bit; local 99 for (bit = bits - 1; bit >= 0; bit--) 100 literal |= vp9_read_bit(r) << bit;
|
/external/e2fsprogs/lib/uuid/ |
uuid_types.h | 34 ?==error: undefined 16 bit type 47 ?== error: undefined 32 bit type
|
/external/libvpx/libvpx/vp8/decoder/ |
dboolhuff.h | 64 unsigned int bit = 0; local 87 bit = 1; 100 return bit; 106 int bit; local 108 for (bit = bits - 1; bit >= 0; bit--) 110 z |= (vp8dx_decode_bool(br, 0x80) << bit);
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_reader.h | 48 unsigned int bit = 0; local 68 bit = 1; 81 return bit; 89 int literal = 0, bit; local 91 for (bit = bits - 1; bit >= 0; bit--) 92 literal |= vp9_read_bit(r) << bit;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
dboolhuff.h | 64 unsigned int bit = 0; local 87 bit = 1; 100 return bit; 106 int bit; local 108 for (bit = bits - 1; bit >= 0; bit--) 110 z |= (vp8dx_decode_bool(br, 0x80) << bit);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
vp9_reader.h | 48 unsigned int bit = 0; local 68 bit = 1; 81 return bit; 89 int literal = 0, bit; local 91 for (bit = bits - 1; bit >= 0; bit--) 92 literal |= vp9_read_bit(r) << bit;
|
/ndk/tests/build/issue41297-atomic-64bit/jni/ |
Application.mk | 1 # Note that MIPS doesn't support 64-bit atomic built-in yet
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
BitTreeDecoder.java | 33 int bit = rangeDecoder.DecodeBit(Models, m);
local 35 m += bit;
36 symbol |= (bit << bitIndex);
48 int bit = rangeDecoder.DecodeBit(Models, startIndex + m);
local 50 m += bit;
51 symbol |= (bit << bitIndex);
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
BitString.java | 26 * Represents ASN.1 bit string value 44 * @param bytes array of bytes that represents bit string, 56 throw new IllegalArgumentException("For empty bit string unused bits MUST be 0"); 75 public boolean getBit(int bit) { 76 int offset = bit % 8; 77 int index = bit / 8; 81 public void setBit(int bit, boolean value) { 82 int offset = bit % 8; 83 int index = bit / 8;
|
/external/arduino/hardware/arduino/cores/arduino/ |
wiring.h | 96 #define bitRead(value, bit) (((value) >> (bit)) & 0x01) 97 #define bitSet(value, bit) ((value) |= (1UL << (bit))) 98 #define bitClear(value, bit) ((value) &= ~(1UL << (bit))) 99 #define bitWrite(value, bit, bitvalue) (bitvalue ? bitSet(value, bit) : bitClear(value, bit)) 104 #define bit(b) (1UL << (b) macro [all...] |
/external/blktrace/ |
blkiomon.c | 45 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->pid) 454 struct blk_io_trace *bit; local [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
Bits.java | 20 * Utilities for treating {@code int[]}s as bit sets. 31 * Constructs a bit set to contain bits up to the given index (exclusive). 33 * @param max {@code >= 0;} the maximum bit index (exclusive) 42 * Gets the maximum index (exclusive) for the given bit set. 44 * @param bits {@code non-null;} bit set in question 52 * Gets the value of the bit at the given index. 54 * @param bits {@code non-null;} bit set to operate on 55 * @param idx {@code >= 0, < getMax(set);} which bit 56 * @return the value of the indicated bit 60 int bit = 1 << (idx & 0x1f) local 73 int bit = 1 << (idx & 0x1f); local 90 int bit = 1 << (idx & 0x1f); local 102 int bit = 1 << (idx & 0x1f); local [all...] |
/dalvik/dx/src/com/android/dx/util/ |
Bits.java | 20 * Utilities for treating {@code int[]}s as bit sets. 31 * Constructs a bit set to contain bits up to the given index (exclusive). 33 * @param max {@code >= 0;} the maximum bit index (exclusive) 42 * Gets the maximum index (exclusive) for the given bit set. 44 * @param bits {@code non-null;} bit set in question 52 * Gets the value of the bit at the given index. 54 * @param bits {@code non-null;} bit set to operate on 55 * @param idx {@code >= 0, < getMax(set);} which bit 56 * @return the value of the indicated bit 60 int bit = 1 << (idx & 0x1f) local 73 int bit = 1 << (idx & 0x1f); local 90 int bit = 1 << (idx & 0x1f); local 102 int bit = 1 << (idx & 0x1f); local [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
Bits.java | 20 * Utilities for treating {@code int[]}s as bit sets. 31 * Constructs a bit set to contain bits up to the given index (exclusive). 33 * @param max {@code >= 0;} the maximum bit index (exclusive) 42 * Gets the maximum index (exclusive) for the given bit set. 44 * @param bits {@code non-null;} bit set in question 52 * Gets the value of the bit at the given index. 54 * @param bits {@code non-null;} bit set to operate on 55 * @param idx {@code >= 0, < getMax(set);} which bit 56 * @return the value of the indicated bit 60 int bit = 1 << (idx & 0x1f) local 73 int bit = 1 << (idx & 0x1f); local 90 int bit = 1 << (idx & 0x1f); local 102 int bit = 1 << (idx & 0x1f); local [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3bitset.c | 45 static void antlr3BitsetAdd (pANTLR3_BITSET bitset, ANTLR3_INT32 bit); 47 static ANTLR3_BOOLEAN antlr3BitsetMember (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit); 49 static void antlr3BitsetRemove (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit); 55 static void growToInclude (pANTLR3_BITSET bitset, ANTLR3_INT32 bit); 58 static ANTLR3_UINT32 numWordsToHold (ANTLR3_UINT32 bit); 59 static ANTLR3_UINT32 wordNumber (ANTLR3_UINT32 bit); 213 ANTLR3_UINT64 bit; local 223 while (en->next(en, &key, (void **)(&bit)) == ANTLR3_SUCCESS) 225 bitSet->add(bitSet, (ANTLR3_UINT32)bit); 234 /// Creates a new bitset with at least one 64 bit bset of bits, but a 487 ANTLR3_INT8 bit; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_bitmask.c | 163 unsigned bit; local 170 bit = bm->filled % UTIL_BITMASK_BITS_PER_WORD; 171 mask = 1 << bit; 173 while(bit < UTIL_BITMASK_BITS_PER_WORD) { 177 ++bit; 181 bit = 0; 202 unsigned bit; local 212 bit = index % UTIL_BITMASK_BITS_PER_WORD; 213 mask = 1 << bit; 228 unsigned bit; local 251 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local 278 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local [all...] |
/external/chromium_org/v8/src/ia32/ |
debug-ia32.cc | 176 Generate_DebugBreakCallHelper(masm, edx.bit() | edi.bit(), 185 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0, false); 195 masm, receiver.bit() | name.bit() | value.bit(), 0, false); 211 masm, receiver.bit() | name.bit() | value.bit(), 0, false) [all...] |
/external/chromium_org/v8/src/mips64/ |
debug-mips64.cc | 119 // the other 64-bit arch's. 186 Generate_DebugBreakCallHelper(masm, a1.bit() | a3.bit(), 0); 193 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0); 202 masm, receiver.bit() | name.bit() | value.bit(), 0); 218 masm, receiver.bit() | name.bit() | value.bit(), 0) [all...] |
/external/chromium_org/v8/src/x64/ |
debug-x64.cc | 123 // Reconstruct the 64-bit value from two smis. 159 Generate_DebugBreakCallHelper(masm, rdx.bit() | rdi.bit(), 0, false); 167 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0, false); 177 masm, receiver.bit() | name.bit() | value.bit(), 0, false); 193 masm, receiver.bit() | name.bit() | value.bit(), 0, false) [all...] |
/external/chromium_org/v8/src/x87/ |
debug-x87.cc | 176 Generate_DebugBreakCallHelper(masm, edx.bit() | edi.bit(), 185 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0, false); 195 masm, receiver.bit() | name.bit() | value.bit(), 0, false); 211 masm, receiver.bit() | name.bit() | value.bit(), 0, false) [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_bitmask.c | 163 unsigned bit; local 170 bit = bm->filled % UTIL_BITMASK_BITS_PER_WORD; 171 mask = 1 << bit; 173 while(bit < UTIL_BITMASK_BITS_PER_WORD) { 177 ++bit; 181 bit = 0; 202 unsigned bit; local 212 bit = index % UTIL_BITMASK_BITS_PER_WORD; 213 mask = 1 << bit; 228 unsigned bit; local 251 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local 278 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local [all...] |
/art/compiler/dex/quick/ |
resource_mask.h | 42 * Def/Use encoding in 128-bit use_mask/def_mask. Low positions used for target-specific 75 static constexpr ResourceMask Bit(size_t bit) { 76 return ResourceMask(bit >= 64u ? 0u : UINT64_C(1) << bit, 77 bit >= 64u ? UINT64_C(1) << (bit - 64u) : 0u); 83 DCHECK_CONSTEXPR((start_bit & 1u) == 0u, << start_bit << " isn't even", Bit(0)) 116 void SetBit(size_t bit) { 117 DCHECK_LE(bit, kHighestCommonResource) [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
vp9_treewriter.h | 35 const int bit = (bits >> --len) & 1; local 36 vp9_write(w, bit, probs[i >> 1]); 37 i = tree[i + bit];
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_tcl.h | 46 extern void r200TclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode ); 62 #define TCL_FALLBACK( ctx, bit, mode ) r200TclFallback( ctx, bit, mode )
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_tcl.h | 47 extern void radeonTclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode ); 62 #define TCL_FALLBACK( ctx, bit, mode ) radeonTclFallback( ctx, bit, mode )
|