/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
unordered_map | 35 # include <bits/c++0x_warning.h> 42 #include <bits/allocator.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_map.h> 49 #include <bits/range_access.h>
|
unordered_set | 35 # include <bits/c++0x_warning.h> 42 #include <bits/allocator.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_set.h> 49 #include <bits/range_access.h>
|
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
unordered_map | 35 # include <bits/c++0x_warning.h> 42 #include <bits/allocator.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_map.h> 49 #include <bits/range_access.h>
|
unordered_set | 35 # include <bits/c++0x_warning.h> 42 #include <bits/allocator.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_set.h> 49 #include <bits/range_access.h>
|
/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
unordered_map | 35 # include <bits/c++0x_warning.h> 42 #include <bits/allocator.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_map.h> 49 #include <bits/range_access.h>
|
unordered_set | 35 # include <bits/c++0x_warning.h> 42 #include <bits/allocator.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_set.h> 49 #include <bits/range_access.h>
|
/external/llvm/lib/Target/ARM/ |
ARMInstrFormats.td | 18 class Format<bits<6> val> { 19 bits<6> Value = val; 90 class AddrMode<bits<5> val> { 91 bits<5> Value = val; 112 class IndexMode<bits<2> val> { 113 bits<2> Value = val; 121 class Domain<bits<3> val> { 122 bits<3> Value = val; 296 bits<2> IndexModeBits = IM.Value; 298 bits<6> Form = F.Value [all...] |
/external/vulkan-validation-layers/libs/glm/gtx/ |
bit.hpp | 56 /// Build a mask of 'count' bits 86 //! Revert all bits of any integer based type. 91 //! Rotate all bits to the right. 96 //! Rotate all bits to the left. 101 //! Set to 1 a range of bits. 109 //! Set to 0 a range of bits. 117 /// Interleaves the bits of x and y. 119 /// The other bits are interleaved following the previous sequence. 124 /// Interleaves the bits of x and y. 126 /// The other bits are interleaved following the previous sequence [all...] |
/external/llvm/lib/Target/BPF/ |
BPFInstrInfo.td | 82 class JMP_RR<bits<4> Opc, string OpcodeStr, PatLeaf Cond> 86 bits<4> op; 87 bits<1> BPFSrc; 88 bits<4> dst; 89 bits<4> src; 90 bits<16> BrDst; 103 class JMP_RI<bits<4> Opc, string OpcodeStr, PatLeaf Cond> 107 bits<4> op; 108 bits<1> BPFSrc; 109 bits<4> dst [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonIsetDx.td | 20 bits<3> Rdd; 21 bits<2> u2; 68 bits<3> Rdd; 69 bits<2> u2; 84 bits<4> Rs; 85 bits<4> u4_0; 98 bits<4> Rd; 111 bits<4> Rd; 112 bits<4> Rs; 113 bits<4> u3_1 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_cavlc.c | 52 * 4 bits symbol value (bits [4,7]) along with four bits to represent length 53 * of the VLC code word (bits [0,3]) */ 55 /* macro to obtain length of the coeff token information field, bits [0,4] */ 57 /* macro to obtain length of the other information fields, bits [0,3] */ 59 /* macro to obtain code word from the information fields, bits [4,7] */ 60 #define INFO(vlc) (((vlc) >> 4) & 0xF) /* 4 MSB bits contain information */ 62 * bits [5,10] */ 65 * bits [11,15] * [all...] |
/art/compiler/utils/arm/ |
constants_arm.h | 42 // 4 bits option for the dmb instruction. 229 // bits. 249 // Get the raw instruction bits. 254 // Set the raw instruction bits to value. 259 // Read one particular bit out of the instruction bits. 264 // Read a bit field out of the instruction bits. 265 int Bits(int shift, int count) const { 274 return static_cast<Condition>(Bits(kConditionShift, kConditionBits)); 276 int TypeField() const { return Bits(kTypeShift, kTypeBits); } 279 Bits(kRnShift, kRnBits)); [all...] |
/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/antlr/antlr-3.4/runtime/C/src/ |
antlr3bitset.c | 65 if (bitset->blist.bits != NULL) 67 ANTLR3_FREE(bitset->blist.bits); 68 bitset->blist.bits = NULL; 98 // No we need to allocate the memory for the number of bits asked for 103 bitset->blist.bits = (pANTLR3_BITWORD) ANTLR3_MALLOC((size_t)(numelements * sizeof(ANTLR3_BITWORD))); 104 memset(bitset->blist.bits, 0, (size_t)(numelements * sizeof(ANTLR3_BITWORD))); 107 if (bitset->blist.bits == NULL) 168 bitset->blist.bits = (pANTLR3_BITWORD)ANTLR3_MALLOC((size_t)(numElements * sizeof(ANTLR3_BITWORD))); 170 if (bitset->blist.bits == NULL) 176 ANTLR3_MEMCPY(bitset->blist.bits, blist->bits, (ANTLR3_UINT64)(numElements * sizeof(ANTLR3_BITWORD))) [all...] |
/external/pdfium/xfa/fxbarcode/qrcode/ |
BC_QRCoderEncoder.h | 49 static void AppendECI(CBC_QRCoderBitVector* bits); 52 CBC_QRCoderBitVector* bits, 56 CBC_QRCoderBitVector* bits, 59 CBC_QRCoderBitVector* bits, 62 CBC_QRCoderBitVector* bits, 66 CBC_QRCoderBitVector* bits, 69 CBC_QRCoderBitVector* bits, 72 CBC_QRCoderBitVector* bits, 86 CBC_QRCoderBitVector* bits, 91 CBC_QRCoderBitVector* bits, [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_fmax.c | 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0) 45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0) 49 if (u[0].bits.sign != u[1].bits.sign) 50 return (u[u[0].bits.sign].d);
|
s_fmaxl.c | 45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0) 47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0) 51 if (u[0].bits.sign != u[1].bits.sign) 52 return (u[0].bits.sign ? y : x);
|
s_fmin.c | 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0) 45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0) 49 if (u[0].bits.sign != u[1].bits.sign) 50 return (u[u[1].bits.sign].d);
|
s_fminl.c | 45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0) 47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0) 51 if (u[0].bits.sign != u[1].bits.sign) 52 return (u[1].bits.sign ? y : x);
|
s_logbl.c | 31 if (u.bits.exp == 0) { 32 if ((u.bits.manl | u.bits.manh) == 0) { /* x == 0 */ 33 u.bits.sign = 1; 37 if (u.bits.manh == 0) { 39 for (b = LDBL_MANH_SIZE; !(u.bits.manl & m); m >>= 1) 43 for (b = 0; !(u.bits.manh & m); m >>= 1) 51 if (u.bits.exp < (LDBL_MAX_EXP << 1) - 1) /* normal */ 52 return ((long double)(u.bits.exp - LDBL_MAX_EXP + 1));
|
/external/ImageMagick/PerlMagick/t/tiff/ |
write.t | 20 print("PseudoColor image (4 bits/sample) ...\n"); 30 print("PseudoColor image (8 bits/sample) ...\n"); 41 print("PseudoColor image (4 bits/sample + matte channel) ...\n"); 51 print("PseudoColor image (8 bits/sample + matte channel) ...\n"); 62 print("TrueColor image (8 bits/sample) ...\n"); 82 print("Gray image (4 bits per sample) ...\n"); 92 print("Gray image (8 bits per sample) ...\n"); 102 print("Gray image (4 bits per sample + matte channel) ...\n"); 112 print("Gray image (8 bits per sample + matte channel) ...\n");
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
sancov.py | 25 def CheckBits(bits): 26 if bits != 32 and bits != 64: 27 raise Exception("Wrong bitness: %d" % bits) 29 def TypeCodeForBits(bits): 30 CheckBits(bits) 31 return 'L' if bits == 64 else 'I' 33 def TypeCodeForStruct(bits): 34 CheckBits(bits) 35 return 'Q' if bits == 64 else 'I [all...] |
/external/speex/libspeex/ |
quant_lsp.h | 56 /* Quantizes narrowband LSPs with 30 bits */ 57 void lsp_quant_nb(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits); 60 void lsp_unquant_nb(spx_lsp_t *lsp, int order, SpeexBits *bits); 62 /* Quantizes low bit-rate narrowband LSPs with 18 bits */ 63 void lsp_quant_lbr(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits); 66 void lsp_unquant_lbr(spx_lsp_t *lsp, int order, SpeexBits *bits); 68 /* Quantizes high-band LSPs with 12 bits */ 69 void lsp_quant_high(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits); 72 void lsp_unquant_high(spx_lsp_t *lsp, int order, SpeexBits *bits);
|
/frameworks/av/media/libstagefright/codecs/aacenc/inc/ |
bitbuffer.h | 37 The pointer 'pReadNext' points to the next available word, where bits can be read from. The pointer 38 'pWriteNext' points to the next available word, where bits can be written to. The pointer pBitBufBase 43 The element cntBits contains the currently available bits in the bit buffer. It will be incremented when 44 bits are written to the bitstream buffer and decremented when bits are read from the bitstream buffer. 56 Word16 cntBits; /*!< number of available bits in the bitstream buffer 57 write bits to bitstream buffer => increment cntBits 58 read bits from bitstream buffer => decrement cntBits */ 59 Word16 size; /*!< size of bitbuffer in bits */
|
/libcore/ojluni/src/main/java/java/nio/ |
HeapByteBuffer.java | 197 return Bits.getChar(this, ix(nextGetIndex(2)), bigEndian); 202 return Bits.getChar(this, ix(checkIndex(i, 2)), bigEndian); 207 return Bits.getChar(this, ix(i), bigEndian); 220 Bits.putChar(this, ix(nextPutIndex(2)), x, bigEndian); 229 Bits.putChar(this, ix(checkIndex(i, 2)), x, bigEndian); 235 Bits.putChar(this, ix(i), x, bigEndian); 258 return Bits.getShort(this, ix(nextGetIndex(2)), bigEndian); 263 return Bits.getShort(this, ix(checkIndex(i, 2)), bigEndian); 268 return Bits.getShort(this, ix(i), bigEndian); 281 Bits.putShort(this, ix(nextPutIndex(2)), x, bigEndian) [all...] |