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

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/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/8/sources/cxx-stl/gnu-libstdc++/4.6/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/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/mips/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/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/x86/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/9/sources/cxx-stl/gnu-libstdc++/4.6/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/9/sources/cxx-stl/gnu-libstdc++/4.6/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/9/sources/cxx-stl/gnu-libstdc++/4.6/libs/mips/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/9/sources/cxx-stl/gnu-libstdc++/4.6/libs/x86/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>
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ilogbl.c 30 if (u.bits.exp == 0) {
31 if ((u.bits.manl | u.bits.manh) == 0)
34 if (u.bits.manh == 0) {
36 for (b = LDBL_MANH_SIZE; !(u.bits.manl & m); m >>= 1)
40 for (b = 0; !(u.bits.manh & m); m >>= 1)
47 } else if (u.bits.exp < (LDBL_MAX_EXP << 1) - 1)
48 return (u.bits.exp - LDBL_MAX_EXP + 1);
49 else if (u.bits.manl != 0 || u.bits.manh != 0
    [all...]
s_modfl.c 50 /* Return the last n bits of a word, representing the fractional part. */
51 #define GETFRAC(bits, n) ((bits) & ~(MASK << (n)))
52 /* The number of fraction bits in manh, not counting the integer bit */
64 e = ux.bits.exp - LDBL_MAX_EXP + 1;
67 *iptr = zero[ux.bits.sign];
70 if ((GETFRAC(ux.bits.manh, HIBITS - 1 - e) |
71 ux.bits.manl) == 0) { /* X is an integer. */
73 return (zero[ux.bits.sign]);
75 /* Clear all but the top e+1 bits. *
    [all...]
s_ceill.c 35 uint64_t o = u.bits.manh; \
36 u.bits.manh += (c); \
37 if (u.bits.manh < o) \
38 u.bits.exp++; \
43 uint64_t o = u.bits.manh; \
44 u.bits.manh += (c); \
45 if (u.bits.manh < o) { \
46 u.bits.exp++; \
47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \
58 int e = u.bits.exp - LDBL_MAX_EXP + 1
    [all...]
s_floorl.c 35 uint64_t o = u.bits.manh; \
36 u.bits.manh += (c); \
37 if (u.bits.manh < o) \
38 u.bits.exp++; \
43 uint64_t o = u.bits.manh; \
44 u.bits.manh += (c); \
45 if (u.bits.manh < o) { \
46 u.bits.exp++; \
47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \
58 int e = u.bits.exp - LDBL_MAX_EXP + 1
    [all...]
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));
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/H264/
bitstream_builder.h 25 int32_t Add2Bits(const uint8_t bits);
26 int32_t Add3Bits(const uint8_t bits);
27 int32_t Add4Bits(const uint8_t bits);
28 int32_t Add5Bits(const uint8_t bits);
29 int32_t Add6Bits(const uint8_t bits);
30 int32_t Add7Bits(const uint8_t bits);
31 int32_t Add8Bits(const uint8_t bits);
32 int32_t Add16Bits(const uint16_t bits);
33 int32_t Add24Bits(const uint32_t bits);
34 int32_t Add32Bits(const uint32_t bits);
    [all...]
bitstream_builder.cc 67 BitstreamBuilder::Add2Bits(const uint8_t bits)
78 Add1BitWithoutSanity(bits >> 1);
79 Add1BitWithoutSanity(bits);
84 BitstreamBuilder::Add3Bits(const uint8_t bits)
95 Add1BitWithoutSanity(bits >> 2);
96 Add1BitWithoutSanity(bits >> 1);
97 Add1BitWithoutSanity(bits);
102 BitstreamBuilder::Add4Bits(const uint8_t bits)
113 Add1BitWithoutSanity(bits >> 3);
114 Add1BitWithoutSanity(bits >> 2)
    [all...]
  /external/speex/include/speex/
speex_callbacks.h 88 typedef int (*speex_callback_func)(SpeexBits *bits, void *state, void *data);
100 int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state);
103 int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data);
106 int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data);
109 int speex_std_char_handler(SpeexBits *bits, void *state, void *data);
112 int speex_default_user_handler(SpeexBits *bits, void *state, void *data);
117 int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data);
120 int speex_std_vbr_request_handler(SpeexBits *bits, void *state, void *data);
123 int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data);
126 int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RC2Parameters.java 9 private int bits; field in class:RC2Parameters
19 int bits)
22 this.bits = bits;
34 return bits;
  /ndk/sources/android/support/src/stdio/amd64/
_fpmath.h 30 // Android uses 128 bits long doubles for LP64, so the structure and macros
40 } bits; member in union:IEEEl2bits
56 (a)[0] = (uint32_t)(u).bits.manl; \
57 (a)[1] = (uint32_t)((u).bits.manl >> 32); \
58 (a)[2] = (uint32_t)(u).bits.manh; \
59 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
  /dalvik/dx/junit-tests/com/android/dx/util/
BitsTest.java 23 assertEquals(label(0), 0, Bits.makeBitSet(0).length);
26 assertEquals(label(i), 1, Bits.makeBitSet(i).length);
30 assertEquals(label(i), 2, Bits.makeBitSet(i).length);
38 assertEquals(label(i), expect, Bits.makeBitSet(i).length);
49 Bits.getMax(new int[expect]));
54 int[] bits = Bits.makeBitSet(100); local
57 assertFalse(label(i), Bits.get(bits, i));
62 int[] bits = Bits.makeBitSet(100) local
73 int[] bits = Bits.makeBitSet(100); local
86 int[] bits = Bits.makeBitSet(50); local
103 int[] bits = Bits.makeBitSet(100); local
131 int[] bits = Bits.makeBitSet(100); local
146 int[] bits = Bits.makeBitSet(100); local
171 int[] bits = Bits.makeBitSet(i); local
190 int[] bits = Bits.makeBitSet(i); local
213 int[] bits = new int[100]; local
221 int[] bits = new int[100]; local
229 int[] bits = new int[100]; local
237 int[] bits = new int[100]; local
248 int[] bits = new int[100]; local
259 int[] bits = new int[100]; local
270 int[] bits = new int[100]; local
278 int[] bits = new int[100]; local
289 int[] bits = new int[100]; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.java 22 public final class Bits {
26 private Bits() {
31 * Constructs a bit set to contain bits up to the given index (exclusive).
44 * @param bits {@code non-null;} bit set in question
47 public static int getMax(int[] bits) {
48 return bits.length * 0x20;
54 * @param bits {@code non-null;} bit set to operate on
58 public static boolean get(int[] bits, int idx) {
61 return (bits[arrayIdx] & bit) != 0;
67 * @param bits {@code non-null;} bit set to operate o
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Bits.java 22 public final class Bits {
26 private Bits() {
31 * Constructs a bit set to contain bits up to the given index (exclusive).
44 * @param bits {@code non-null;} bit set in question
47 public static int getMax(int[] bits) {
48 return bits.length * 0x20;
54 * @param bits {@code non-null;} bit set to operate on
58 public static boolean get(int[] bits, int idx) {
61 return (bits[arrayIdx] & bit) != 0;
67 * @param bits {@code non-null;} bit set to operate o
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Bits.java 22 public final class Bits {
26 private Bits() {
31 * Constructs a bit set to contain bits up to the given index (exclusive).
44 * @param bits {@code non-null;} bit set in question
47 public static int getMax(int[] bits) {
48 return bits.length * 0x20;
54 * @param bits {@code non-null;} bit set to operate on
58 public static boolean get(int[] bits, int idx) {
61 return (bits[arrayIdx] & bit) != 0;
67 * @param bits {@code non-null;} bit set to operate o
    [all...]
  /external/chromium_org/media/cast/test/utility/
barcode.h 17 // Encode a resilient barcode into |frame| containing all the bits
18 // from |bits|.
19 bool EncodeBarcode(const std::vector<bool>& bits,
23 // of bits.
31 std::vector<bool> bits(sizeof(T) * 8);
32 for (size_t i = 0; i < bits.size(); i++) {
33 bits[i] = ((data >> i) & 1) == 1;
35 return EncodeBarcode(bits, output_frame);
40 std::vector<bool> bits(sizeof(T) * 8);
41 bool ret = DecodeBarcode(output_frame, &bits);
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_value.h 24 bits.swap(value.bits);
28 bool empty() const { return bits.empty(); }
30 bits.clear();
35 return bits.size() + blob_info.size() * sizeof(IndexedDBBlobInfo);
38 std::string bits; member in struct:content::IndexedDBValue

Completed in 718 milliseconds

1 2 34 5 6 7 8 91011>>