HomeSort by relevance Sort by last modified time
    Searched defs:bits (Results 176 - 200 of 1549) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/python/cpython3/Modules/zlib/
inffast.c 29 state->bits < 8
39 - The maximum input bits used by a length/distance pair is 15 bits for the
40 length code, 5 bits for the length extra, 15 bits for the distance code,
41 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
68 unsigned bits; /* local strm->bits */ local
74 unsigned op; /* code bits, operation, extra bits, or *
    [all...]
  /external/python/cpython3/Objects/stringlib/
find_max_char.h 80 STRINGLIB_CHAR bits = p[0] | p[1] | p[2] | p[3]; local
81 if (bits & mask) {
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 40 const uint8_t* bits = srcMask.getAddr1(cx, cy); local
49 U8CPU mask = *bits++;
65 rite_mask &= 0xFF; // only want low-8 bits of mask
87 U8CPU mask = *bits & left_mask;
89 bits += mask_rowBytes;
98 const uint8_t* b = bits;
115 bits += mask_rowBytes;
  /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...]
  /external/skia/tests/
Float16Test.cpp 87 for (uint64_t bits = 0; bits <= 0xffffffff; bits++) {
91 uint32_t bits = rand.nextU(); local
94 memcpy(&f, &bits, 4);
PathOpsTightBoundsTest.cpp 55 SkBitmap& bits = *data->fBitmap; local
56 if (bits.width() == 0) {
57 bits.allocN32Pixels(bitWidth, bitHeight);
59 SkCanvas canvas(bits);
  /external/skqp/src/core/
SkBlitBWMaskTemplate.h 40 const uint8_t* bits = srcMask.getAddr1(cx, cy); local
49 U8CPU mask = *bits++;
65 rite_mask &= 0xFF; // only want low-8 bits of mask
87 U8CPU mask = *bits & left_mask;
89 bits += mask_rowBytes;
98 const uint8_t* b = bits;
115 bits += mask_rowBytes;
  /external/skqp/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...]
  /external/skqp/tests/
Float16Test.cpp 87 for (uint64_t bits = 0; bits <= 0xffffffff; bits++) {
91 uint32_t bits = rand.nextU(); local
94 memcpy(&f, &bits, 4);
PathOpsTightBoundsTest.cpp 55 SkBitmap& bits = *data->fBitmap; local
56 if (bits.width() == 0) {
57 bits.allocN32Pixels(bitWidth, bitHeight);
59 SkCanvas canvas(bits);
  /external/syslinux/com32/lib/zlib/
inffast.c 46 state->bits < 8
56 - The maximum input bits used by a length/distance pair is 15 bits for the
57 length code, 5 bits for the length extra, 15 bits for the distance code,
58 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
85 unsigned bits; /* local strm->bits */ local
91 unsigned op; /* code bits, operation, extra bits, or *
    [all...]
  /external/toybox/lib/
password.c 33 int bitpos = i*6, bits = bitpos/8; local
35 bits = ((libbuf[i]+(libbuf[i+1]<<8)) >> (bitpos&7)) & 0x3f;
36 bits += 46;
37 if (bits > 57) bits += 7;
38 if (bits > 90) bits += 6;
40 s[i] = bits;
  /external/v8/src/
safepoint-table.h 22 SafepointEntry(unsigned info, uint8_t* bits) : info_(info), bits_(bits) {
67 uint8_t* bits() { function in class:v8::internal::BASE_EMBEDDED
100 uint8_t* bits = &Memory::uint8_at(entries_ + (index * entry_size_));
101 return SafepointEntry(info, bits);
205 // Emit the safepoint table after the body. The number of bits per
  /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_mips.h 130 int bits = 0; local
134 "clz %[bits], %[n] \n\t"
135 "subu %[bits], %[i32], %[bits] \n\t"
136 : [bits] "=&r" (bits)
140 return (int16_t)bits;
  /external/zlib/src/contrib/masmx64/
inffas8664.c 57 state->bits < 8
67 - The maximum input bits used by a length/distance pair is 15 bits for the
68 length code, 5 bits for the length extra, 15 bits for the distance code,
69 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
95 /* 88 44 */ unsigned bits; /* ebx rbx local strm->bits */ member in struct:inffast_ar
136 ar.bits = state->bits;
    [all...]
  /external/zlib/src/
