HomeSort by relevance Sort by last modified time
    Searched full:bits (Results 251 - 275 of 22655) sorted by null

<<11121314151617181920>>

  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtord.c 36 ULtod(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
38 ULtod(ULong *L, ULong *bits, Long exp, int k)
48 L[_1] = bits[0];
49 L[_0] = bits[1];
54 L[_1] = bits[0];
55 L[_0] = (bits[1] & ~0x100000) | ((exp + 0x3ff + 52) << 20);
83 ULong bits[2]; local
93 k = strtodg(s, sp, fpi, &exp, bits);
94 ULtod((ULong*)d, bits, exp, k)
    [all...]
strtorQ.c 54 ULtoQ(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
56 ULtoQ(ULong *L, ULong *bits, Long exp, int k)
67 L[_3] = bits[0];
68 L[_2] = bits[1];
69 L[_1] = bits[2];
70 L[_0] = (bits[3] & ~0x10000) | ((exp + 0x3fff + 112) << 16);
74 L[_3] = bits[0];
75 L[_2] = bits[1];
76 L[_1] = bits[2]
107 ULong bits[4]; local
    [all...]
  /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...]
  /system/bt/embdrv/sbc/decoder/include/
oi_bitstream.h 47 INLINE uint32_t OI_BITSTREAM_ReadUINT(OI_BITSTREAM* bs, OI_UINT bits);
54 OI_UINT bits);
78 #define OI_BITSTREAM_READUINT(result, bits, ptr, value, bitPtr) \
80 OI_ASSERT((bits) <= 16); \
85 (result) >>= 32 - (bits); \
87 (bitPtr) += (bits); \
92 OI_ASSERT(((bits) == 0) || ((result) < (1u << (bits)))); \
95 #define OI_BITSTREAM_WRITEUINT(ptr, value, bitPtr, datum, bits) \
97 (bitPtr) -= (bits); \
    [all...]
oi_bt_spec.h 54 * - array[0] contains bits 47-40,
55 * - array[1] contains bits 39-32,
56 * - array[2] contains bits 31-24,
57 * - array[3] contains bits 23-16,
58 * - array[4] contains bits 15-8, and
59 * - array[5] contains bits 7-0.
68 * UUIDs are 16 bytes (128 bits).
101 * the most significant 32 bits are stored with the same endian-ness as is
106 /* most significant 32 bits of 128-bit UUID */
123 * - array[0] contains bits 0 - 7
    [all...]
  /system/bt/stack/include/
a2dp_aac_constants.h 42 // [Octet 2], [Bits 4-7] Sampling Frequency - 48000 to 96000
43 // NOTE: Bits offset for the higher-order octet 16-bit integer
49 // [Octet 2], [Bits 2-3] Channel Mode
53 // [Octet 2], [Bits 0-1] RFA
58 // [Octet 3], [Bits 0-6] Bit Rate - Bits 16-22 in the 23-bit UiMsbf
62 // [Octet 4], [Bits 0-7] Bit Rate - Bits 8-15 in the 23-bit UiMsfb
63 // [Octet 5], [Bits 0-7] Bit Rate - Bits 0-7 in the 23-bit UiMsf
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
ia64.h 79 IA64_OPND_AR3, /* third application register # (bits 20-26) */
80 IA64_OPND_B1, /* branch register # (bits 6-8) */
81 IA64_OPND_B2, /* branch register # (bits 13-15) */
82 IA64_OPND_CR3, /* third control register # (bits 20-26) */
93 IA64_OPND_DAHR3, /* dahr reg # ( bits 23-25) */
112 IA64_OPND_CCNT5, /* 5-bit count (31 - bits 20-24) */
113 IA64_OPND_CNT2a, /* 2-bit count (1 + bits 27-28) */
114 IA64_OPND_CNT2b, /* 2-bit count (bits 27-28): 1, 2, 3 */
115 IA64_OPND_CNT2c, /* 2-bit count (bits 30-31): 0, 7, 15, or 16 */
116 IA64_OPND_CNT5, /* 5-bit count (bits 14-18) *
377 int bits; member in struct:ia64_operand::bit_field
    [all...]
  /external/webp/src/utils/
bit_reader_inl_utils.h 37 #if (BITS > 32)
39 #elif (BITS > 16)
41 #elif (BITS > 8)
56 // makes sure br->value_ has at least BITS bits worth of data
60 // Read 'BITS' bits at a time if possible.
63 bit_t bits; local
82 br->buf_ += BITS >> 3;
84 #if (BITS > 32
    [all...]
bit_reader_utils.h 29 // However, since range_ is only 8bit, we only need an active window of 8 bits
30 // for value_. Left bits (MSB) gets zeroed and shifted away when value_ falls
31 // below 128, range_ is updated, and fresh bits read from the bitstream are
32 // brought in as LSB. To avoid reading the fresh bits one by one (slow), we
33 // cache BITS of them ahead. The total of (BITS + 8) bits must fit into a
34 // natural register (with type bit_t). To fetch BITS bits from bitstream we
37 // BITS can be any multiple of 8 from 8 to 56 (inclusive)
    [all...]
  /external/lzma/xz-embedded/
xz_lzma2.h 24 * number of bits of the current uncompressed offset. In some places there
114 /* Match length is encoded with 4, 5, or 10 bits.
116 * Length Bits
117 * 2-9 4 = Choice=0 + 3 bits
118 * 10-17 5 = Choice=1 + Choice2=0 + 3 bits
119 * 18-273 10 = Choice=1 + Choice2=1 + 8 bits
154 * The highest two bits of a 32-bit match distance are encoded using six bits.
156 * value takes 6-36 bits, larger values taking more bits
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/
g711.h 56 \param bits The word to be searched
58 static __inline__ int top_bit(unsigned int bits) {
64 : "a" (bits));
69 \param bits The word to be searched
71 static __inline__ int bottom_bit(unsigned int bits) {
77 : "a" (bits));
81 static __inline__ int top_bit(unsigned int bits) {
87 : "a" (bits));
91 static __inline__ int bottom_bit(unsigned int bits) {
97 : "a" (bits));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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:__anon5507
    [all...]
  /external/libavc/decoder/
ih264d_bitstrm.c 76 * Read specified number of bits from the bitstream.
79 * number specified number of bits from the current bit
84 * An unsigned 32 bit integer with its least significant bits
85 * containing the bits in order of their occurence in the bitstream.
103 * Peek specified number of bits from the bitstream.
106 * specified number of bits from the buffer without
111 * An unsigned 32 bit integer with its least significant bits
112 * containing the bits in order of their occurence in the bitstream.
123 /* Test if number of bits to be read exceeds the number of bits in the *
    [all...]
  /external/libavc/encoder/
irc_cbr_buffer_control.c 54 /* Stuffing threshold equal to error bits per second in the drain bits
58 /* For error due to bits per frame calculation */
129 /* Initialize the bits per frame error bits calculation */
172 * I frame = 1 * bits per frame
173 * P Frame = 4 * bits per frame.
174 * The threshold for I frame is only 1 * bits per frame as the threshold
175 * should only account for error in estimated bits.
176 * In P frame it should account for difference bets bits consumed b
    [all...]
  /external/pdfium/third_party/zlib_v128/
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:__anon28657
    [all...]
  /external/syslinux/com32/lib/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:__anon31951
    [all...]
  /external/vixl/src/
