/external/lldb/source/Plugins/Process/Utility/ |
ARMUtils.h | 278 static inline uint32_t bit(const uint32_t val, const uint32_t msbit) function in namespace:lldb_private 320 const uint32_t i = bit(opcode, 26); 367 const uint32_t i = bit(opcode, 26);
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Decoder.java | 78 int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 + matchBit) << 8) + symbol);
local 79 symbol = (symbol << 1) | bit;
80 if (matchBit != bit)
|
/external/ppp/pppd/ |
md4.c | 31 ** This implementation assumes that ints are 32-bit quantities. 72 ** operator will shift in zeros rather than extending the sign bit. 214 unsigned int i, tmp, bit, byte, mask; local 250 bit = count & 7; 254 /* Add padding '1' bit and low-order zeros in last byte */ 255 mask = 1 << (7 - bit); 257 /* If room for bit count, finish up with this block */
|
/external/speex/libspeex/ |
bits.c | 4 Handles bit packing/unpacking 43 /* Maximum size of the bit-stream (for fixed-size allocation) */ 256 int bit; local 257 bit = (d>>(nbBits-1))&1; 258 bits->chars[bits->charPtr] |= bit<<(BITS_PER_CHAR-1-bits->bitPtr);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/ |
x86_abi_support.asm | 14 ; 32/64 bit compatibility macros 16 ; In general, we make the source use 64 bit syntax, then twiddle with it using 17 ; the preprocessor to get the 32 bit syntax on 32 bit platforms. 82 ; Set LIBVPX_YASM_WIN64 if output is Windows 64bit so the code will work if x64 143 ; 64 bit ABI passes arguments in registers. This is a workaround to get up
|
/ndk/build/core/ |
setup-toolchain.mk | 42 # Filter out 4.6, 4.7 and 4.8 which don't have good 64-bit support in all supported arch 53 # For now, this is enough to select by default gcc4.6 for 32-bit, and 4.9 for 64-bit, the the 70 # don't allow NDK_TOOLCHAIN_VERSION to change if it doesn't support 64-bit 72 $(call ndk_log,Specified NDK_TOOLCHAIN_VERSION $(NDK_TOOLCHAIN_VERSION) does not support 64-bit) 79 # contain any space. The following is a bit subtle, but essentially
|
/build/core/ |
main.mk | 572 # Resolve the required module name to 32-bit or 64-bit variant. 573 # Get a list of corresponding 32-bit module names, if one exists. 574 define get-32-bit-modules 579 # Get a list of corresponding 32-bit module names, if one exists; 581 define get-32-bit-modules-if-we-can 588 # If a module is built for 32-bit, the required modules must be 32-bit too; 590 # the required modules must be 64-bit; 591 # otherwise we require both 64-bit and 32-bit variant, if one exists [all...] |
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
FlowControl.py | 230 bit = 1 233 assmts.mask = assmts.bit = bit 235 bit <<= 1 240 stat.bit = bit 243 assmts.mask |= bit 244 bit <<= 1 250 block.i_gen |= assmts.bit 252 block.i_gen |= stat.bit [all...] |
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
private.h | 143 Please use a compiler that supports a 64-bit integer type (or wider); 216 ** Subtract one for the sign bit if the type is signed;
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
text_format.py | 396 """Consumes a signed 32bit integer number. 402 ParseError: If a signed 32bit integer couldn't be consumed. 412 """Consumes an unsigned 32bit integer number. 418 ParseError: If an unsigned 32bit integer couldn't be consumed. 428 """Consumes a signed 64bit integer number. 434 ParseError: If a signed 64bit integer couldn't be consumed. 444 """Consumes an unsigned 64bit integer number. 450 ParseError: If an unsigned 64bit integer couldn't be consumed.
|
/external/chromium_org/v8/src/arm/ |
deoptimizer-arm.cc | 139 RegList restored_regs = kJSCallerSaved | kCalleeSaved | ip.bit(); 159 // handle this a bit differently. 160 __ stm(db_w, sp, restored_regs | sp.bit() | lr.bit() | pc.bit());
|
/external/chromium_org/v8/src/mips/ |
code-stubs-mips.h | 247 masm->MultiPush((kJSCallerSaved | ra.bit()) & ~scratch1_.bit()); 258 masm->MultiPop((kJSCallerSaved | ra.bit()) & ~scratch1_.bit());
|
/external/chromium_org/v8/src/mips64/ |
code-stubs-mips64.h | 249 masm->MultiPush((kJSCallerSaved | ra.bit()) & ~scratch1_.bit()); 260 masm->MultiPop((kJSCallerSaved | ra.bit()) & ~scratch1_.bit());
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1708.js | 29 // array caused invalid marking bit patterns on lazily swept pages. 62 // that marking bit patterns are still sane.
|
/external/e2fsprogs/lib/ext2fs/ |
blkmap64_rb.c | 322 rb_test_bit(struct ext2fs_rb_private *bp, __u64 bit) 333 if (bit >= rcursor->start && bit < rcursor->start + rcursor->count) { 348 if ((bit >= rcursor->start + rcursor->count) && 349 (bit < next_ext->start)) { 363 if (bit >= rcursor->start && bit < rcursor->start + rcursor->count) 371 if (bit < ext->start) 373 else if (bit >= (ext->start + ext->count)) 863 "%16.4lf memory / bitmap bit memory ratio (bitarray = 1)\n" [all...] |
/external/flac/libFLAC/ |
bitreader.c | 444 /* WATCHOUT: code does not work with <32bit words; we can make things much faster with this assertion */ 700 unsigned bit; 707 if(!FLAC__bitreader_read_bit(br, &bit)) 709 if(bit) 744 /* didn't find stop bit yet, have to keep going... */ 769 /* didn't find stop bit yet, have to keep going... */ 787 /* read the unary MSBs and end bit */ 823 /* WATCHOUT: code does not work with <32bit words; we can make things much faster with this assertion */ 867 /* didn't find stop bit yet, have to keep going... */ 893 /* didn't find stop bit yet, have to keep going... * [all...] |
/external/icu/icu4c/source/tools/tzcode/ |
private.h | 143 Please use a compiler that supports a 64-bit integer type (or wider); 216 ** Subtract one for the sign bit if the type is signed;
|
/external/lldb/source/Core/ |
Broadcaster.cpp | 84 for (uint32_t bit=1u, mask=event_mask; mask != 0 && bit != 0; bit <<= 1, mask >>= 1) 88 event_names_map::const_iterator pos = m_event_names.find(bit); 131 // FIXME: Implement "unique listener for this bit" mask 135 // Each event bit in a Broadcaster object can only be used
|
/external/protobuf/python/google/protobuf/ |
text_format.py | 411 """Consumes a signed 32bit integer number. 417 ParseError: If a signed 32bit integer couldn't be consumed. 427 """Consumes an unsigned 32bit integer number. 433 ParseError: If an unsigned 32bit integer couldn't be consumed. 443 """Consumes a signed 64bit integer number. 449 ParseError: If a signed 64bit integer couldn't be consumed. 459 """Consumes an unsigned 64bit integer number. 465 ParseError: If an unsigned 64bit integer couldn't be consumed.
|
/external/zopfli/src/zopflipng/lodepng/ |
lodepng_util.cpp | 326 unsigned long bit = (tree1d[n] >> (bitlen[n] - i - 1)) & 1; local 328 if(tree2d[2 * treepos + bit] == 32767) //not yet filled in 332 //last bit 333 tree2d[2 * treepos + bit] = n; 339 tree2d[2 * treepos + bit] = ++nodefilled + numcodes; 343 else treepos = tree2d[2 * treepos + bit] - numcodes; //subtract numcodes from address to get address value 347 int decode(bool& decoded, unsigned long& result, size_t& treepos, unsigned long bit) const 351 result = tree2d[2 * treepos + bit]; 362 size_t bp = 0, pos = 0; //bit pointer and byte pointer 369 if(bp >> 3 >= in.size()) { error = 52; return; } //error, bit pointer will jump past memor [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
bcmutils.c | 1645 uint32 bit, mask; local 1673 uint32 bit; local [all...] |
/bionic/libc/arch-arm64/ |
arm64.mk | 1 # 64-bit arm.
|
/bionic/libc/arch-mips64/ |
mips64.mk | 1 # 64-bit mips.
|
/bionic/libc/arch-x86_64/ |
x86_64.mk | 1 # 64-bit x86.
|
/cts/tests/tests/media/ |
Android.mk | 38 # include both the 32 and 64 bit versions
|