| /external/icu/icu4c/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:__anon9990 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/icu/icu4c/source/test/perf/unisetperf/draft/ |
| bitset.cpp | 87 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) { 134 // Set bits for the start of the range. 151 bits=(int64_t *)uprv_malloc(bitHash->countKeys()*8); 153 if(bits!=NULL) { 154 bitHash->invert(bits); 156 bits=shortBits; 161 latin1Set[0]=(uint32_t)bits[0]; 162 latin1Set[1]=(uint32_t)(bits[0]>>32); 163 latin1Set[2]=(uint32_t)bits[1]; 164 latin1Set[3]=(uint32_t)(bits[1]>>32) 193 int64_t *bits; member in class:BitSet [all...] |
| /external/libopus/celt/ |
| modes.h | 53 const unsigned char *bits; member in struct:__anon13318 74 const unsigned char *allocVectors; /**< Number of bits in each band for several rates */
|
| /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
| IsoTypeWriter.java | 83 int bits = 0; local 85 bits += (language.getBytes()[i] - 0x60) << (2 - i) * 5; 87 writeUInt16(bb, bits);
|
| /external/openssh/ |
| kexgexc.c | 104 int r, bits; local 117 if ((bits = BN_num_bits(p)) < 0 || 118 (u_int)bits < kex->min || (u_int)bits > kex->max) { 203 debug("bits %d", BN_num_bits(dh_server_pub));
|
| /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
| fx_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/skia/src/core/ |
| SkBlitBWMaskTemplate.h | 41 const uint8_t* bits = srcMask.getAddr1(cx, cy); local 50 U8CPU mask = *bits++; 66 rite_mask &= 0xFF; // only want low-8 bits of mask 88 U8CPU mask = *bits & left_mask; 90 bits += mask_rowBytes; 99 const uint8_t* b = bits; 116 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...] |
| SkSHA1.cpp | 62 // Get the number of bits before padding. 63 uint8_t bits[8]; local 64 encode(bits, this->byteCount << 3); 78 this->update(bits, 8); 110 /** Rotates x left n bits. */
|
| /external/srtp/test/ |
| lfsr.c | 293 int bits = 8; local 295 for (y=0; y < (1 << bits); y++) { 297 u32_bit_string(y,bits), weight(y), period(y));
|
| /external/toybox/lib/ |
| password.c | 31 int bitpos = i*6, bits = bitpos/8; local 33 bits = ((libbuf[i]+(libbuf[i+1]<<8)) >> (bitpos&7)) & 0x3f; 34 bits += 46; 35 if (bits > 57) bits += 7; 36 if (bits > 90) bits += 6; 38 s[i] = bits;
|
| /external/toybox/toys/other/ |
| blkid.c | 123 int bits = 0x550, size = fstypes[i].uuid_off >> 24, local 126 if (size) bits = 4*(size == 4); 130 for (j = 0; j < size; j++) printf("-%02x"+!(bits & (1<<j)), toybuf[uoff+j]);
|
| /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/valgrind/memcheck/tests/vbit-test/ |
| vbits.c | 17 /* Return the bits of V if they fit into 64-bit. If V has fewer than 18 64 bits, the bit pattern is zero-extended to the left. */ 23 case 1: return v.bits.u32; 24 case 8: return v.bits.u8; 25 case 16: return v.bits.u16; 26 case 32: return v.bits.u32; 27 case 64: return v.bits.u64; 40 case 1: fprintf(fp, "%08x", v.bits.u32); break; 41 case 8: fprintf(fp, "%02x", v.bits.u8); break; 42 case 16: fprintf(fp, "%04x", v.bits.u16); break 162 uint64_t bits; local 226 uint64_t bits = left64(get_bits64(v)); local 491 uint64_t bits = get_bits64(v); local [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/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 | 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...] |
| /libcore/luni/src/main/java/java/util/ |
| Random.java | 87 * the number of bits specified by the argument {@code bits} as 96 protected synchronized int next(int bits) { 98 return (int) (seed >>> (48 - bits)); 187 int bits, val; local 189 bits = next(31); 190 val = bits % n; 191 } while (bits - val + (n - 1) < 0);
|
| /system/bt/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);
|
| /system/core/libpixelflinger/codeflinger/ |
| load_store.cpp | 29 const int bits = addr.size; local 31 switch (bits) { 37 // 24 bits formats are a little special and used only for RGB 66 const int bits = addr.size; local 68 switch (bits) { 74 // 24 bits formats are a little special and used only for RGB 105 void GGLAssembler::extract(integer_t& d, int s, int h, int l, int bits) 116 if (h != bits) { 263 // we need to mask the high bits (and possibly the lowbits too) 280 // in the dithering case though, we need to preserve the lower bits [all...] |
| /bionic/tests/ |
| math_data_test.h | 78 } bits; member in union:fp_u 89 } bits; member in union:fp_u 99 if (u.bits.sign) { 102 u.bits.sign = 1;
|
| /cts/tools/dex-tools/src/dex/reader/ |
| DexBuffer.java | 146 int bits = readInt(nBytes); local 148 bits <<= bytesToMove; 149 return Float.intBitsToFloat(bits); 173 long bits = readLong(nBytes); local 175 bits <<= bytesToMove; 176 return Double.longBitsToDouble(bits);
|
| /dalvik/dexgen/src/com/android/dexgen/util/ |
| BitIntSet.java | 27 int[] bits; field in class:BitIntSet 35 bits = Bits.makeBitSet(max); 41 Bits.set(bits, value, true); 50 if (value >= Bits.getMax(bits)) { 51 int[] newBits = Bits.makeBitSet( 52 Math.max(value + 1, 2 * Bits.getMax(bits))); [all...] |
| /dalvik/dx/src/com/android/dx/util/ |
| BitIntSet.java | 27 int[] bits; field in class:BitIntSet 35 bits = Bits.makeBitSet(max); 41 Bits.set(bits, value, true); 50 if (value >= Bits.getMax(bits)) { 51 int[] newBits = Bits.makeBitSet( 52 Math.max(value + 1, 2 * Bits.getMax(bits))); [all...] |