HomeSort by relevance Sort by last modified time
    Searched refs:bits (Results 26 - 50 of 4103) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
iret.asm 0 [bits 16]
5 [bits 32]
9 [bits 64]
stos.asm 0 [bits 16]
5 [bits 32]
9 [bits 64]
cmpxchg.asm 0 [bits 64]
mem64hi32.asm 0 [bits 64]
nomem64-err2.asm 0 [bits 64]
o64.asm 0 [bits 64]
xmm64.asm 0 [bits 64]
xsave.asm 7 [bits 64]
enter.asm 0 [bits 32]
6 [bits 16]
vmx-err.asm 0 [bits 32]
5 [bits 64]
  /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)
  /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/jemalloc/test/unit/
prof_accum.h 9 void *alloc_##n(unsigned bits);
15 alloc_##n(unsigned bits) \
19 if (bits == 0) \
22 switch (bits & 0x1U) { \
24 p = (alloc_0(bits >> 1)); \
27 p = (alloc_1(bits >> 1)); \
  /external/clang/test/Analysis/
fields.c 45 struct Bits {
62 struct Bits bits; local
64 if (foo() && bits.b) // expected-warning {{garbage}}
66 if (foo() && bits.inner.e) // expected-warning {{garbage}}
69 bits.c = 1;
70 clang_analyzer_eval(bits.c == 1); // expected-warning {{TRUE}}
72 if (foo() && bits.b) // expected-warning {{garbage}}
74 if (foo() && bits.x) // expected-warning {{garbage}}
77 bits.x = true
121 struct Bits bits; local
    [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_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...]
  /external/chromium_org/components/variations/
metrics_util.cc 20 uint32 bits; local
21 COMPILE_ASSERT(sizeof(bits) < sizeof(sha1_hash), need_more_data);
22 memcpy(&bits, sha1_hash, sizeof(bits));
24 return base::ByteSwapToLE32(bits);
  /external/speex/include/speex/
speex_bits.h 51 int nbBits; /**< Total number of bits stored in the stream*/
62 void speex_bits_init(SpeexBits *bits);
65 void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size);
67 /** Sets the bits in a SpeexBits struct to use data from an existing buffer (for decoding without copying data) */
68 void speex_bits_set_bit_buffer(SpeexBits *bits, void *buff, int buf_size);
71 void speex_bits_destroy(SpeexBits *bits);
73 /** Resets bits to initial value (just after initialization, erasing content)*/
74 void speex_bits_reset(SpeexBits *bits);
77 void speex_bits_rewind(SpeexBits *bits);
80 void speex_bits_read_from(SpeexBits *bits, char *bytes, int len)
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
IntersectionUtilities.cpp 13 long bits = BitConverter.DoubleToInt64Bits(d);
15 bool negative = (bits < 0);
16 int exponent = (int) ((bits >> 52) & 0x7ffL);
17 long mantissa = bits & 0xfffffffffffffL;
  /external/skia/experimental/Intersection/
IntersectionUtilities.cpp 13 long bits = BitConverter.DoubleToInt64Bits(d);
15 bool negative = (bits < 0);
16 int exponent = (int) ((bits >> 52) & 0x7ffL);
17 long mantissa = bits & 0xfffffffffffffL;
  /external/speex/libspeex/
speex_callbacks.c 43 EXPORT int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state)
47 /*speex_bits_advance(bits, 5);*/
48 id=speex_bits_unpack_unsigned(bits, 4);
53 return callback->func(bits, state, callback->data);
55 /*If callback is not registered, skip the right number of bits*/
70 speex_bits_advance(bits, adv);
75 EXPORT int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data)
78 m = speex_bits_unpack_unsigned(bits, 4);
83 EXPORT int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data)
86 m = speex_bits_unpack_unsigned(bits, 4)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_nanl.c 39 uint32_t bits[4]; member in union:__anon1061
42 _scan_nan(u.bits, 4, s);
43 u.ieee.bits.exp = 0x7fff;
44 u.ieee.bits.manh |= 1ULL << 47; /* make it a quiet NaN */

Completed in 742 milliseconds

12 3 4 5 6 7 8 91011>>