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

<<21222324252627282930>>

  /external/webp/src/dec/
vp8.c 106 const uint32_t bits = data[0] | (data[1] << 8) | (data[2] << 16); local
107 const int key_frame = !(bits & 1);
115 if (((bits >> 1) & 7) > 3) {
118 if (!((bits >> 4) & 1)) {
121 if (((bits >> 5)) >= chunk_size) { // partition_length
271 const uint32_t bits = buf[0] | (buf[1] << 8) | (buf[2] << 16); local
273 frm_hdr->key_frame_ = !(bits & 1);
274 frm_hdr->profile_ = (bits >> 1) & 7;
275 frm_hdr->show_ = (bits >> 4) & 1;
276 frm_hdr->partition_length_ = (bits >> 5)
    [all...]
  /external/zlib/src/
trees.c 48 /* Bit length codes must not exceed MAX_BL_BITS bits */
54 /* repeat previous bit length 3-6 times (2 bits of repeat count) */
57 /* repeat a zero length 3-10 times (3 bits of repeat count) */
60 /* repeat a zero length 11-138 times (7 bits of repeat count) */
62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
95 * 5 bits.)
100 * 3 .. 258, the last 256 values correspond to the top 8 bits of
119 const intf *extra_bits; /* extra bits for each code or NULL *
239 int bits; \/* bit counter *\/ local
500 int bits; \/* bit length *\/ local
582 int bits; \/* bit index *\/ local
    [all...]
  /frameworks/base/core/jni/
android_view_MotionEvent.cpp 214 BitSet64 bits = local
216 if (!bits.isEmpty()) {
225 uint32_t axis = bits.clearFirstMarkedBit();
227 } while (!bits.isEmpty());
278 BitSet64 bits = BitSet64(rawPointerCoords->bits); local
279 bits.clearBit(AMOTION_EVENT_AXIS_X);
280 bits.clearBit(AMOTION_EVENT_AXIS_Y);
281 bits.clearBit(AMOTION_EVENT_AXIS_PRESSURE);
282 bits.clearBit(AMOTION_EVENT_AXIS_SIZE)
    [all...]
  /frameworks/native/libs/gui/
GLConsumer.cpp 58 char const* bits; member in struct:android::__anon38853
317 uint32_t* bits; local
318 buffer->lock(GraphicBuffer::USAGE_SW_WRITE_RARELY, reinterpret_cast<void**>(&bits));
321 memset(bits, 0, w*h*4);
324 bits[x] = (kDebugData.bits[y*kDebugData.width+x] == 'X') ? 0xFF000000 : 0xFFFFFFFF;
326 bits += w;
    [all...]
  /hardware/intel/img/psb_video/src/
vsp_vp8.c 95 } bits; member in union:__anon40237
435 flags.bits.force_kf = va_pic->ref_flags.bits.force_kf;
436 flags.bits.no_ref_last = va_pic->ref_flags.bits.no_ref_last;
437 flags.bits.no_ref_gf = va_pic->ref_flags.bits.no_ref_gf;
438 flags.bits.no_ref_arf = va_pic->ref_flags.bits.no_ref_arf;
439 flags.bits.upd_last = va_pic->pic_flags.bits.refresh_last
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
FloatTest.java 175 int bits = Float.floatToIntBits(f); local
176 float r = Float.intBitsToFloat(bits);
186 assertTrue("Wrong raw bits", Float.floatToRawIntBits(f) == i);
224 int bits = Float.floatToIntBits(f); local
225 float r = Float.intBitsToFloat(bits);
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_gen_tool/com/mot/dm/core/
Xml2WBXml.java 473 int bits = 0; local
476 bits = (value >> shift) & 0x7F;
477 if (bits > 0 || continuation > 0) {
478 result.add(new Character( (char) (bits | 0x80)));
480 if (bits > 0) {
  /art/compiler/dex/quick/arm64/
target_arm64.cc 284 // An integer is constructed from the n, imm_s and imm_r bits according to
294 // (s bits must not be all set)
296 // A pattern is constructed of size bits, where the least significant S+1
297 // bits are set. The pattern is rotated right by R, and repeated across a
302 uint64_t bits = BIT_MASK(imm_s + 1); local
303 return RotateRight(bits, imm_r, 64);
310 uint64_t bits = BIT_MASK((imm_s & mask) + 1); local
311 return RepeatBitsAcrossReg(is_wide, RotateRight(bits, imm_r & mask, width), width);
544 /* Memory bits */
    [all...]
utility_arm64.cc 26 int32_t Arm64Mir2Lir::EncodeImmSingle(uint32_t bits) {
35 // bits[19..0] are cleared.
36 if ((bits & 0x0007ffff) != 0)
39 // bits[29..25] are all set or all cleared.
40 uint32_t b_pattern = (bits >> 16) & 0x3e00;
45 if (((bits ^ (bits << 1)) & 0x40000000) == 0)
48 // bits: aBbb.bbbc.defg.h000.0000.0000.0000.0000
50 uint32_t bit7 = ((bits >> 31) & 0x1) << 7;
52 uint32_t bit6 = ((bits >> 29) & 0x1) << 6
95 uint32_t bits = opcode_is_wide ? encoder->xskeleton : encoder->wskeleton; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
telephony.h 186 struct phone_except bits; member in union:telephony_exception
  /development/ndk/platforms/android-3/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /development/ndk/platforms/android-L/include/linux/
telephony.h 186 struct phone_except bits; member in union:telephony_exception
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-internal.h 221 // For float, there are 8 exponent bits and 23 fraction bits.
223 // For double, there are 11 exponent bits and 52 fraction bits.
236 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
240 // # of bits in a number.
243 // # of fraction bits in a number.
247 // # of exponent bits in a number.
251 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
304 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.h 94 , bits(0)
117 int bits; // Number of unread bits in "datum". member in class:GIFLZWContext
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-common-private.hh 1132 unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f))); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
intltest.cpp 113 // IEEE floating point has 52 bits of mantissa, plus one assumed bit
1197 int32_t bits = voidSize * 8; local
1204 " Bits: %d, Byte order: %s, Chars: %s\n"
    [all...]
  /external/chromium_org/third_party/libva/va/
