HomeSort by relevance Sort by last modified time
    Searched full:bits (Results 201 - 225 of 15847) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/pdfium/core/src/fxcodec/fx_zlib/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:__anon17467
    [all...]
  /external/v8/src/base/
bits-unittest.cc 7 #include "src/base/bits.h"
19 namespace bits { namespace in namespace:v8::base
21 TEST(Bits, CountPopulation32) {
31 TEST(Bits, CountLeadingZeros32) {
41 TEST(Bits, CountTrailingZeros32) {
51 TEST(Bits, IsPowerOfTwo32) {
65 TEST(Bits, IsPowerOfTwo64) {
79 TEST(Bits, RoundUpToPowerOfTwo32) {
95 TEST(Bits, RoundDownToPowerOfTwo32) {
105 TEST(Bits, RotateRight32)
    [all...]
  /external/vixl/src/vixl/
utils.cc 33 uint32_t bits = 0; local
34 memcpy(&bits, &value, 4);
35 return bits;
40 uint64_t bits = 0; local
41 memcpy(&bits, &value, 8);
42 return bits;
46 float rawbits_to_float(uint32_t bits) {
48 memcpy(&value, &bits, 4);
53 double rawbits_to_double(uint64_t bits) {
55 memcpy(&value, &bits, 8)
97 uint64_t bits = (sign << 31) | (exp << 23) | mantissa; local
103 uint64_t bits = (sign << 63) | (exp << 52) | mantissa; local
    [all...]
  /external/webrtc/src/common_audio/signal_processing/include/
spl_inl.h 82 int bits; local
85 bits = 16;
87 bits = 0;
89 if (0x0000FF00 & (n >> bits)) bits += 8;
90 if (0x000000F0 & (n >> bits)) bits += 4;
91 if (0x0000000C & (n >> bits)) bits += 2;
92 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:__anon21648
    [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:__anon21664
    [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/lldb/test/lang/c/bitfields/
TestBitfields.py 68 self.expect("frame variable --show-types bits", VARIABLES_DISPLAYED_CORRECTLY,
90 self.expect("expr (bits.b1)", VARIABLES_DISPLAYED_CORRECTLY,
92 self.expect("expr (bits.b2)", VARIABLES_DISPLAYED_CORRECTLY,
94 self.expect("expr (bits.b3)", VARIABLES_DISPLAYED_CORRECTLY,
96 self.expect("expr (bits.b4)", VARIABLES_DISPLAYED_CORRECTLY,
98 self.expect("expr (bits.b5)", VARIABLES_DISPLAYED_CORRECTLY,
100 self.expect("expr (bits.b6)", VARIABLES_DISPLAYED_CORRECTLY,
102 self.expect("expr (bits.b7)", VARIABLES_DISPLAYED_CORRECTLY,
104 self.expect("expr (bits.four)", VARIABLES_DISPLAYED_CORRECTLY,
123 substrs = ['Bits', 'uint32_t b3 : 3'
    [all...]
  /external/openfst/src/include/fst/extensions/ngram/
bitmap-index.h 28 // clear bits over ranges in constant time.
31 // size in bits that maintains a running count of the number of bits set
37 // bits set in each block is created using the type uint64.
54 static void Set(uint64* bits, size_t index) {
55 bits[index >> kStorageLogBitSize] |= (kOne << (index & kStorageBlockMask));
58 static void Clear(uint64* bits, size_t index) {
59 bits[index >> kStorageLogBitSize] &= ~(kOne << (index & kStorageBlockMask));
62 size_t Bits() const {
70 // Returns the number of one bits in the bitma
    [all...]
  /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]);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/
unordered_map 35 # include <bits/c++0x_warning.h>
42 #include <bits/allocator.h>
45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st
46 #include <bits/functional_hash.h>
47 #include <bits/hashtable.h>
48 #include <bits/unordered_map.h>
49 #include <bits/range_access.h>
unordered_set 35 # include <bits/c++0x_warning.h>
42 #include <bits/allocator.h>
45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st
46 #include <bits/functional_hash.h>
47 #include <bits/hashtable.h>
48 #include <bits/unordered_set.h>
49 #include <bits/range_access.h>
  /external/lldb/source/Plugins/Process/Utility/
InstructionUtils.h 20 Bits64 (const uint64_t bits, const uint32_t msbit, const uint32_t lsbit)
23 return (bits >> lsbit) & ((1u << (msbit - lsbit + 1)) - 1);
29 Bits32 (const uint32_t bits, const uint32_t msbit, const uint32_t lsbit)
32 return (bits >> lsbit) & ((1u << (msbit - lsbit + 1)) - 1);
37 Bit32 (const uint32_t bits, const uint32_t bit)
39 return (bits >> bit) & 1u;
43 Bit64 (const uint64_t bits, const uint32_t bit)
45 return (bits >> bit) & 1ull;
51 SetBits32(uint32_t &bits, const uint32_t msbit, const uint32_t lsbit, const uint32_t val)
55 bits &= ~(mask << lsbit)
    [all...]
  /external/llvm/lib/Target/BPF/
BPFInstrInfo.td 81 class JMP_RR<bits<4> Opc, string OpcodeStr, PatLeaf Cond>
85 bits<4> op;
86 bits<1> BPFSrc;
87 bits<4> dst;
88 bits<4> src;
89 bits<16> BrDst;
102 class JMP_RI<bits<4> Opc, string OpcodeStr, PatLeaf Cond>
106 bits<4> op;
107 bits<1> BPFSrc;
108 bits<4> dst
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_cavlc.c 52 * 4 bits symbol value (bits [4,7]) along with four bits to represent length
53 * of the VLC code word (bits [0,3]) */
55 /* macro to obtain length of the coeff token information field, bits [0,4] */
57 /* macro to obtain length of the other information fields, bits [0,3] */
59 /* macro to obtain code word from the information fields, bits [4,7] */
60 #define INFO(vlc) (((vlc) >> 4) & 0xF) /* 4 MSB bits contain information */
62 * bits [5,10] */
65 * bits [11,15] *
    [all...]
  /art/compiler/utils/arm/
constants_arm.h 41 // 4 bits option for the dmb instruction.
221 // bits.
241 // Get the raw instruction bits.
246 // Set the raw instruction bits to value.
251 // Read one particular bit out of the instruction bits.
256 // Read a bit field out of the instruction bits.
257 int Bits(int shift, int count) const {
266 return static_cast<Condition>(Bits(kConditionShift, kConditionBits));
268 int TypeField() const { return Bits(kTypeShift, kTypeBits); }
271 Bits(kRnShift, kRnBits));
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form21h.java 89 // Where the high bits are depends on the category of the target.
91 int bits = cb.getIntBits(); local
92 return ((bits & 0xffff) == 0);
94 long bits = cb.getLongBits(); local
95 return ((bits & 0xffffffffffffL) == 0);
103 BitSet bits = new BitSet(1); local
105 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
106 return bits;
114 short bits; local
116 // Where the high bits are depends on the category of the target
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3bitset.c 65 if (bitset->blist.bits != NULL)
67 ANTLR3_FREE(bitset->blist.bits);
68 bitset->blist.bits = NULL;
98 // No we need to allocate the memory for the number of bits asked for
103 bitset->blist.bits = (pANTLR3_BITWORD) ANTLR3_MALLOC((size_t)(numelements * sizeof(ANTLR3_BITWORD)));
104 memset(bitset->blist.bits, 0, (size_t)(numelements * sizeof(ANTLR3_BITWORD)));
107 if (bitset->blist.bits == NULL)
168 bitset->blist.bits = (pANTLR3_BITWORD)ANTLR3_MALLOC((size_t)(numElements * sizeof(ANTLR3_BITWORD)));
170 if (bitset->blist.bits == NULL)
176 ANTLR3_MEMCPY(bitset->blist.bits, blist->bits, (ANTLR3_UINT64)(numElements * sizeof(ANTLR3_BITWORD)))
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form21h.java 90 // Where the high bits are depends on the category of the target.
92 int bits = cb.getIntBits(); local
93 return ((bits & 0xffff) == 0);
95 long bits = cb.getLongBits(); local
96 return ((bits & 0xffffffffffffL) == 0);
104 BitSet bits = new BitSet(1); local
106 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
107 return bits;
115 short bits; local
117 // Where the high bits are depends on the category of the target
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmax.c 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0)
45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].d);
s_fmaxl.c 45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0)
47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0)
51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[0].bits.sign ? y : x);
s_fmin.c 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0)
45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].d);

Completed in 444 milliseconds

1 2 3 4 5 6 7 891011>>