HomeSort by relevance Sort by last modified time
    Searched defs:lsb (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
UUIDConverter.java 29 long lsb = uuid.getLeastSignificantBits(); local
36 buffer[i] = (byte) (lsb >>> 8 * (7 - i));
  /external/harfbuzz_ng/src/
hb-ot-hmtx-table.hh 48 FWORD lsb; /* Leading (left/top) side bearing. */ member in struct:OT::LongMetric
  /frameworks/base/media/java/android/media/
MediaCrypto.java 45 long lsb = uuid.getLeastSignificantBits(); local
50 uuidBytes[8 + i] = (byte)(lsb >>> (8 * (7 - i)));
  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 27 * is used, the MSB/LSB long values can be negative.
47 long lsb = 0, msb = 0; local
63 lsb = BluetoothMapUtils.getLongFromString(lsbStr);
64 return new SignedLongLong(lsb, msb);
Utils.java 121 long msb, lsb; local
124 lsb = uuid.getLeastSignificantBits();
126 converter.putLong(8, lsb);
135 long msb, lsb; local
139 lsb = uuid.getLeastSignificantBits();
141 converter.putLong(i * BD_UUID_LEN + 8, lsb);
  /external/aac/libAACdec/src/
stereo.cpp 259 int lsb = bandScale & 0x03 ; local
261 /* exponent of MantissaTable[lsb][0] is 1, thus msb+1 below. */
262 FIXP_DBL scale = MantissaTable[lsb][0];
block.cpp 377 * formula: spectrum[i] = Sign(spectrum[i]) * Matissa(spectrum[i])^(4/3) * 2^(lsb/4).
380 * \param lsb last 2 bits of the scale factor of the sfb.
386 INT lsb,
390 const FIXP_DBL * RESTRICT MantissaTabler=(FIXP_DBL *)MantissaTable[lsb];
391 const SCHAR* RESTRICT ExponentTabler=(SCHAR*)ExponentTable[lsb];
485 int lsb = pScaleFactor [bnds] & 0x03 ; local
487 int scale = GetScaleFromValue(locMax, lsb);
490 InverseQuantizeBand(pSpectralCoefficient, noLines, lsb, scale);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 190 final int lsb = mant[lsd]; local
204 n = (lsb * 10 / lsbthreshold) % 10;
205 discarded |= lsb % (lsbthreshold/10);
213 mant[lsd] = lsb / lsbthreshold * lsbthreshold;
236 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 1); // round half-even
242 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 0); // round half-odd
  /external/aac/libFDK/include/
qmf.h 166 int lsb; /*!< Top of low subbands */ member in struct:QMF_FILTER_BANK
204 int lsb, /*!< Number of lower bands */
222 int lsb, /*!< Number of lower bands */
  /external/llvm/lib/Support/
APFloat.cpp 348 unsigned int lsb; local
350 lsb = APInt::tcLSB(parts, partCount);
352 /* Note this is guaranteed true if bits == 0, or LSB == -1U. */
353 if (bits <= lsb)
355 if (bits == lsb + 1)
    [all...]
  /external/pdfium/third_party/freetype/src/truetype/
ttdriver.c 219 FT_Short lsb; local
223 TT_Get_HMetrics( face, start + nn, &lsb, &aw );
  /external/protobuf/js/binary/
