| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
| complex.h | 29 #include <bits/c++config.h>
|
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/arm64-v8a/include/bits/ |
| gthr.h | 148 #include <bits/gthr-default.h>
|
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi/include/bits/ |
| gthr.h | 148 #include <bits/gthr-default.h>
|
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi-v7a/include/bits/ |
| gthr.h | 148 #include <bits/gthr-default.h>
|
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips/include/bits/ |
| gthr.h | 148 #include <bits/gthr-default.h>
|
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips64/include/bits/ |
| gthr.h | 148 #include <bits/gthr-default.h>
|
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86/include/bits/ |
| gthr.h | 148 #include <bits/gthr-default.h>
|
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/ |
| gthr.h | 148 #include <bits/gthr-default.h>
|
| /dalvik/dx/src/com/android/dx/dex/code/form/ |
| Form21h.java | 89 // Where the high bits are depends on the category of the target. 91 int bits = cb.getIntBits(); local 92 return ((bits & 0xffff) == 0); 94 long bits = cb.getLongBits(); local 95 return ((bits & 0xffffffffffffL) == 0); 103 BitSet bits = new BitSet(1); local 105 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 106 return bits; 114 short bits; local 116 // Where the high bits are depends on the category of the target [all...] |
| /external/chromium_org/third_party/WebKit/Source/wtf/ |
| BitVector.cpp | 45 memcpy(newOutOfLineBits->bits(), other.bits(), byteCount(other.size())); 60 m_bitsOrPointer = makeInlineBits(*myOutOfLineBits->bits()); 73 memset(outOfLineBits()->bits(), 0, byteCount(size())); 99 // Make sure that all of the bits are zero in case we do a no-op resize. 100 *newOutOfLineBits->bits() = m_bitsOrPointer & ~(static_cast<uintptr_t>(1) << maxInlineBits()); 101 memset(newOutOfLineBits->bits() + 1, 0, (newNumWords - 1) * sizeof(void*)); 105 memcpy(newOutOfLineBits->bits(), outOfLineBits()->bits(), oldNumWords * sizeof(void*)); 106 memset(newOutOfLineBits->bits() + oldNumWords, 0, (newNumWords - oldNumWords) * sizeof(void*)) [all...] |
| /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
| Form21h.java | 90 // Where the high bits are depends on the category of the target. 92 int bits = cb.getIntBits(); local 93 return ((bits & 0xffff) == 0); 95 long bits = cb.getLongBits(); local 96 return ((bits & 0xffffffffffffL) == 0); 104 BitSet bits = new BitSet(1); local 106 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 107 return bits; 115 short bits; local 117 // Where the high bits are depends on the category of the target [all...] |
| /external/chromium_org/third_party/leveldatabase/src/util/ |
| bloom.cc | 36 // Compute bloom filter size (in both bits and bytes) 37 size_t bits = n * bits_per_key_; local 41 if (bits < 64) bits = 64; 43 size_t bytes = (bits + 7) / 8; 44 bits = bytes * 8; 54 const uint32_t delta = (h >> 17) | (h << 15); // Rotate right 17 bits 56 const uint32_t bitpos = h % bits; 68 const size_t bits = (len - 1) * 8; local 80 const uint32_t delta = (h >> 17) | (h << 15); // Rotate right 17 bits [all...] |
| /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/ |
| vp9_read_bit_buffer.h | 37 int vp9_rb_read_literal(struct vp9_read_bit_buffer *rb, int bits); 39 int vp9_rb_read_signed_literal(struct vp9_read_bit_buffer *rb, int bits);
|
| /external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
| dsa_locl.h | 57 int dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits,
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
| ebpindex.asm | 0 [bits 32]
|
| far64.asm | 0 [bits 64]
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/ |
| bigorg.asm | 0 [bits 64]
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/amd64/ |
| elf-rip.asm | 0 [bits 64]
|
| /external/guava/guava/src/com/google/common/hash/ |
| BloomFilterStrategies.java | 12 * Collections of strategies of generating the {@code k * log(M)} bits required for an element to 13 * be mapped to a {@link BloomFilter} of {@code M} bits and {@code k} hash functions. These 27 int numHashFunctions, BitArray bits) { 38 bits.set(nextHash % bits.size()); 43 int numHashFunctions, BitArray bits) { 53 if (!bits.get(nextHash % bits.size())) { 64 BitArray(int bits) { 65 this(new long[IntMath.divide(bits, 64, RoundingMode.CEILING)]) [all...] |
| /external/libvpx/libvpx/vp9/decoder/ |
| vp9_read_bit_buffer.h | 37 int vp9_rb_read_literal(struct vp9_read_bit_buffer *rb, int bits); 39 int vp9_rb_read_signed_literal(struct vp9_read_bit_buffer *rb, int bits);
|
| /external/openssl/crypto/dsa/ |
| dsa_locl.h | 57 int dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits,
|
| /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/ |
| SDL_sysmouse.cc | 32 char *bits; member in struct:WMcursor 38 dummy.bits = 0;
|
| /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
| vp9_read_bit_buffer.h | 37 int vp9_rb_read_literal(struct vp9_read_bit_buffer *rb, int bits); 39 int vp9_rb_read_signed_literal(struct vp9_read_bit_buffer *rb, int bits);
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/isl/ |
| hash.h | 32 #define isl_hash_bits(h,bits) \ 33 ((bits) == 32) ? (h) : \ 34 ((bits) >= 16) ? \ 35 ((h) >> (bits)) ^ ((h) & (((uint32_t)1 << (bits)) - 1)) : \ 36 (((h) >> (bits)) ^ (h)) & (((uint32_t)1 << (bits)) - 1) 50 int bits; member in struct:isl_hash_table
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/ |
| time.h | 39 # include <bits/types.h> 58 # endif /* bits/time.h */ 65 # include <bits/types.h>
|