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

1 2 3 4 5 6 7 891011>>

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.c 48 /* look-up table for expected values of stuffing bits */
70 length number of bits in the code word
106 Check Raw Byte Stream Payload (RBSP) trailing bits, i.e. stuffing.
109 more '0' bits.
118 HANTRO_OK RBSP trailing bits found
156 -more than 8 bits left or
157 -last bits are not RBSP trailing bits
176 u32 bits; local
183 bits = pStrmData->strmBuffSize * 8 - pStrmData->strmBuffReadBits
    [all...]
  /frameworks/rs/cpu_ref/linkloader/android/
librsloader.cpp 122 ELFSectionBits<64>* bits = local
125 ELFSectionBits<32>* bits =
128 if (bits) {
129 const unsigned char* addr = bits->getBuffer();
  /ndk/sources/android/support/src/stdio/
fpmath.h 57 } bits; member in union:IEEEf2bits
83 } bits; member in union:IEEEd2bits
  /bionic/libc/arch-mips/string/
mips-string-ops.h 46 Also, this code assumes that there are 8-bits per 'char'. */
49 typedef struct bits struct
54 typedef struct bits struct
85 /* DSP 4-lane (8 unsigned bits per line) subtract and saturate
  /bionic/libc/arch-mips64/string/
mips-string-ops.h 46 Also, this code assumes that there are 8-bits per 'char'. */
49 typedef struct bits struct
54 typedef struct bits struct
85 /* DSP 4-lane (8 unsigned bits per line) subtract and saturate
  /bionic/libc/bionic/
fpclassify.cpp 40 ieee_single bits; member in union:float_u
45 ieee_double bits; member in union:double_u
51 if (u.bits.dbl_exp == 0) {
52 return ((u.bits.dbl_fracl | u.bits.dbl_frach) == 0) ? FP_ZERO : FP_SUBNORMAL;
54 if (u.bits.dbl_exp == DBL_EXP_INFNAN) {
55 return ((u.bits.dbl_fracl | u.bits.dbl_frach) == 0) ? FP_INFINITE : FP_NAN;
64 if (u.bits.sng_exp == 0) {
65 return (u.bits.sng_frac == 0) ? FP_ZERO : FP_SUBNORMAL
121 ieee_ext bits; member in union:long_double_u
    [all...]
  /bionic/libm/
fpmath.h 33 // - android uses 128 bits long doubles for LP64, so the structure and macros
47 } bits; member in union:IEEEf2bits
60 } bits; member in union:IEEEd2bits
72 } bits; member in union:IEEEl2bits
88 (a)[0] = (uint32_t)(u).bits.manl; \
89 (a)[1] = (uint32_t)((u).bits.manl >> 32); \
90 (a)[2] = (uint32_t)(u).bits.manh; \
91 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form21h.java 88 // Where the high bits are depends on the category of the target.
90 int bits = cb.getIntBits(); local
91 return ((bits & 0xffff) == 0);
93 long bits = cb.getLongBits(); local
94 return ((bits & 0xffffffffffffL) == 0);
109 short bits; local
111 // Where the high bits are depends on the category of the target.
113 bits = (short) (cb.getIntBits() >>> 16);
115 bits = (short) (cb.getLongBits() >>> 48);
118 write(out, opcodeUnit(insn, regs.get(0).getReg()), bits);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 93 BitSet bits = new BitSet(1); local
95 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg()));
96 return bits;
Form12x.java 114 BitSet bits = new BitSet(2); local
120 bits.set(0, unsignedFitsInNibble(r0));
121 bits.set(1, unsignedFitsInNibble(r1));
126 bits.set(0, false);
127 bits.set(1, false);
130 bits.set(0, dstRegComp);
131 bits.set(1, dstRegComp);
134 bits.set(2, unsignedFitsInNibble(regs.get(2).getReg()));
142 return bits;
Form21c.java 123 BitSet bits = new BitSet(sz); local
127 bits.set(0, compat);
130 bits.set(0, compat);
131 bits.set(1, compat);
135 return bits;
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...]
Form21s.java 92 BitSet bits = new BitSet(1); local
94 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
95 return bits;
Form22b.java 94 BitSet bits = new BitSet(2); local
96 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
97 bits.set(1, unsignedFitsInByte(regs.get(1).getReg()));
98 return bits;
Form22s.java 94 BitSet bits = new BitSet(2); local
96 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg()));
97 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg()));
98 return bits;
Form31c.java 118 BitSet bits = new BitSet(sz); local
122 bits.set(0, compat);
125 bits.set(0, compat);
126 bits.set(1, compat);
130 return bits;
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3bitset.h 43 /** How many bits in the elements
47 /** How many bits in a nible of bits
71 /// Pointer to the allocated array of bits for this bit set, which
79 pANTLR3_BITWORD bits; member in struct:ANTLR3_BITSET_LIST_struct
89 /// The actual bits themselves
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
bitalloc-sbc.c 72 excess = allocAdjustedBits(&common->bits.uint8[sbL], bitneeds.uint8[sbL] + bitadjust, excess);
74 excess = allocAdjustedBits(&common->bits.uint8[sbR], bitneeds.uint8[sbR] + bitadjust, excess);
80 excess = allocExcessBits(&common->bits.uint8[sbL], excess);
85 excess = allocExcessBits(&common->bits.uint8[sbR], excess);
136 OI_UINT16 bits; local
150 bits = 8 * (frameLen - SBC_HEADER_LEN) - hdr;
151 return DIVIDE(bits, nrof_blocks);
decoder-private.c 192 OI_UINT32 bits_by4 = common->bits.uint32[i];
196 OI_UINT bits; local
200 bits = bits_by4 & 0xFF;
205 bits = (bits_by4 >> 24) & 0xFF;
210 if (bits) {
212 OI_BITSTREAM_READUINT(raw, bits, ptr, value, bitPtr);
213 dequant = OI_SBC_Dequant(raw, sf, bits);
  /external/chromium_org/chrome/browser/ui/webui/ntp/
favicon_webui_handler.cc 157 std::vector<unsigned char> bits; local
158 if (!gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, true, &bits))
161 new base::RefCountedStaticMemory(&bits.front(), bits.size()));
  /external/chromium_org/components/variations/
entropy_provider.cc 86 // Note: If |entropy_source_| has very low entropy, such as 13 bits or less,
96 uint64 bits; local
97 COMPILE_ASSERT(sizeof(bits) < sizeof(sha1_hash), need_more_data);
98 memcpy(&bits, sha1_hash, sizeof(bits));
99 bits = base::ByteSwapToLE64(bits);
101 return base::BitsToOpenEndedUnitInterval(bits);
  /external/chromium_org/net/spdy/
hpack_constants.h 18 // An HpackPrefix signifies |bits| stored in the top |bit_size| bits
21 uint8 bits; member in struct:net::HpackPrefix
25 // Represents a symbol and its Huffman code (stored in most-significant bits).
  /external/chromium_org/ppapi/proxy/
ppapi_param_traits.cc 215 uint32_t bits; local
216 if (!ParamTraits<uint32_t>::Read(m, iter, &bits))
218 *r = ppapi::PpapiPermissions(bits);
  /external/chromium_org/third_party/icu/source/i18n/
decNumber.h 41 /* Bit settings for decNumber.bits */
46 /* The remaining bits are reserved; they must be 0 */
85 uint8_t bits; /* Indicator bits (see above) */ member in struct:__anon15806
184 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
185 #define decNumberIsInfinite(dn) (((dn)->bits&DECINF)!=0)
186 #define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0)
187 #define decNumberIsNegative(dn) (((dn)->bits&DECNEG)!=0)
188 #define decNumberIsQNaN(dn) (((dn)->bits&(DECNAN))!=0)
189 #define decNumberIsSNaN(dn) (((dn)->bits&(DECSNAN))!=0
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
bitset.cpp 86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) {
133 // Set bits for the start of the range.
150 bits=(int64_t *)uprv_malloc(bitHash->countKeys()*8);
152 if(bits!=NULL) {
153 bitHash->invert(bits);
155 bits=shortBits;
160 latin1Set[0]=(uint32_t)bits[0];
161 latin1Set[1]=(uint32_t)(bits[0]>>32);
162 latin1Set[2]=(uint32_t)bits[1];
163 latin1Set[3]=(uint32_t)(bits[1]>>32)
192 int64_t *bits; member in class:BitSet
    [all...]

Completed in 2256 milliseconds

1 2 3 4 5 6 7 891011>>