/external/elfutils/backends/ |
ppc64_corenote.c | 1 #define BITS 64
|
s390x_corenote.c | 1 #define BITS 64
|
sparc64_corenote.c | 1 #define BITS 64
|
x32_corenote.c | 1 #define BITS 32
|
/external/elfutils/tests/ |
run-allregs.sh | 32 0: %eax (eax), signed 32 bits 33 1: %ecx (ecx), signed 32 bits 34 2: %edx (edx), signed 32 bits 35 3: %ebx (ebx), signed 32 bits 36 4: %esp (esp), address 32 bits 37 5: %ebp (ebp), address 32 bits 38 6: %esi (esi), signed 32 bits 39 7: %edi (edi), signed 32 bits 40 8: %eip (eip), address 32 bits 41 9: %eflags (eflags), unsigned 32 bits [all...] |
/external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Types/ |
__init__.py | 6 - FP16_Q0_15 : 16bits Fixed point - 0 integer bits, 15 fractionnal bits 7 - FP16_Q15_0 : 16bits Fixed point - 15 integer bits, 0 fractionnal bits 8 - FP16_Q7_8 : 16bits Fixed point - 7 integer bits, 8 fractionnal bits 9 - FP32_Q0_31 : 32bits Fixed point - 0 integer bits, 31 fractionnal bit [all...] |
/external/jemalloc/test/src/ |
btalloc.c | 4 btalloc(size_t size, unsigned bits) 7 return (btalloc_0(size, bits));
|
/art/test/577-checker-fp2int/ |
info.txt | 1 Unit test for float/double to raw bits conversions.
|
/external/llvm/test/TableGen/ |
BitsInit.td | 6 bits<2> opc = { 0, 1 }; 7 bits<2> opc2 = { 1, 0 }; 8 bits<1> opc3 = { 1 }; 9 bits<2> a = { opc, opc2 }; // error! 10 bits<2> b = { opc{0}, opc2{0} }; 11 bits<2> c = { opc{1}, opc2{1} }; 12 bits<2> c = { opc3{0}, opc3 }; 16 // CHECK: bits<2> opc = { 0, 1 }; 17 // CHECK: bits<2> opc2 = { 1, 0 }; 18 // CHECK: bits<1> opc3 = { 1 } [all...] |
2010-03-24-PrematureDefaults.td | 4 class A<int k, bits<2> x = 1> { 6 bits<2> Bits = x; 10 // CHECK: Bits = { 0, 1 } 14 // CHECK: Bits = { 1, 0 } 17 // Here was the bug: X.Bits would get resolved to the default a1.Bits while 19 // was processed, X would be set correctly, but Bits retained the default 23 bits<2> Bits = X.Bits [all...] |
/external/speex/libspeex/ |
bits.c | 48 EXPORT void speex_bits_init(SpeexBits *bits) 50 bits->chars = (char*)speex_alloc(MAX_CHARS_PER_FRAME); 51 if (!bits->chars) 54 bits->buf_size = MAX_CHARS_PER_FRAME; 56 bits->owner=1; 58 speex_bits_reset(bits); 61 EXPORT void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size) 63 bits->chars = (char*)buff; 64 bits->buf_size = buf_size; 66 bits->owner=0 [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
RC2Parameters.java | 6 private int bits; field in class:RC2Parameters 16 int bits) 19 this.bits = bits; 24 return bits;
|
/dalvik/dx/junit-tests/com/android/dx/util/ |
BitsTest.java | 23 assertEquals(label(0), 0, Bits.makeBitSet(0).length); 26 assertEquals(label(i), 1, Bits.makeBitSet(i).length); 30 assertEquals(label(i), 2, Bits.makeBitSet(i).length); 38 assertEquals(label(i), expect, Bits.makeBitSet(i).length); 49 Bits.getMax(new int[expect])); 54 int[] bits = Bits.makeBitSet(100); local 57 assertFalse(label(i), Bits.get(bits, i)); 62 int[] bits = Bits.makeBitSet(100) local 73 int[] bits = Bits.makeBitSet(100); local 86 int[] bits = Bits.makeBitSet(50); local 103 int[] bits = Bits.makeBitSet(100); local 131 int[] bits = Bits.makeBitSet(100); local 146 int[] bits = Bits.makeBitSet(100); local 171 int[] bits = Bits.makeBitSet(i); local 190 int[] bits = Bits.makeBitSet(i); local 213 int[] bits = new int[100]; local 221 int[] bits = new int[100]; local 229 int[] bits = new int[100]; local 237 int[] bits = new int[100]; local 248 int[] bits = new int[100]; local 259 int[] bits = new int[100]; local 270 int[] bits = new int[100]; local 278 int[] bits = new int[100]; local 289 int[] bits = new int[100]; local [all...] |
/external/valgrind/memcheck/tests/vbit-test/ |
vbits.c | 49 /* Return the bits of V if they fit into 64-bit. If V has fewer than 50 64 bits, the bit pattern is zero-extended to the left. */ 55 case 1: return v.bits.u32; 56 case 8: return v.bits.u8; 57 case 16: return v.bits.u16; 58 case 32: return v.bits.u32; 59 case 64: return v.bits.u64; 72 case 1: fprintf(fp, "%08x", v.bits.u32); break; 73 case 8: fprintf(fp, "%02x", v.bits.u8); break; 74 case 16: fprintf(fp, "%04x", v.bits.u16); break 194 uint64_t bits; local 258 uint64_t bits = left64(get_bits64(v)); local 523 uint64_t bits = get_bits64(v); local [all...] |
/external/llvm/lib/Target/Mips/ |
MipsMSAInstrFormats.td | 30 class MSA_BIT_B_FMT<bits<3> major, bits<6> minor>: MSAInst { 31 bits<5> ws; 32 bits<5> wd; 33 bits<3> m; 43 class MSA_BIT_H_FMT<bits<3> major, bits<6> minor>: MSAInst { 44 bits<5> ws; 45 bits<5> wd; 46 bits<4> m [all...] |
MicroMips32r6InstrFormats.td | 26 bits<10> offset; 28 bits<16> Inst; 34 class BEQZC_BNEZC_FM_MM16R6<bits<6> op> : MicroMipsR6Inst16 { 35 bits<3> rs; 36 bits<7> offset; 38 bits<16> Inst; 45 class POOL16C_JALRC_FM_MM16R6<bits<5> op> { 46 bits<5> rs; 48 bits<16> Inst; 55 class POOL16C_JRCADDIUSP_FM_MM16R6<bits<5> op> [all...] |
/art/test/436-shift-constant/ |
info.txt | 1 Regression tests for shift instructions and constants larger than 8bits.
|
/dalvik/dx/tests/029-unit-Bits/ |
info.txt | 1 Unit test for com.android.dx.util.Bits.
|
/external/jemalloc/test/include/test/ |
btalloc.h | 2 void *btalloc(size_t size, unsigned bits); 5 void *btalloc_##n(size_t size, unsigned bits); 11 btalloc_##n(size_t size, unsigned bits) \ 15 if (bits == 0) \ 18 switch (bits & 0x1U) { \ 20 p = (btalloc_0(size, bits >> 1)); \ 23 p = (btalloc_1(size, bits >> 1)); \
|
/external/llvm/lib/Target/AMDGPU/ |
R600InstrFormats.td | 18 field bits<64> Inst; 22 bits<2> FlagOperandIdx = 0; 68 field bits<32> Word0; 70 bits<11> src0; 71 bits<1> src0_rel; 72 bits<11> src1; 73 bits<1> src1_rel; 74 bits<3> index_mode = 0; 75 bits<2> pred_sel; 76 bits<1> last [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/ |
bits_test.go | 8 // This file implements the Bits type used for testing Float operations 20 // A Bits value b represents a finite floating-point number x of the form 25 // used to form fractions. A Bits value is normalized if each b[i] occurs at 26 // most once. For instance Bits{0, 0, 1} is not normalized but represents the 27 // same floating-point number as Bits{2}, which is normalized. The zero (nil) 28 // value of Bits is a ready to use Bits value and represents the value 0. 29 type Bits []int 31 func (x Bits) add(y Bits) Bits [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/big/ |
bits_test.go | 5 // This file implements the Bits type used for testing Float operations 17 // A Bits value b represents a finite floating-point number x of the form 22 // used to form fractions. A Bits value is normalized if each b[i] occurs at 23 // most once. For instance Bits{0, 0, 1} is not normalized but represents the 24 // same floating-point number as Bits{2}, which is normalized. The zero (nil) 25 // value of Bits is a ready to use Bits value and represents the value 0. 26 type Bits []int 28 func (x Bits) add(y Bits) Bits [all...] |
/prebuilts/go/darwin-x86/src/math/big/ |
bits_test.go | 5 // This file implements the Bits type used for testing Float operations 17 // A Bits value b represents a finite floating-point number x of the form 22 // used to form fractions. A Bits value is normalized if each b[i] occurs at 23 // most once. For instance Bits{0, 0, 1} is not normalized but represents the 24 // same floating-point number as Bits{2}, which is normalized. The zero (nil) 25 // value of Bits is a ready to use Bits value and represents the value 0. 26 type Bits []int 28 func (x Bits) add(y Bits) Bits [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/ |
bits_test.go | 8 // This file implements the Bits type used for testing Float operations 20 // A Bits value b represents a finite floating-point number x of the form 25 // used to form fractions. A Bits value is normalized if each b[i] occurs at 26 // most once. For instance Bits{0, 0, 1} is not normalized but represents the 27 // same floating-point number as Bits{2}, which is normalized. The zero (nil) 28 // value of Bits is a ready to use Bits value and represents the value 0. 29 type Bits []int 31 func (x Bits) add(y Bits) Bits [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/big/ |
bits_test.go | 5 // This file implements the Bits type used for testing Float operations 17 // A Bits value b represents a finite floating-point number x of the form 22 // used to form fractions. A Bits value is normalized if each b[i] occurs at 23 // most once. For instance Bits{0, 0, 1} is not normalized but represents the 24 // same floating-point number as Bits{2}, which is normalized. The zero (nil) 25 // value of Bits is a ready to use Bits value and represents the value 0. 26 type Bits []int 28 func (x Bits) add(y Bits) Bits [all...] |