/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
forward_list | 38 #include <bits/forward_list.h> 41 # include <bits/forward_list.tcc>
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
cstdbool | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
cstdalign | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
cstdbool | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
cstdbool | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
cstdalign | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
cstdbool | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ |
cstdalign | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
cstdbool | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
cstdalign | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
cstdbool | 35 # include <bits/c++0x_warning.h> 37 # include <bits/c++config.h>
|
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/include/linux/ |
types.h | 29 #define DECLARE_BITMAP(name,bits) unsigned long name[BITS_TO_LONGS(bits)]
|
/system/media/audio_utils/spdif/ |
BitFieldParser.h | 34 * Read numBits bits from the data array. 35 * Fields may span byte boundaries but may not exceed 32-bits.
|
/external/bison/lib/ |
bbitset.h | 31 BITSET_ARRAY: Array of bits (fixed size, fast for dense bitsets). 34 BITSET_LIST: Linked list of arrays of bits (variable size, least storage 36 BITSET_TABLE: Expandable table of pointers to arrays of bits 39 BITSET_VARRAY: Variable array of bits (variable size, fast for 52 /* Data type used to store a word of bits. */ 93 bitset_bindex n_bits; /* Number of bits. */ 98 bit set/reset operations of cached bits. */ 173 /* Redefine number of bits in bitset DST. */ 176 /* Return size in bits of bitset SRC. */ 179 /* Return number of bits set in bitset SRC. * [all...] |
/external/lldb/source/Plugins/Process/Utility/ |
ARMUtils.h | 273 static inline uint32_t bits(const uint32_t val, const uint32_t msbit, const uint32_t lsbit) function in namespace:lldb_private 280 return bits(val, msbit, msbit); 293 uint32_t imm = bits(opcode, 7, 0); // immediate value 294 uint32_t amt = 2 * bits(opcode, 11, 8); // rotate amount 321 const uint32_t imm3 = bits(opcode, 14, 12); 322 const uint32_t abcdefgh = bits(opcode, 7, 0); 325 if (bits(imm12, 11, 10) == 0) 327 switch (bits(imm12, 9, 8)) { 349 const uint32_t unrotated_value = 0x80 | bits(imm12, 6, 0); 350 imm32 = ror(unrotated_value, 32, bits(imm12, 11, 7)) [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
BasicBlocker.java | 24 import com.android.dx.util.Bits; 36 * {@code non-null;} work set; bits indicate offsets in need of 42 * {@code non-null;} live set; bits indicate potentially-live 49 * {@code non-null;} block start set; bits indicate the starts of 106 workSet = Bits.makeBitSet(sz); 107 liveSet = Bits.makeBitSet(sz); 108 blockSet = Bits.makeBitSet(sz); 277 next = Bits.findFirst(blockSet, at + 1); 282 if (Bits.get(liveSet, at)) { 336 Bits.set(workSet, 0) [all...] |
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form21c.java | 123 BitSet bits = new BitSet(sz); local 127 bits.set(0, compat); 130 bits.set(0, compat); 131 bits.set(1, compat); 135 return bits;
|
Form31c.java | 118 BitSet bits = new BitSet(sz); local 122 bits.set(0, compat); 125 bits.set(0, compat); 126 bits.set(1, compat); 130 return bits;
|
/external/compiler-rt/lib/builtins/ |
ctzsi2.c | 17 /* Returns: the number of trailing 0-bits */ 25 si_int t = ((x & 0x0000FFFF) == 0) << 4; /* if (x has no small bits) t = 16 else 0 */ 26 x >>= t; /* x = [0 - 0xFFFF] + higher garbage bits */ 30 x >>= t; /* x = [0 - 0xFF] + higher garbage bits */ 34 x >>= t; /* x = [0 - 0xF] + higher garbage bits */
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
Form21c.java | 124 BitSet bits = new BitSet(sz); local 128 bits.set(0, compat); 131 bits.set(0, compat); 132 bits.set(1, compat); 136 return bits;
|
Form31c.java | 119 BitSet bits = new BitSet(sz); local 123 bits.set(0, compat); 126 bits.set(0, compat); 127 bits.set(1, compat); 131 return bits;
|
Form33x.java | 84 BitSet bits = new BitSet(3); local 86 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 87 bits.set(1, unsignedFitsInByte(regs.get(1).getReg())); 88 bits.set(2, unsignedFitsInShort(regs.get(2).getReg())); 89 return bits;
|
Form41c.java | 121 BitSet bits = new BitSet(sz); local 125 bits.set(0, compat); 128 bits.set(0, compat); 129 bits.set(1, compat); 133 return bits;
|
/external/elfutils/src/backends/ |
arm_regs.c | 43 int *bits, int *type) 52 *bits = 32; 84 *bits = 96; 97 *bits = 64; 106 *bits = 64;
|
/external/flac/libFLAC/include/private/ |
bitreader.h | 75 FLAC__bool FLAC__bitreader_read_raw_uint32(FLAC__BitReader *br, FLAC__uint32 *val, unsigned bits); 76 FLAC__bool FLAC__bitreader_read_raw_int32(FLAC__BitReader *br, FLAC__int32 *val, unsigned bits); 77 FLAC__bool FLAC__bitreader_read_raw_uint64(FLAC__BitReader *br, FLAC__uint64 *val, unsigned bits); 78 FLAC__bool FLAC__bitreader_read_uint32_little_endian(FLAC__BitReader *br, FLAC__uint32 *val); /*only for bits=32*/ 79 FLAC__bool FLAC__bitreader_skip_bits_no_crc(FLAC__BitReader *br, unsigned bits); /* WATCHOUT: does not CRC the skipped data! */ /*@@@@ add to unit tests */
|