va_enc_h264.h 193 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon16573
244 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon16575
366 } bits; member in union:_VAEncPictureParameterBufferH264::__anon16577
508 * @name Macroblock neighbour availability bits
511 * Definitions for macroblock neighbour availability bits used in
553 * availability bits from VME stage.
556 * availability bits from the VME stage are overriden
570 } bits; member in struct:_VAEncMacroblockParameterBufferH264::__anon16579::__anon16580
579 } bits; member in struct:_VAEncMacroblockParameterBufferH264::__anon16579::__anon16582
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_bitstream.c 152 int bits = v >> (n - len); local
153 vp9_write_tree(w, vp9_coef_tree, p->context_tree, bits, len, i);
167 int n = l; /* number of bits in v, assumed nonzero */
    [all...]
  /external/chromium_org/third_party/libwebp/demux/
demux.c 303 int bits; local
315 bits = ReadByte(mem);
317 (bits & 1) ? WEBP_MUX_DISPOSE_BACKGROUND : WEBP_MUX_DISPOSE_NONE;
318 frame->blend_method_ = (bits & 2) ? WEBP_MUX_NO_BLEND : WEBP_MUX_BLEND;
    [all...]
  /external/chromium_org/third_party/libxml/src/
encoding.c 491 int bits; local
534 if (c < 0x80) { *out++= c; bits= -6; }
535 else if (c < 0x800) { *out++= ((c >> 6) & 0x1F) | 0xC0; bits= 0; }
536 else if (c < 0x10000) { *out++= ((c >> 12) & 0x0F) | 0xE0; bits= 6; }
537 else { *out++= ((c >> 18) & 0x07) | 0xF0; bits= 12; }
539 for ( ; bits >= 0; bits-= 6) {
542 *out++= ((c >> bits) & 0x3F) | 0x80;
729 int bits; local
776 if (c < 0x80) { *out++= c; bits= -6;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 289 uint32_t bits; member in union:vx_inst
309 emit_instruction(p, inst.bits);
321 uint32_t bits; member in union:vxr_inst
343 emit_instruction(p, inst.bits);
352 uint32_t bits; member in union:va_inst
374 emit_instruction(p, inst.bits);
383 uint32_t bits; member in union:i_inst
400 emit_instruction(p, inst.bits);
405 uint32_t bits; member in union:xl_inst
429 emit_instruction(p, inst.bits);
450 uint32_t bits; member in union:x_inst
481 uint32_t bits; member in union:d_inst
513 uint32_t bits; member in union:a_inst
546 uint32_t bits; member in union:xo_inst
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_fs.c 105 * Expand the relevant bits of mask_input to a n*4-dword mask for the
123 LLVMValueRef bits[16]; local
131 assert(fs_type.length <= Elements(bits));
171 bits[4*i + 0] = LLVMConstInt(i32t, 1 << (j + 0), 0);
172 bits[4*i + 1] = LLVMConstInt(i32t, 1 << (j + 1), 0);
173 bits[4*i + 2] = LLVMConstInt(i32t, 1 << (j + 4), 0);
174 bits[4*i + 3] = LLVMConstInt(i32t, 1 << (j + 5), 0);
176 mask = LLVMBuildAnd(builder, mask, LLVMConstVector(bits, fs_type.length), "");
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_video_state.h 163 } bits; member in union:pipe_mpeg12_macroblock::__anon17763
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-internal.h 306 // For float, there are 8 exponent bits and 23 fraction bits.
308 // For double, there are 11 exponent bits and 52 fraction bits.
321 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
325 // # of bits in a number.
328 // # of fraction bits in a number.
332 // # of exponent bits in a number.
336 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
386 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
celt_decoder.c 659 opus_int32 bits; local
790 /* Pretend we've read all the remaining bits */
855 /* quanta is 6 bits, but no more than 1 bit/sample
881 bits = (((opus_int32)len*8)<<BITRES) - ec_tell_frac(dec) - 1;
882 anti_collapse_rsv = isTransient&&LM>=2&&bits>=((LM+2)<<BITRES) ? (1<<BITRES) : 0;
883 bits -= anti_collapse_rsv;
889 alloc_trim, &intensity, &dual_stereo, bits, &balance, pulses,
    [all...]

Completed in 2482 milliseconds

<<21222324252627282930>>