/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
a.out.h | 2 # error "Never use <bits/a.out.h> directly; include <a.out.h> instead."
|
endian.h | 4 # error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
lastlog.h | 2 which we define in <bits/utmp.h>. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
endian.h | 4 # error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
a.out.h | 2 # error "Never use <bits/a.out.h> directly; include <a.out.h> instead." 5 #include <bits/wordsize.h>
|
/external/speex/include/speex/ |
speex_bits.h | 51 int nbBits; /**< Total number of bits stored in the stream*/ 62 void speex_bits_init(SpeexBits *bits); 65 void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size); 67 /** Sets the bits in a SpeexBits struct to use data from an existing buffer (for decoding without copying data) */ 68 void speex_bits_set_bit_buffer(SpeexBits *bits, void *buff, int buf_size); 71 void speex_bits_destroy(SpeexBits *bits); 73 /** Resets bits to initial value (just after initialization, erasing content)*/ 74 void speex_bits_reset(SpeexBits *bits); 77 void speex_bits_rewind(SpeexBits *bits); 80 void speex_bits_read_from(SpeexBits *bits, char *bytes, int len) [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/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/llvm/lib/Target/Mips/ |
MipsInstrFormats.td | 27 class Format<bits<4> val> { 28 bits<4> Value = val; 75 field bits<32> Inst; 82 bits<6> Opcode = 0; 84 // Top 6 bits are the 'opcode' field 97 bits<4> FormBits = Form.Value; 109 field bits<32> SoftFail = 0; 148 class FR<bits<6> op, bits<6> _funct, dag outs, dag ins, string asmstr, 152 bits<5> rd [all...] |
/external/skia/src/utils/ |
SkFloatUtils.h | 57 /** Bits is a unsigned integer the same size as the floating point number. */ 58 typedef typename SkTypeWithSize<sizeof(RawType) * CHAR_BIT>::UInt Bits; 60 /** # of bits in a number. */ 63 /** # of fraction bits in a number. */ 66 /** # of exponent bits in a number. */ 70 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1); 72 /** The mask for the fraction bits. */ 73 static const Bits kFractionBitMask = 74 ~static_cast<Bits>(0) >> (kExponentBitCount + 1) 129 Bits bits; member in union:SkFloatingPoint::FloatingPointUnion [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_remquol.c | 55 * Return the IEEE remainder and set *quo to the last n bits of the 57 * we wind up computing all the integer bits of the quotient anyway as 59 * method. In practice, this is far more bits than are needed to use 65 * for an explicit integer bit in front of the fractional bits. 78 sx = ux.bits.sign; 79 sxy = sx ^ uy.bits.sign; 80 ux.bits.sign = 0; /* |x| */ 81 uy.bits.sign = 0; /* |y| */ 85 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 * [all...] |
/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...] |
/system/bt/embdrv/sbc/decoder/srce/ |
dequant.c | 44 dequant = 2^(scale_factor+1) * ((raw * 2.0 + 1.0) / ((2^bits) - 1) - 1) 46 2 <= bits <= 16 47 0 <= raw < (2^bits)-1 (the -1 is because quantized values with all 1's are 55 dequant_long_scaled table for 16 bits is as accurate as possible, since it has 63 dequant_long_long[bits] = round(2^31 * 1/((2^bits - 1) / 1.38...) for 2 <= 64 bits <= 16 71 dequant_long_scaled[bits] <= 2^31 / ((2^bits - 1)) for 2 <= bits <= 1 [all...] |
/external/llvm/test/TableGen/ |
BitOffsetDecoder.td | 20 field bits<16> Inst; 21 bits<32> factor; 25 field bits<16> SoftFail = 0; 30 field bits<16> Inst; 31 bits<32> factor; 35 field bits<16> SoftFail = 0; 40 field bits<16> Inst; 41 bits<32> factor; 45 field bits<16> SoftFail = 0; 50 field bits<16> Inst [all...] |
/external/toybox/toys/other/ |
base64.c | 43 int out = 0, bits = 0, x = 0, i, len; local 52 if (bits) wraputchar(toybuf[out<<(6-bits)], &x); 66 bits += 6; 67 if (bits >= 8) { 68 putchar(out >> (bits -= 8)); 69 out &= (1<<bits)-1; 80 bits += 8; 81 while (bits >= 6) { 82 wraputchar(toybuf[out >> (bits -= 6)], &x) [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...] |
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Common/ |
ArmLib.c | 27 IN UINT32 Bits
31 val |= Bits;
38 IN UINT32 Bits
42 val &= ~Bits;
53 IN UINTN Bits
58 Value |= Bits;
65 IN UINTN Bits
70 Value &= ~Bits;
|
/external/clang/test/SemaCXX/ |
bitfield-layout.cpp | 8 char c : 9; // expected-warning {{width of bit-field 'c' (9 bits) exceeds the width of its type; value will be truncated to 8 bits}} 14 char c : 16; // expected-warning {{width of bit-field 'c' (16 bits) exceeds the width of its type; value will be truncated to 8 bits}} 20 char c : 32; // expected-warning {{width of bit-field 'c' (32 bits) exceeds the width of its type; value will be truncated to 8 bits}} 26 char c : 64; // expected-warning {{width of bit-field 'c' (64 bits) exceeds the width of its type; value will be truncated to 8 bits}}
|
/external/fio/lib/ |
ieee754.h | 6 extern uint64_t pack754(long double f, unsigned bits, unsigned expbits); 7 extern long double unpack754(uint64_t i, unsigned bits, unsigned expbits);
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
PackedVector.h | 30 static T getValue(const llvm::BitVector &Bits, unsigned Idx) { 33 val = T(val | ((Bits[(Idx << (BitNum-1)) + i] ? 1UL : 0UL) << i)); 37 static void setValue(llvm::BitVector &Bits, unsigned Idx, T val) { 40 Bits[(Idx << (BitNum-1)) + i] = val & (T(1) << i); 47 static T getValue(const llvm::BitVector &Bits, unsigned Idx) { 50 val = T(val | ((Bits[(Idx << (BitNum-1)) + i] ? 1UL : 0UL) << i)); 51 if (Bits[(Idx << (BitNum-1)) + BitNum-1]) 56 static void setValue(llvm::BitVector &Bits, unsigned Idx, T val) { 59 Bits.set((Idx << (BitNum-1)) + BitNum-1); 63 Bits[(Idx << (BitNum-1)) + i] = val & (T(1) << i) [all...] |
/hardware/intel/common/libva/va/egl/ |
va_egl.h | 13 * (lower 16bits is buffer index, upper 16bits
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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>
|
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/ |
types.h | 14 #define DECLARE_BITMAP(name,bits) \ 15 unsigned long name[BITS_TO_LONGS(bits)]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
inftrees.h | 14 table that indexes more bits of the code. op indicates whether
17 pointer, the low four bits of op is the number of index bits of
18 that table. For a length or distance, the low four bits of op
19 is the number of extra bits to get after the code. bits is
20 the number of bits in this code or part of the code to drop off
25 unsigned char op; /* operation, extra bits, table bits */
26 unsigned char bits; /* bits in this part of the code */ member in struct:__anon5852 [all...] |