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

12 3 4 5 6 7 8 91011>>

  /bionic/libm/
isinf.c 44 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0);
53 return (u.bits.exp == 255 && u.bits.man == 0);
64 return (u.bits.exp == 32767 && u.bits.manl == 0 && u.bits.manh == 0);
66 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0)
    [all...]
fpclassify.c 43 if (u.bits.exp == 0) {
44 if (u.bits.man == 0)
48 if (u.bits.exp == 255) {
49 if (u.bits.man == 0)
62 if (u.bits.exp == 0) {
63 if ((u.bits.manl | u.bits.manh) == 0)
67 if (u.bits.exp == 2047) {
68 if ((u.bits.manl | u.bits.manh) == 0
    [all...]
  /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...]
  /external/linux-tools-perf/util/
bitmap.c 16 int __bitmap_weight(const unsigned long *bitmap, int bits)
18 int k, w = 0, lim = bits/BITS_PER_LONG;
23 if (bits % BITS_PER_LONG)
24 w += hweight_long(bitmap[k] & BITMAP_LAST_WORD_MASK(bits));
  /frameworks/base/core/java/com/android/internal/util/
BitwiseInputStream.java 32 // The current position offset, in bits, from the msb in byte 0.
71 * @param bits the amount of data to read (gte 0, lte 8)
74 public int read(int bits) throws AccessException {
76 int offset = 16 - (mPos & 0x07) - bits; // &7==%8
77 if ((bits < 0) || (bits > 8) || ((mPos + bits) > mEnd)) {
79 "(pos " + mPos + ", end " + mEnd + ", bits " + bits + ")");
84 data &= (-1 >>> (32 - bits));
    [all...]
BitwiseOutputStream.java 32 // The current position offset, in bits, from the msb in byte 0.
73 * @param bits additional bits to be accommodated
75 private void possExpand(int bits) {
76 if ((mPos + bits) < mEnd) return;
77 byte[] newBuf = new byte[(mPos + bits) >>> 2];
89 * @param bits the amount of data to write (gte 0, lte 8)
90 * @param data to write, will be masked to expose only bits param from lsb
92 public void write(int bits, int data) throws AccessException {
93 if ((bits < 0) || (bits > 8))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
a.out.h 2 # error "Never use <bits/a.out.h> directly; include <a.out.h> instead."
5 #include <bits/wordsize.h>
ipctypes.h 0 /* bits/ipctypes.h -- Define some types used by SysV IPC/MSG/SHM. Generic.
21 * Never include <bits/ipctypes.h> directly.
27 #include <bits/types.h>
37 #endif /* bits/ipctypes.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
syscall.h 30 we scan the kernel's list and produce <bits/syscall.h> with macros for
32 # include <bits/syscall.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
a.out.h 2 # error "Never use <bits/a.out.h> directly; include <a.out.h> instead."
5 #include <bits/wordsize.h>
ipctypes.h 0 /* bits/ipctypes.h -- Define some types used by SysV IPC/MSG/SHM. Generic.
21 * Never include <bits/ipctypes.h> directly.
27 #include <bits/types.h>
37 #endif /* bits/ipctypes.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
syscall.h 30 we scan the kernel's list and produce <bits/syscall.h> with macros for
32 # include <bits/syscall.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
a.out.h 2 # error "Never use <bits/a.out.h> directly; include <a.out.h> instead."
5 #include <bits/wordsize.h>
ipctypes.h 0 /* bits/ipctypes.h -- Define some types used by SysV IPC/MSG/SHM. Generic.
21 * Never include <bits/ipctypes.h> directly.
27 #include <bits/types.h>
37 #endif /* bits/ipctypes.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
syscall.h 30 we scan the kernel's list and produce <bits/syscall.h> with macros for
32 # include <bits/syscall.h>
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmaxf.c 43 if (u[0].bits.exp == 255 && u[0].bits.man != 0)
45 if (u[1].bits.exp == 255 && u[1].bits.man != 0)
49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].f);
s_fminf.c 43 if (u[0].bits.exp == 255 && u[0].bits.man != 0)
45 if (u[1].bits.exp == 255 && u[1].bits.man != 0)
49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].f);
s_frexpl.c 44 switch (u.bits.exp) {
46 if ((u.bits.manl | u.bits.manh) == 0) {
50 *ex = u.bits.exp - 0x4200;
51 u.bits.exp = 0x3ffe;
57 *ex = u.bits.exp - 0x3ffe;
58 u.bits.exp = 0x3ffe;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
gthr.h 145 #include <bits/gthr-tpf.h>
147 #include <bits/gthr-posix.h>
149 #include <bits/gthr-posix95.h>
151 #include <bits/gthr-dce.h>
153 #include <bits/gthr-solaris.h>
162 #include <bits/gthr-default.h>
166 #include <bits/gthr-single.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
gthr.h 145 #include <bits/gthr-tpf.h>
147 #include <bits/gthr-posix.h>
149 #include <bits/gthr-posix95.h>
151 #include <bits/gthr-dce.h>
153 #include <bits/gthr-solaris.h>
162 #include <bits/gthr-default.h>
166 #include <bits/gthr-single.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
gthr.h 145 #include <bits/gthr-tpf.h>
147 #include <bits/gthr-posix.h>
149 #include <bits/gthr-posix95.h>
151 #include <bits/gthr-dce.h>
153 #include <bits/gthr-solaris.h>
162 #include <bits/gthr-default.h>
166 #include <bits/gthr-single.h>
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr.h 145 #include <bits/gthr-tpf.h>
147 #include <bits/gthr-posix.h>
149 #include <bits/gthr-posix95.h>
151 #include <bits/gthr-dce.h>
153 #include <bits/gthr-solaris.h>
162 #include <bits/gthr-default.h>
166 #include <bits/gthr-single.h>
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr.h 145 #include <bits/gthr-tpf.h>
147 #include <bits/gthr-posix.h>
149 #include <bits/gthr-posix95.h>
151 #include <bits/gthr-dce.h>
153 #include <bits/gthr-solaris.h>
162 #include <bits/gthr-default.h>
166 #include <bits/gthr-single.h>
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr.h 145 #include <bits/gthr-tpf.h>
147 #include <bits/gthr-posix.h>
149 #include <bits/gthr-posix95.h>
151 #include <bits/gthr-dce.h>
153 #include <bits/gthr-solaris.h>
162 #include <bits/gthr-default.h>
166 #include <bits/gthr-single.h>
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr.h 145 #include <bits/gthr-tpf.h>
147 #include <bits/gthr-posix.h>
149 #include <bits/gthr-posix95.h>
151 #include <bits/gthr-dce.h>
153 #include <bits/gthr-solaris.h>
162 #include <bits/gthr-default.h>
166 #include <bits/gthr-single.h>

Completed in 1792 milliseconds

12 3 4 5 6 7 8 91011>>