HomeSort by relevance Sort by last modified time
    Searched refs:bits (Results 226 - 250 of 4238) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
memoryfwd.h 38 /** @file bits/memoryfwd.h
48 #include <bits/c++config.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
complex.h 29 #include <bits/c++config.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
gthr.h 148 #include <bits/gthr-default.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr.h 148 #include <bits/gthr-default.h>
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bitset.go 41 // set2 sets two bits in f using the bottom two bits of b.
43 // Clear old bits.
45 // Set new bits.
53 // set3 sets three bits in f using the bottom three bits of b.
55 // Clear old bits.
57 // Set new bits.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bitset.go 41 // set2 sets two bits in f using the bottom two bits of b.
43 // Clear old bits.
45 // Set new bits.
53 // set3 sets three bits in f using the bottom three bits of b.
55 // Clear old bits.
57 // Set new bits.
  /system/tools/hidl/test/
run_all_device_tests.sh 31 for bits in ${BITNESS[@]}; do
32 echo $bits $test
33 adb shell /data/$bits/$test/$test ||
34 FAILED_TESTS+=("$bits:$test")
run_all_host_tests.sh 24 for bits in ${BITNESS[@]}; do
26 echo $bits $test
27 $ANDROID_BUILD_TOP/out/host/linux-x86/$bits/$test/$test ||
28 FAILED_TESTS+=("$bits:$test")
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nds32/
to-16bit-v3.d 5 # Test the convert 32bits to 16bits
  /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...]
  /test/vts-testcase/performance/hwbinder_benchmark/
HwBinderPerformanceTest.py 103 def RunBenchmark(self, bits):
107 bits: integer (32 or 64), the number of bits in a word chosen
113 self.hidl_hal_mode, bits)
114 binary = "/data/local/tmp/%s/libhwbinder_benchmark%s" % (bits, bits)
122 (bits, bits, bits, binary, self.hidl_hal_mode.encode("utf-8"))
136 table_name = "hwbinder_vector_roundtrip_latency_benchmark_%sbits" % bits
    [all...]
  /external/guava/guava/src/com/google/common/math/
DoubleUtils.java 67 long bits = doubleToRawLongBits(d); local
68 bits &= SIGNIFICAND_MASK;
70 ? bits << 1
71 : bits | IMPLICIT_BIT;
103 * We need the top SIGNIFICAND_BITS + 1 bits, including the "implicit" one bit. To make
104 * rounding easier, we pick out the top SIGNIFICAND_BITS + 2 bits, so we have one to help us
105 * round up or down. twiceSignifFloor will contain the top SIGNIFICAND_BITS + 2 bits, and
123 long bits = (long) ((exponent + EXPONENT_BIAS)) << SIGNIFICAND_BITS; local
124 bits += signifRounded;
126 * If signifRounded == 2^53, we'd need to set all of the significand bits to zero and add 1 t
    [all...]
  /external/pdfium/fxbarcode/qrcode/
BC_QRCoderErrorCorrectionLevel.h 22 static CBC_QRCoderErrorCorrectionLevel* ForBits(int32_t bits);
32 int32_t bits,
  /external/v4l2_codec2/vda/
vp9_raw_bits_reader.h 20 // A class to read raw bits stream. See VP9 spec, "RAW-BITS DECODING" section
36 // if 3 bits were read.
43 // Reads a literal with |bits| bits.
45 int ReadLiteral(int bits);
47 // Reads a signed literal with |bits| bits (not including the sign bit).
49 int ReadSignedLiteral(int bits);
51 // Consumes trailing bits up to next byte boundary. Returns true if n
    [all...]
  /external/valgrind/memcheck/tests/amd64/
shr_edx.stdout.exp 2 shrl 0x10 with unitialised bits
  /external/valgrind/memcheck/tests/vbit-test/
ternary.c 48 // SAME with respect to the 1-bits in all operands
56 if ((result->vbits.bits.u128[0] != 0) ||
57 (result->vbits.bits.u128[1] != 0)) {
58 expected_vbits.bits.u128[0] = result->vbits.bits.u128[0];
59 expected_vbits.bits.u128[1] = result->vbits.bits.u128[1];
66 expected_vbits.bits.u128[0] = ~0x0ULL;
67 expected_vbits.bits.u128[1] = ~0x0ULL;
89 that propagates to the output. Do this for all bits in eac
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/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.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
ipc.h 29 #include <bits/ipctypes.h>
30 #include <bits/ipc.h>
poll.h 25 /* Get the platform dependent bits of `poll'. */
26 #include <bits/poll.h>
29 # include <bits/sigset.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
ipc.h 29 #include <bits/ipctypes.h>
30 #include <bits/ipc.h>
poll.h 25 /* Get the platform dependent bits of `poll'. */
26 #include <bits/poll.h>
29 # include <bits/sigset.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
checkers.h 36 #include <bits/stl_algobase.h>
37 #include <bits/stl_function.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
checkers.h 36 #include <bits/stl_algobase.h>
37 #include <bits/stl_function.h>
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/
test-gen.c 32 tester, and the bits to be set in the instruction word. The
103 disassembler, and in bits the bits of the instruction word that are
109 word bits; member in struct:__anon4415
246 #define insn_bits(name,bits) \
247 { insn_bits, { p1: # name, w: bits } }
252 data->bits = arg->w;
260 #define insn_size_bits(name,size,bits) \
261 { insn_size_bits, { p1: # name, i1: size, w: bits } }
266 data->bits = arg->w
476 word bits = ((word) val) & (((((word) 1) << (nbits - 1)) << 1) - 1); local
513 word bits = val; local
549 word bits = val; local
646 word bits = 0; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbnl.c 50 k = u.bits.exp; /* extract exponent */
52 if ((u.bits.manh|u.bits.manl)==0) return x; /* +-0 */
54 k = u.bits.exp - 128;
61 {u.bits.exp = k; return u.e;}
67 u.bits.exp = k;

Completed in 396 milliseconds

1 2 3 4 5 6 7 8 91011>>