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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/libs/armeabi-v7a/include/bits/
gthr.h 150 #include <bits/gthr-default.h>
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/libs/mips/include/bits/
gthr.h 150 #include <bits/gthr-default.h>
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/libs/x86/include/bits/
gthr.h 150 #include <bits/gthr-default.h>
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form21h.java 90 // Where the high bits are depends on the category of the target.
92 int bits = cb.getIntBits(); local
93 return ((bits & 0xffff) == 0);
95 long bits = cb.getLongBits(); local
96 return ((bits & 0xffffffffffffL) == 0);
104 BitSet bits = new BitSet(1); local
106 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
107 return bits;
115 short bits; local
117 // Where the high bits are depends on the category of the target
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form21h.java 90 // Where the high bits are depends on the category of the target.
92 int bits = cb.getIntBits(); local
93 return ((bits & 0xffff) == 0);
95 long bits = cb.getLongBits(); local
96 return ((bits & 0xffffffffffffL) == 0);
104 BitSet bits = new BitSet(1); local
106 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
107 return bits;
115 short bits; local
117 // Where the high bits are depends on the category of the target
    [all...]
  /external/guava/guava/src/com/google/common/hash/
BloomFilterStrategies.java 12 * Collections of strategies of generating the {@code k * log(M)} bits required for an element to
13 * be mapped to a {@link BloomFilter} of {@code M} bits and {@code k} hash functions. These
27 int numHashFunctions, BitArray bits) {
38 bits.set(nextHash % bits.size());
43 int numHashFunctions, BitArray bits) {
53 if (!bits.get(nextHash % bits.size())) {
64 BitArray(int bits) {
65 this(new long[IntMath.divide(bits, 64, RoundingMode.CEILING)])
    [all...]
  /external/openssl/crypto/dsa/
dsa_locl.h 57 int dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits,
  /external/qemu/
aes.h 13 int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
15 int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_sysmouse.cc 32 char *bits; member in struct:WMcursor
38 dummy.bits = 0;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
time.h 39 # include <bits/types.h>
58 # endif /* bits/time.h */
65 # include <bits/types.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/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/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
time.h 39 # include <bits/types.h>
58 # endif /* bits/time.h */
65 # include <bits/types.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/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.7-4.6/sysroot/usr/include/bits/
time.h 39 # include <bits/types.h>
58 # endif /* bits/time.h */
65 # include <bits/types.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/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>
  /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;
e_atan2l.c 62 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)!=0) || /* x is NaN */
64 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* y is NaN */
66 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
71 if(expty==0 && ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)==0) {
80 if(exptx==0 && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0
    [all...]
  /external/elfutils/backends/
x86_64_corenote.c 43 { .offset = at * 8, .regno = dwreg, .count = n, .bits = 64 }
45 { .offset = at * 8, .regno = dwreg, .count = n, .bits = 16, .pad = 6 }
99 { .offset = 0, .regno = 65, .count = 2, .bits = 16 }, /* fcw-fsw */
100 { .offset = 24, .regno = 64, .count = 1, .bits = 32 }, /* mxcsr */
101 { .offset = 32, .regno = 33, .count = 8, .bits = 80, .pad = 6 }, /* stN */
102 { .offset = 32 + 128, .regno = 17, .count = 16, .bits = 128 }, /* xmm */
  /libcore/luni/src/main/java/java/util/
Random.java 83 * the number of bits specified by the argument {@code bits} as
89 protected synchronized int next(int bits) {
91 return (int) (seed >>> (48 - bits));
180 int bits, val; local
182 bits = next(31);
183 val = bits % n;
184 } while (bits - val + (n - 1) < 0);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_cavlc.c 52 * 4 bits symbol value (bits [4,7]) along with four bits to represent length
53 * of the VLC code word (bits [0,3]) */
55 /* macro to obtain length of the coeff token information field, bits [0,4] */
57 /* macro to obtain length of the other information fields, bits [0,3] */
59 /* macro to obtain code word from the information fields, bits [4,7] */
60 #define INFO(vlc) (((vlc) >> 4) & 0xF) /* 4 MSB bits contain information */
62 * bits [5,10] */
65 * bits [11,15] *
    [all...]
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 1016 long bits = Double.doubleToLongBits(d); local
1071 int bits = Float.floatToIntBits(d); local
    [all...]
  /external/openssl/crypto/bn/
bn_rand.c 118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom)
124 if (bits == 0)
130 bytes=(bits+7)/8;
131 bit=(bits-1)%8;
141 /* make a random number and set the top and bottom bits */
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom)
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom)
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom
    [all...]

Completed in 1096 milliseconds

1 2 3 4 5 6 7 8 91011>>