arith.js 116 * Test the LSB.
119 jspb.arith.UInt64.prototype.lsb = function() { method in class:jspb.arith.UInt64
  /external/vixl/src/aarch32/
instructions-aarch32.cc 655 uint32_t lsb = imm & -imm;
656 /* if imm is less than lsb*256 then it fits, but instead we test imm/256 to
658 return ((imm >> 8) < lsb);
706 uint32_t lsb = imm & -imm; local
707 /* if imm is less than lsb*256 then it fits, but instead we test imm/256 to
709 return ((imm >> 8) < lsb);
  /libcore/ojluni/src/main/java/java/util/
UUID.java 106 long lsb = 0; local
111 lsb = (lsb << 8) | (data[i] & 0xff);
113 this.leastSigBits = lsb;
  /system/core/libpixelflinger/codeflinger/
Arm64Disassembler.cpp 80 static int32_t bits_signed(uint32_t instr, uint32_t msb, uint32_t lsb)
85 value >>= lsb; local
88 static uint32_t bits_unsigned(uint32_t instr, uint32_t msb, uint32_t lsb)
90 uint32_t width = msb - lsb + 1;
92 return ((instr >> lsb) & mask);
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 722 int k2,kx, lsb, usb; local
752 lsb = hFreq->freqBandTable[0][0];
755 /* Additional check for lsb */
756 if ( (lsb > (32)) || (lsb >= usb) ) {
808 hFreq->lowSubband = lsb;
lpp_tran.cpp 858 int lsb = v_k_master[0]; /* Start subband expressed in "non-critical" sampling terms*/ local
859 int xoverOffset = highBandStartSb - lsb; /* Calculate distance in QMF bands between k0 and kx */
870 if ( lsb - SHIFT_START_SB < 4 ) {
885 targetStopBand = lsb + xoverOffset; /* upperBand */
905 if ( numBandsInPatch >= lsb - sourceStartBand ) {
    [all...]
  /external/freetype/src/truetype/
ttdriver.c 263 FT_Short lsb; local
267 TT_Get_HMetrics( face, start + nn, &lsb, &aw );
  /external/swiftshader/third_party/LLVM/lib/Support/
APFloat.cpp 356 unsigned int lsb; local
358 lsb = APInt::tcLSB(parts, partCount);
360 /* Note this is guaranteed true if bits == 0, or LSB == -1U. */
361 if (bits <= lsb)
363 if (bits == lsb + 1)
1137 new LSB, with the given lost fraction and rounding mode, the result
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothUuid.java 256 long lsb = buf.getLong(0); local
257 return new ParcelUuid(new UUID(msb, lsb));
273 long lsb = BASE_UUID.getUuid().getLeastSignificantBits(); local
274 return new ParcelUuid(new UUID(msb, lsb));
310 long lsb = uuid.getUuid().getLeastSignificantBits(); local
315 buf.putLong(0, lsb);
  /external/libchrome/base/strings/
string_number_conversions.cc 292 uint8_t lsb = 0; // least significant 4 bits local
294 !CharToDigit<16>(input[i * 2 + 1], &lsb))
296 output->push_back((msb << 4) | lsb);
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_shader_tgsi_alu.c 539 LLVMValueRef lsb = local
550 lp_build_const_int32(gallivm, -1), lsb, "");
572 * the index from LSB. Invert it by doing "31 - msb". */
599 * the index from LSB. Invert it by doing "31 - msb". */
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsplugin.c 365 cmsUInt8Number msb, lsb; local
367 lsb = (cmsUInt8Number) (fixed8 & 0xff);
370 return (cmsFloat64Number) ((cmsFloat64Number) msb + ((cmsFloat64Number) lsb / 256.0));
  /toolchain/binutils/binutils-2.25/opcodes/
aarch64-asm.c 1000 SBFX <Xd>, <Xn>, #<lsb>, #<width>
1002 SBFM <Xd>, <Xn>, #<lsb>, #(<lsb>+<width>-1). */
1007 int64_t lsb, width; local
1010 lsb = inst->operands[2].imm.value;
1012 inst->operands[2].imm.value = lsb;
1013 inst->operands[3].imm.value = lsb + width - 1;
1017 SBFIZ <Xd>, <Xn>, #<lsb>, #<width>
1019 SBFM <Xd>, <Xn>, #((64-<lsb>)&0x3f), #(<width>-1). */
1024 int64_t lsb, width local
    [all...]
  /external/mesa3d/src/amd/addrlib/r800/
ciaddrlib.cpp 82 * Gets bits within a range of [msb, lsb]
90 UINT_32 lsb) ///< Least signicant bit
94 if (msb >= lsb)
96 ret = (bits >> lsb) & (AddrMask(1 + msb - lsb));
106 * Removes bits within the range of [msb, lsb]
114 UINT_32 lsb) ///< Least signicant bit
118 if (msb >= lsb)
120 ret = AddrGetBits(bits, lsb - 1, 0) // low bits
121 | (AddrGetBits(bits, 8 * sizeof(bits) - 1, msb + 1) << lsb); //high bit
1694 UINT_32 lsb = pipeBits + pipeInterleaveBits; local
    [all...]

Completed in 812 milliseconds

1 2 3 4 5