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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
pushf-err.asm 0 [bits 16]
11 [bits 32]
21 [bits 64]
pushf.asm 0 [bits 16]
11 [bits 32]
21 [bits 64]
ea-over.asm 0 [bits 32]
fwdequ64.asm 0 [bits 64]
sse4-err.asm 0 [bits 64]
nomem64-err.asm 0 [bits 64]
12 [bits 32]
  /external/linux-tools-perf/perf-3.12.0/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);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_truncl.c 45 int e = u.bits.exp - LDBL_MAX_EXP + 1;
50 u.e = zero[u.bits.sign];
53 if (((u.bits.manh & m) | u.bits.manl) == 0)
56 u.bits.manh &= ~m;
57 u.bits.manl = 0;
62 if ((u.bits.manl & m) == 0)
65 u.bits.manl &= ~m;
e_sqrtl.c 43 if (++u.bits.manl == 0) {
44 if (++u.bits.manh == 0) {
45 u.bits.exp++;
46 u.bits.manh |= LDBL_NBIT;
59 if (u.bits.manl-- == 0) {
60 if (u.bits.manh-- == LDBL_NBIT) {
61 u.bits.exp--;
62 u.bits.manh |= LDBL_NBIT;
88 if (u.bits.exp == LDBL_MAX_EXP * 2 - 1)
92 if ((u.bits.manh | u.bits.manl | u.bits.exp) == 0
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/
g711.h 56 \param bits The word to be searched
58 static __inline__ int top_bit(unsigned int bits) {
64 : "a" (bits));
69 \param bits The word to be searched
71 static __inline__ int bottom_bit(unsigned int bits) {
77 : "a" (bits));
81 static __inline__ int top_bit(unsigned int bits) {
87 : "a" (bits));
91 static __inline__ int bottom_bit(unsigned int bits) {
97 : "a" (bits));
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
unary.asm 0 [bits 32]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
ioctl.h 27 #include <bits/ioctls.h>
30 #include <bits/ioctl-types.h>
34 values). The code to generate <bits/ioctls.h> has omitted these
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
ioctl.h 27 #include <bits/ioctls.h>
30 #include <bits/ioctl-types.h>
34 values). The code to generate <bits/ioctls.h> has omitted these
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_misc.c 69 int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
75 return private_AES_set_encrypt_key(userKey, bits, key);
78 int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
84 return private_AES_set_decrypt_key(userKey, bits, key);
  /external/openssl/crypto/aes/
aes_misc.c 69 int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
75 return private_AES_set_encrypt_key(userKey, bits, key);
78 int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
84 return private_AES_set_decrypt_key(userKey, bits, key);
  /ndk/sources/android/support/src/stdio/i386/
_fpmath.h 37 } bits; member in union:IEEEl2bits
46 #define mask_nbit_l(u) ((u).bits.manh &= ~LDBL_NBIT)
52 (a)[0] = (uint32_t)(u).bits.manl; \
53 (a)[1] = (uint32_t)(u).bits.manh; \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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. */
  /dalvik/dexgen/src/com/android/dexgen/util/
BitIntSet.java 27 int[] bits; field in class:BitIntSet
35 bits = Bits.makeBitSet(max);
41 Bits.set(bits, value, true);
50 if (value >= Bits.getMax(bits)) {
51 int[] newBits = Bits.makeBitSet(
52 Math.max(value + 1, 2 * Bits.getMax(bits)));
    [all...]
  /dalvik/dx/src/com/android/dx/util/
BitIntSet.java 27 int[] bits; field in class:BitIntSet
35 bits = Bits.makeBitSet(max);
41 Bits.set(bits, value, true);
50 if (value >= Bits.getMax(bits)) {
51 int[] newBits = Bits.makeBitSet(
52 Math.max(value + 1, 2 * Bits.getMax(bits)));
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
BitIntSet.java 27 int[] bits; field in class:BitIntSet
35 bits = Bits.makeBitSet(max);
41 Bits.set(bits, value, true);
50 if (value >= Bits.getMax(bits)) {
51 int[] newBits = Bits.makeBitSet(
52 Math.max(value + 1, 2 * Bits.getMax(bits)));
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BitSet.java 37 protected final static int BITS = 64; // number of bits / long
45 protected final static int MOD_MASK = BITS - 1;
47 /** The actual data bits */
48 protected long bits[]; field in class:BitSet
50 /** Construct a bitset of size one word (64 bits) */
52 this(BITS);
57 bits = bits_;
70 * @param nbits The size of the bitset in bits
73 bits = new long[((nbits - 1) >> LOG_BITS) + 1]
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 35 protected static const BITS:uint = 32; // number of bits / int
43 protected static const MOD_MASK:uint = BITS - 1;
45 /** The actual data bits */
46 protected var bits:Array;
49 public function BitSet(bits:Array = null) {
50 if (bits == null) {
51 this.bits = new Array();
54 this.bits = new Array();
55 for (var i:int = 0; i < bits.length; i++)
    [all...]
  /ndk/sources/android/support/src/stdio/arm64/
_fpmath.h 30 // Android uses 128 bits long doubles for LP64, so the structure and the macros
47 } bits; member in union:IEEEl2bits
69 (a)[0] = (uint32_t)(u).bits.manl; \
70 (a)[1] = (uint32_t)((u).bits.manl >> 32); \
71 (a)[2] = (uint32_t)(u).bits.manh; \
72 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
  /bionic/libm/
fpmath.h 33 // - android uses 128 bits long doubles for LP64, so the structure and macros
47 } bits; member in union:IEEEf2bits
60 } bits; member in union:IEEEd2bits
72 } bits; member in union:IEEEl2bits
88 (a)[0] = (uint32_t)(u).bits.manl; \
89 (a)[1] = (uint32_t)((u).bits.manl >> 32); \
90 (a)[2] = (uint32_t)(u).bits.manh; \
91 (a)[3] = (uint32_t)((u).bits.manh >> 32); \

Completed in 1401 milliseconds

1 2 3 45 6 7 8 91011>>