utils-vixl.cc 34 uint32_t bits = 0; local
35 memcpy(&bits, &value, 4);
36 return bits;
41 uint64_t bits = 0; local
42 memcpy(&bits, &value, 8);
43 return bits;
47 float RawbitsToFloat(uint32_t bits) {
49 memcpy(&value, &bits, 4);
54 double RawbitsToDouble(uint64_t bits) {
56 memcpy(&value, &bits, 8)
98 uint32_t bits = (sign << 31) | (exp << 23) | mantissa; local
104 uint64_t bits = (sign << 63) | (exp << 52) | mantissa; local
    [all...]
  /external/webrtc/webrtc/common_audio/signal_processing/include/
spl_inl.h 87 int16_t bits; local
90 bits = 16;
92 bits = 0;
94 if (0x0000FF00 & (n >> bits)) bits += 8;
95 if (0x000000F0 & (n >> bits)) bits += 4;
96 if (0x0000000C & (n >> bits)) bits += 2;
97 if (0x00000002 & (n >> bits)) bits += 1
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.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:__anon37879
    [all...]
  /external/zlib/src/
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:__anon37895
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
q_pulse.h 30 Word32 quant_1p_N1( /* (o) return (N+1) bits */
32 Word16 N); /* (i) number of bits for position */
34 Word32 quant_2p_2N1( /* (o) return (2*N)+1 bits */
37 Word16 N); /* (i) number of bits for position */
39 Word32 quant_3p_3N1( /* (o) return (3*N)+1 bits */
43 Word16 N); /* (i) number of bits for position */
45 Word32 quant_4p_4N1( /* (o) return (4*N)+1 bits */
50 Word16 N); /* (i) number of bits for position */
52 Word32 quant_4p_4N( /* (o) return 4*N bits */
54 Word16 N); /* (i) number of bits for position *
    [all...]
  /external/libogg/src/
bitwise.c 18 /* We're 'LSb' endian; if we write a word but read individual bits,
59 void oggpack_writetrunc(oggpack_buffer *b,long bits){
60 long bytes=bits>>3;
62 bits-=bytes*8;
64 b->endbit=bits;
66 *b->ptr&=mask[bits];
70 void oggpackB_writetrunc(oggpack_buffer *b,long bits){
71 long bytes=bits>>3;
73 bits-=bytes*8;
75 b->endbit=bits;
164 int bits=8-b->endbit; local
170 int bits=8-b->endbit; local
    [all...]
  /external/fio/lib/
ieee754.c 11 uint64_t pack754(long double f, unsigned bits, unsigned expbits)
16 unsigned significandbits = bits - expbits - 1; // -1 for sign bit
50 return (sign << (bits - 1)) | (exp << (bits-expbits - 1)) | significand;
53 long double unpack754(uint64_t i, unsigned bits, unsigned expbits)
58 unsigned significandbits = bits - expbits - 1; // -1 for sign bit
81 result *= (i >> (bits - 1)) & 1 ? -1.0 : 1.0;
  /external/libogg/doc/libogg/
oggpack_look.html 20 <p>This function looks at a specified number of bits inside the buffer without advancing the location pointer.
21 <p>The specified number of bits are read, starting from the location pointer.
22 <p>This function can be used to read 32 or fewer bits.
29 long oggpack_look(<a href="oggpack_buffer.html">oggpack_buffer</a> *b,int bits);
39 <dt><i>bits</i></dt>
40 <dd>Number of bits to look at. For this function, must be 32 or fewer.</dd>
47 <i>n</i> represents the requested bits.</li>
  /external/wpa_supplicant_8/src/utils/
bitfield.c 16 u8 *bits; member in struct:bitfield
28 bf->bits = (u8 *) (bf + 1);
44 bf->bits[bit / 8] |= BIT(bit % 8);
52 bf->bits[bit / 8] &= ~BIT(bit % 8);
60 return !!(bf->bits[bit / 8] & BIT(bit % 8));
80 if (bf->bits[i] != 0xff)
85 i = i * 8 + first_zero(bf->bits[i]);

Completed in 1733 milliseconds

<<11121314151617181920>>