/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
string | 40 #include <bits/c++config.h> 41 #include <bits/stringfwd.h> 42 #include <bits/char_traits.h> // NB: In turn includes stl_algobase.h 43 #include <bits/allocator.h> 44 #include <bits/cpp_type_traits.h> 45 #include <bits/localefwd.h> // For operators >>, <<, and getline. 46 #include <bits/ostream_insert.h> 47 #include <bits/stl_iterator_base_types.h> 48 #include <bits/stl_iterator_base_funcs.h> 49 #include <bits/stl_iterator.h [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
string | 40 #include <bits/c++config.h> 41 #include <bits/stringfwd.h> 42 #include <bits/char_traits.h> // NB: In turn includes stl_algobase.h 43 #include <bits/allocator.h> 44 #include <bits/cpp_type_traits.h> 45 #include <bits/localefwd.h> // For operators >>, <<, and getline. 46 #include <bits/ostream_insert.h> 47 #include <bits/stl_iterator_base_types.h> 48 #include <bits/stl_iterator_base_funcs.h> 49 #include <bits/stl_iterator.h [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ |
string | 40 #include <bits/c++config.h> 41 #include <bits/stringfwd.h> 42 #include <bits/char_traits.h> // NB: In turn includes stl_algobase.h 43 #include <bits/allocator.h> 44 #include <bits/cpp_type_traits.h> 45 #include <bits/localefwd.h> // For operators >>, <<, and getline. 46 #include <bits/ostream_insert.h> 47 #include <bits/stl_iterator_base_types.h> 48 #include <bits/stl_iterator_base_funcs.h> 49 #include <bits/stl_iterator.h [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
string | 40 #include <bits/c++config.h> 41 #include <bits/stringfwd.h> 42 #include <bits/char_traits.h> // NB: In turn includes stl_algobase.h 43 #include <bits/allocator.h> 44 #include <bits/cpp_type_traits.h> 45 #include <bits/localefwd.h> // For operators >>, <<, and getline. 46 #include <bits/ostream_insert.h> 47 #include <bits/stl_iterator_base_types.h> 48 #include <bits/stl_iterator_base_funcs.h> 49 #include <bits/stl_iterator.h [all...] |
/external/clang/test/CodeGen/ |
named_reg_global.c | 15 // CHECK: define{{.*}} i[[bits:[0-9]+]] @get_stack_pointer_addr() 16 // CHECK: [[ret:%[0-9]+]] = call i[[bits]] @llvm.read_register.i[[bits]](metadata !0) 17 // CHECK: ret i[[bits]] [[ret]] 21 // CHECK: declare{{.*}} i[[bits]] @llvm.read_register.i[[bits]](metadata) 23 // CHECK: define{{.*}} void @set_stack_pointer_addr(i[[bits]] %addr) #0 { 24 // CHECK: [[sto:%[0-9]+]] = load i[[bits]], i[[bits]]* % 25 // CHECK: call void @llvm.write_register.i[[bits]](metadata !0, i[[bits]] [[sto]] [all...] |
/external/elfutils/src/libelf/ |
abstract.h | 31 #define Ehdr(Bits, Ext) \ 32 START (Bits, Ehdr, Ext##Ehdr) \ 35 TYPE_NAME (ElfW2(Bits, Ext##Half), e_type) \ 36 TYPE_NAME (ElfW2(Bits, Ext##Half), e_machine) \ 37 TYPE_NAME (ElfW2(Bits, Ext##Word), e_version) \ 38 TYPE_NAME (ElfW2(Bits, Ext##Addr), e_entry) \ 39 TYPE_NAME (ElfW2(Bits, Ext##Off), e_phoff) \ 40 TYPE_NAME (ElfW2(Bits, Ext##Off), e_shoff) \ 41 TYPE_NAME (ElfW2(Bits, Ext##Word), e_flags) \ 42 TYPE_NAME (ElfW2(Bits, Ext##Half), e_ehsize) [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_ceill.c | 35 uint64_t o = u.bits.manh; \ 36 u.bits.manh += (c); \ 37 if (u.bits.manh < o) \ 38 u.bits.exp++; \ 43 uint64_t o = u.bits.manh; \ 44 u.bits.manh += (c); \ 45 if (u.bits.manh < o) { \ 46 u.bits.exp++; \ 47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \ 58 int e = u.bits.exp - LDBL_MAX_EXP + 1 [all...] |
s_floorl.c | 35 uint64_t o = u.bits.manh; \ 36 u.bits.manh += (c); \ 37 if (u.bits.manh < o) \ 38 u.bits.exp++; \ 43 uint64_t o = u.bits.manh; \ 44 u.bits.manh += (c); \ 45 if (u.bits.manh < o) { \ 46 u.bits.exp++; \ 47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \ 58 int e = u.bits.exp - LDBL_MAX_EXP + 1 [all...] |
s_nextafterl.c | 42 if ((ux.bits.exp == 0x7fff && 43 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl) != 0) || 44 (uy.bits.exp == 0x7fff && 45 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0)) 49 ux.bits.manh = 0; /* return +-minsubnormal */ 50 ux.bits.manl = 1; 51 ux.bits.sign = uy.bits.sign [all...] |
e_fmodl.c | 62 * for an explicit integer bit in front of the fractional bits. 75 sx = ux.bits.sign; 78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */ 79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */ 80 (uy.bits.exp == BIAS + LDBL_MAX_EXP && 81 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */ 83 if(ux.bits.exp<=uy.bits.exp) [all...] |
/frameworks/compile/slang/tests/F_fs_types/ |
stderr.txt.expect | 1 fs_types.fs:4:8: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'd' 2 fs_types.fs:13:10: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'myS' 3 fs_types.fs:15:12: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'd' 4 fs_types.fs:16:12: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'e' 5 fs_types.fs:17:15: error: Builtin types > 32 bits in size are forbidden in Filterscript 6 fs_types.fs:18:7: error: Builtin types > 32 bits in size are forbidden in Filterscript 7 fs_types.fs:21:12: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'l' 8 fs_types.fs:22:10: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'm' 9 fs_types.fs:23:13: error: Builtin types > 32 bits in size are forbidden in Filterscript 10 fs_types.fs:24:7: error: Builtin types > 32 bits in size are forbidden in Filterscrip [all...] |
/external/llvm/lib/Target/R600/ |
SIInstrFormats.td | 17 field bits<1> VM_CNT = 0; 18 field bits<1> EXP_CNT = 0; 19 field bits<1> LGKM_CNT = 0; 21 field bits<1> SALU = 0; 22 field bits<1> VALU = 0; 24 field bits<1> SOP1 = 0; 25 field bits<1> SOP2 = 0; 26 field bits<1> SOPC = 0; 27 field bits<1> SOPK = 0; 28 field bits<1> SOPP = 0 [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
BitSet.java | 43 * is no way to access the internal bits (which I need for speed) 45 * Consider defining set degree. Without access to the bits, I must 49 * than this.bits.length. 54 protected final static int BITS = 64; // number of bits / long 62 protected final static int MOD_MASK = BITS - 1; 64 /** The actual data bits */ 65 protected long bits[]; field in class:BitSet 67 /** Construct a bitset of size one word (64 bits) */ 69 this(BITS); [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstLiteralBits.java | 36 * Gets the value as {@code int} bits. If this instance contains 37 * more bits than fit in an {@code int}, then this returns only 38 * the low-order bits. 40 * @return the bits 45 * Gets the value as {@code long} bits. If this instance contains 46 * fewer bits than fit in a {@code long}, then the result of this 49 * @return the bits 54 * Returns true if this value can fit in 16 bits with sign-extension. 56 * @return true if the sign-extended lower 16 bits are the same as 64 int bits = getIntBits() local 79 int bits = getIntBits(); local [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstLiteralBits.java | 36 * Gets the value as {@code int} bits. If this instance contains 37 * more bits than fit in an {@code int}, then this returns only 38 * the low-order bits. 40 * @return the bits 45 * Gets the value as {@code long} bits. If this instance contains 46 * fewer bits than fit in a {@code long}, then the result of this 49 * @return the bits 54 * Returns true if this value can fit in 16 bits with sign-extension. 56 * @return true if the sign-extended lower 16 bits are the same as 64 int bits = getIntBits() local 79 int bits = getIntBits(); local [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstLiteralBits.java | 36 * Gets the value as {@code int} bits. If this instance contains 37 * more bits than fit in an {@code int}, then this returns only 38 * the low-order bits. 40 * @return the bits 45 * Gets the value as {@code long} bits. If this instance contains 46 * fewer bits than fit in a {@code long}, then the result of this 49 * @return the bits 54 * Returns true if this value can fit in 16 bits with sign-extension. 56 * @return true if the sign-extended lower 16 bits are the same as 64 int bits = getIntBits() local 79 int bits = getIntBits(); local [all...] |
/external/clang/test/SemaCXX/ |
ms_wide_bitfield.cpp | 4 char a : 9; // expected-error{{size of bit-field 'a' (9 bits) exceeds size of its type (8 bits)}} 5 int b : 33; // expected-error{{size of bit-field 'b' (33 bits) exceeds size of its type (32 bits)}} 6 bool c : 9; // expected-error{{size of bit-field 'c' (9 bits) exceeds size of its type (8 bits)}}
|
/external/linux-tools-perf/src/tools/perf/util/ |
bitmap.c | 10 int __bitmap_weight(const unsigned long *bitmap, int bits) 12 int k, w = 0, lim = bits/BITS_PER_LONG; 17 if (bits % BITS_PER_LONG) 18 w += hweight_long(bitmap[k] & BITMAP_LAST_WORD_MASK(bits)); 24 const unsigned long *bitmap2, int bits) 27 int nr = BITS_TO_LONGS(bits);
|
/frameworks/base/core/java/com/android/internal/util/ |
BitwiseOutputStream.java | 32 // The current position offset, in bits, from the msb in byte 0. 73 * @param bits additional bits to be accommodated 75 private void possExpand(int bits) { 76 if ((mPos + bits) < mEnd) return; 77 byte[] newBuf = new byte[(mPos + bits) >>> 2]; 89 * @param bits the amount of data to write (gte 0, lte 8) 90 * @param data to write, will be masked to expose only bits param from lsb 92 public void write(int bits, int data) throws AccessException { 93 if ((bits < 0) || (bits > 8)) [all...] |
/external/clang/utils/ABITest/ |
build-and-summarize-all.sh | 10 for bits in 32 64; do 12 echo "-- $kind-$bits --" 13 (cd $kind-$bits && ../build-and-summarize.sh $1)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
elfclass.h | 6 # error "Never use <bits/elfclass.h> directly; include <link.h> instead." 9 #include <bits/wordsize.h> 13 /* The entries in the .hash table always have a size of 32 bits. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
elfclass.h | 6 # error "Never use <bits/elfclass.h> directly; include <link.h> instead." 9 #include <bits/wordsize.h> 13 /* The entries in the .hash table always have a size of 32 bits. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
elfclass.h | 6 # error "Never use <bits/elfclass.h> directly; include <link.h> instead." 9 #include <bits/wordsize.h> 13 /* The entries in the .hash table always have a size of 32 bits. */
|
/external/compiler-rt/lib/builtins/ |
popcountdi2.c | 17 /* Returns: count of 1 bits */ 24 /* Every 2 bits holds the sum of every pair of bits (32) */ 26 /* Every 4 bits holds the sum of every 4-set of bits (3 significant bits) (16) */ 28 /* Every 8 bits holds the sum of every 8-set of bits (4 significant bits) (8) */ 30 /* The lower 32 bits hold four 16 bit sums (5 significant bits). * [all...] |
/external/icu/icu4c/source/i18n/ |
fmtableimp.h | 27 * IEEE doubles have 53 bits of mantissa, 10 bits exponent, 1 bit sign. 28 * IBM Mainframes have 56 bits of mantissa, 7 bits of base 16 exponent, 1 bit sign.
|