HomeSort by relevance Sort by last modified time
    Searched refs:bits (Results 76 - 100 of 3823) sorted by null

1 2 34 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_fmodl.c 62 * for an explicit integer bit in front of the fractional bits.
75 sx = ux.bits.sign;
78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
81 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */
83 if(ux.bits.exp<=uy.bits.exp)
    [all...]
s_logbl.c 31 if (u.bits.exp == 0) {
32 if ((u.bits.manl | u.bits.manh) == 0) { /* x == 0 */
33 u.bits.sign = 1;
37 if (u.bits.manh == 0) {
39 for (b = LDBL_MANH_SIZE; !(u.bits.manl & m); m >>= 1)
43 for (b = 0; !(u.bits.manh & m); m >>= 1)
51 if (u.bits.exp < (LDBL_MAX_EXP << 1) - 1) /* normal */
52 return ((long double)(u.bits.exp - LDBL_MAX_EXP + 1));
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/linux-tools-perf/src/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);
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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
  /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.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. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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); \
  /external/toybox/toys/other/
base64.c 31 int out = 0, bits = 0, x = 0, i, len; local
37 if (bits) {
38 putchar(toybuf[out<<(6-bits)]);
53 bits += 6;
54 if (bits >= 8) {
55 putchar(out >> (bits -= 8));
56 out &= (1<<bits)-1;
67 bits += 8;
68 while (bits >= 6) {
69 putchar(toybuf[out >> (bits -= 6)])
    [all...]
  /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); \
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstDouble.java 39 * @param bits the {@code double} value as {@code long} bits
41 public static CstDouble make(long bits) {
46 return new CstDouble(bits);
52 * @param bits the {@code double} value as {@code long} bits
54 private CstDouble(long bits) {
55 super(bits);
61 long bits = getLongBits(); local
62 return "double{0x" + Hex.u8(bits) + " / "
    [all...]
CstFloat.java 40 * @param bits the {@code float} value as {@code int} bits
42 public static CstFloat make(int bits) {
47 return new CstFloat(bits);
53 * @param bits the {@code float} value as {@code int} bits
55 private CstFloat(int bits) {
56 super(bits);
62 int bits = getIntBits(); local
63 return "float{0x" + Hex.u4(bits) + " / "
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstDouble.java 39 * @param bits the {@code double} value as {@code long} bits
41 public static CstDouble make(long bits) {
46 return new CstDouble(bits);
52 * @param bits the {@code double} value as {@code long} bits
54 private CstDouble(long bits) {
55 super(bits);
61 long bits = getLongBits(); local
62 return "double{0x" + Hex.u8(bits) + " / "
    [all...]
CstFloat.java 40 * @param bits the {@code float} value as {@code int} bits
42 public static CstFloat make(int bits) {
47 return new CstFloat(bits);
53 * @param bits the {@code float} value as {@code int} bits
55 private CstFloat(int bits) {
56 super(bits);
62 int bits = getIntBits(); local
63 return "float{0x" + Hex.u4(bits) + " / "
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstDouble.java 39 * @param bits the {@code double} value as {@code long} bits
41 public static CstDouble make(long bits) {
46 return new CstDouble(bits);
52 * @param bits the {@code double} value as {@code long} bits
54 private CstDouble(long bits) {
55 super(bits);
61 long bits = getLongBits(); local
62 return "double{0x" + Hex.u8(bits) + " / "
    [all...]

Completed in 4074 milliseconds

1 2 34 5 6 7 8 91011>>