inffast.c 29 state->bits < 8
39 - The maximum input bits used by a length/distance pair is 15 bits for the
40 length code, 5 bits for the length extra, 15 bits for the distance code,
41 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
68 unsigned bits; /* local strm->bits */ local
74 unsigned op; /* code bits, operation, extra bits, or *
    [all...]
  /system/bt/embdrv/sbc/decoder/srce/
bitalloc-sbc.c 73 excess = allocAdjustedBits(&common->bits.uint8[sbL],
76 excess = allocAdjustedBits(&common->bits.uint8[sbR],
83 excess = allocExcessBits(&common->bits.uint8[sbL], excess);
88 excess = allocExcessBits(&common->bits.uint8[sbR], excess);
134 uint16_t bits; local
148 bits = 8 * (frameLen - SBC_HEADER_LEN) - hdr;
149 return DIVIDE(bits, nrof_blocks);
decoder-private.c 193 uint32_t bits_by4 = common->bits.uint32[i];
197 OI_UINT bits; local
201 bits = bits_by4 & 0xFF;
206 bits = (bits_by4 >> 24) & 0xFF;
211 if (bits) {
213 OI_BITSTREAM_READUINT(raw, bits, ptr, value, bitPtr);
214 dequant = OI_SBC_Dequant(raw, sf, bits);
  /system/bt/stack/a2dp/
a2dp_sbc_up_sample.cc 36 uint8_t bits; /* number of bits per pcm sample */ member in struct:__anon2100
53 * bits: number of bits per pcm sample
59 void a2dp_sbc_init_up_sample(uint32_t src_sps, uint32_t dst_sps, uint8_t bits,
64 a2dp_sbc_ups_cb.bits = bits;
69 if (bits == 8) {
78 if (bits == 8) {
131 * Function a2dp_sbc_up_sample_16s (16bits-stereo
    [all...]
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 33 const int bits = addr.size; local
35 switch (bits) {
41 // 24 bits formats are a little special and used only for RGB
70 const int bits = addr.size; local
72 switch (bits) {
78 // 24 bits formats are a little special and used only for RGB
109 void GGLAssembler::extract(integer_t& d, int s, int h, int l, int bits)
120 if (h != bits) {
266 // we need to mask the high bits (and possibly the lowbits too)
283 // in the dithering case though, we need to preserve the lower bits
    [all...]
  /system/extras/simpleperf/
event_attr.cpp 30 static std::string BitsToString(const std::string& name, uint64_t bits,
34 if (bits & p.first) {
35 bits &= ~p.first;
42 if (bits != 0) {
43 LOG(DEBUG) << "unknown " << name << " bits: " << std::hex << bits; local
  /toolchain/binutils/binutils-2.27/opcodes/
cgen-dis.c 37 /* Return the number of decodable bits in this insn. */
42 int bits = 0; local
48 ++bits;
50 return bits;
64 /* Add insns sorted by the number of decodable bits, in decreasing order.
ia64-asmtab.h 44 /* The mask of valid bits in OPCODE. Zeros indicate operand fields. */
64 The completer entries modify certain bits in the instruction opcode.
65 Which bits are to be modified are marked by the BITS, MASK and
92 unsigned int bits; member in struct:ia64_completer_table
94 /* And its mask. 1s are bits that are to be modified in the
109 /* The bit offset in the instruction where BITS and MASK should be
131 bits.
  /toolchain/binutils/binutils-2.27/zlib/contrib/masmx64/
inffas8664.c 57 state->bits < 8
67 - The maximum input bits used by a length/distance pair is 15 bits for the
68 length code, 5 bits for the length extra, 15 bits for the distance code,
69 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
95 /* 88 44 */ unsigned bits; /* ebx rbx local strm->bits */ member in struct:inffast_ar
136 ar.bits = state->bits;
    [all...]

Completed in 867 milliseconds

1 2 3 4 5 6 78 91011>>