HomeSort by relevance Sort by last modified time
    Searched refs:SHORT (Results 51 - 75 of 401) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/av/media/img_utils/include/img_utils/
TiffHelpers.h 70 SHORT,
109 case SHORT:
  /external/aac/libAACdec/src/
stereo.cpp 150 const SHORT *pScaleFactorBandOffsets,
170 SHORT *leftScale = &pAacDecoderChannelInfo[L]->pDynData->aSfbScale[window*16];
171 SHORT *rightScale = &pAacDecoderChannelInfo[R]->pDynData->aSfbScale[window*16];
223 const SHORT *pScaleFactorBandOffsets,
235 SHORT *ScaleFactor;
244 SHORT *leftScale = &pAacDecoderChannelInfo[L]->pDynData->aSfbScale[window*16];
245 SHORT *rightScale = &pAacDecoderChannelInfo[R]->pDynData->aSfbScale[window*16];
conceal.cpp 195 SHORT *pSpecScalePrev,
196 SHORT *pSpecScaleAct,
197 SHORT *pSpecScaleOut,
201 const SHORT *pSfbOffset
471 SHORT *fadeOutAttenuationVector,
472 SHORT *fadeInAttenuationVector )
565 SHORT *pSpecScale,
566 SHORT *pScaleFactor,
660 SHORT *pSpecScale = pAacDecoderChannelInfo->specScale;
663 SHORT tSpecScale[8]
    [all...]
aacdec_drc_types.h 117 SHORT drcInterpolationScheme;
block.h 87 Description: long/short-block decoding
103 SHORT *pScaleFactor,
112 const SHORT *pSpecScale,
113 const SHORT *pScaleFactor,
209 const SHORT frameLen,
220 const short frameLen,
rvlc.cpp 119 SHORT *pScfEsc = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfEsc;
120 SHORT *pScfFwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd;
121 SHORT *pScfBwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd;
122 SHORT *pScaleFactor = pAacDecoderChannelInfo->pDynData->aScaleFactor;
301 SHORT *pEsc,
306 SHORT* pEscBitCntSum;
423 SHORT dpcm;
425 SHORT factor = pAacDecoderChannelInfo->pDynData->RawDataInfo.GlobalGain - SF_OFFSET;
426 SHORT position = - SF_OFFSET;
427 SHORT noisenrg = pAacDecoderChannelInfo->pDynData->RawDataInfo.GlobalGain - SF_OFFSET - 90 - 256
    [all...]
block.cpp 87 Description: long/short-block decoding
172 SHORT *pScaleFactor = pAacDecoderChannelInfo->pDynData->aScaleFactor;
218 const SHORT * RESTRICT pSfbScale = pAacDecoderChannelInfo->pDynData->aSfbScale;
219 SHORT * RESTRICT pSpecScale = pAacDecoderChannelInfo->specScale;
221 const SHORT * RESTRICT BandOffsets = GetScaleFactorBandOffsets(&pAacDecoderChannelInfo->icsInfo, pSamplingRateInfo);
225 FDKmemclear(pSpecScale, 8*sizeof(SHORT));
283 SHORT *pNumLinesInSec = pAacDecoderChannelInfo->pDynData->specificTo.aac.aNumLineInSec4Hcr;
286 const SHORT *BandOffsets = GetScaleFactorBandOffsets(&pAacDecoderChannelInfo->icsInfo, pSamplingRateInfo);
348 } else { /* short block */
431 SHORT *RESTRICT pSfbScale = pAacDecoderChannelInfo->pDynData->aSfbScale
    [all...]
aacdec_hcr_types.h 110 #define MAX_SFB_HCR (((1024/8) / LINES_PER_UNIT) * 8) /* (8 * 16) is not enough because sfbs are split in units for blocktype short */
252 #define NUM_SECT_OUT_OF_RANGE_SHORT_BLOCK 0x00000080 // 7 yes Init-Dec The number of sections is not within the allowed range (short block)
254 #define LINE_IN_SECT_OUT_OF_RANGE_SHORT_BLOCK 0x00000020 // 5 yes Init-Dec The number of lines per section is not within the allowed range (short block)
255 #define CB_OUT_OF_RANGE_SHORT_BLOCK 0x00000010 // 4 yes Init-Dec The codebook is not within the allowed range (short block)
277 SHORT lengthOfReorderedSpectralData;
278 SHORT numSection;
279 SHORT *pNumLineInSect;
  /external/aac/libAACenc/src/
quantize.cpp 107 SHORT *quaSpectrum)
131 quaSpectrum[line] = (SHORT)(-((LONG)(k + accu) >> (DFRACT_BITS-1-16)));
144 quaSpectrum[line] = (SHORT)((LONG)(k + accu) >> (DFRACT_BITS-1-16));
163 SHORT *quantSpectrum,
266 SHORT *quantizedSpectrum)
297 SHORT *quantSpectrum,
351 SHORT *quantSpectrum,
aacEnc_rom.h 154 extern const SHORT FDKaacEnc_sideInfoTabLong[MAX_SFB_LONG + 1];
155 extern const SHORT FDKaacEnc_sideInfoTabShort[MAX_SFB_SHORT + 1];
  /external/aac/libSYS/src/
wav_file.cpp 265 SHORT *sptr = (SHORT*)buffer;
293 *sptr++ = (SHORT) tmp;
358 static SHORT LittleEndian16(SHORT v)
363 return (SHORT)(((v << 8) & 0xFF00) | ((v >> 8) & 0x00FF));
371 return (SHORT)(((v << 8) & 0xFF00) | ((v >> 8) & 0x00FF));
416 wav->header.bitsPerSample = LittleEndian16((SHORT)bitsPerSample);
417 wav->header.numChannels = LittleEndian16((SHORT)numChannels);
418 wav->header.blockAlign = LittleEndian16((SHORT)(numChannels * (bitsPerSample >> 3)))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstShort.java 23 * Constants of type {@code short}.
28 public static final CstShort VALUE_0 = make((short) 0);
34 * @param value the {@code short} value
37 public static CstShort make(short value) {
46 * @param value the value, which must be in range for a {@code short}
50 short cast = (short) value;
53 throw new IllegalArgumentException("bogus short value: " +
63 * @param value the {@code short} value
65 private CstShort(short value)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstShort.java 23 * Constants of type {@code short}.
28 public static final CstShort VALUE_0 = make((short) 0);
34 * @param value the {@code short} value
37 public static CstShort make(short value) {
46 * @param value the value, which must be in range for a {@code short}
50 short cast = (short) value;
53 throw new IllegalArgumentException("bogus short value: " +
63 * @param value the {@code short} value
65 private CstShort(short value)
    [all...]
  /external/aac/libFDK/include/arm/
fixmul_arm.h 129 inline INT fixmuldiv2_SD (const SHORT a, const INT b)
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstShort.java 23 * Constants of type {@code short}.
28 public static final CstShort VALUE_0 = make((short) 0);
34 * @param value the {@code short} value
37 public static CstShort make(short value) {
46 * @param value the value, which must be in range for a {@code short}
50 short cast = (short) value;
53 throw new IllegalArgumentException("bogus short value: " +
63 * @param value the {@code short} value
65 private CstShort(short value)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseShortEncodedValue.java 64 public int getValueType() { return ValueType.SHORT; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
EncodedValueUtils.java 56 case ValueType.SHORT:
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xinput.h 167 SHORT sThumbLX;
168 SHORT sThumbLY;
169 SHORT sThumbRX;
170 SHORT sThumbRY;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
Type.java 10 SHORT(0, "0", ".shortValue()", "java.lang.Short", Short.TYPE),
61 return SHORT;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
SimpleDate.java 54 DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
123 DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
  /libcore/luni/src/test/java/libcore/java/util/
TimeZoneTest.java 53 assertEquals("GMT+00:01", tz0001.getDisplayName(false, TimeZone.SHORT, Locale.US));
54 assertEquals("GMT+01:30", tz0130.getDisplayName(false, TimeZone.SHORT, Locale.US));
55 assertEquals("GMT-01:30", tzMinus0130.getDisplayName(false, TimeZone.SHORT, Locale.US));
225 String shortDst = tz.getDisplayName(true, TimeZone.SHORT, Locale.US);
226 String shortStd = tz.getDisplayName(false, TimeZone.SHORT, Locale.US);
234 // The short std and dst strings must differ!
240 // If the short std matches the long dst, or the long std matches the short dst,
252 // The long and short dst strings must differ!
283 assertEquals("GMT-03:00", tz.getDisplayName(true, TimeZone.SHORT, Locale.US))
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
ExpensiveObjectsBenchmark.java 32 DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT);
38 DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT);
45 DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 65 * The sort of the <tt>short</tt> type. See {@link #getSort getSort}.
67 public static final int SHORT = 4;
120 * The <tt>short</tt> type.
122 public static final Type SHORT_TYPE = new Type(SHORT);
239 } else if (c == Short.TYPE) {
388 * {@link #CHAR CHAR}, {@link #BYTE BYTE}, {@link #SHORT SHORT},
436 case SHORT:
437 return "short";
528 case SHORT:
    [all...]
  /libcore/luni/src/main/java/java/io/
DataOutputStream.java 28 * written include byte, 16-bit short, 32-bit int, 32-bit float, 64-bit long,
191 Memory.pokeShort(scratch, 0, (short) val, ByteOrder.BIG_ENDIAN);
192 out.write(scratch, 0, SizeOf.SHORT);
193 written += SizeOf.SHORT;
  /libcore/luni/src/main/java/java/nio/
ByteArrayBuffer.java 144 final void get(short[] dst, int dstOffset, int shortCount) {
145 int byteCount = checkGetBounds(SizeOf.SHORT, dst.length, dstOffset, shortCount);
146 Memory.unsafeBulkGet(dst, dstOffset, byteCount, backingArray, arrayOffset + position, SizeOf.SHORT, order.needsSwap);
223 @Override public final short getShort() {
224 int newPosition = position + SizeOf.SHORT;
228 short result = Memory.peekShort(backingArray, arrayOffset + position, order);
233 @Override public final short getShort(int index) {
234 checkIndex(index, SizeOf.SHORT);
302 final void put(short[] src, int srcOffset, int shortCount) {
303 int byteCount = checkPutBounds(SizeOf.SHORT, src.length, srcOffset, shortCount)
    [all...]

Completed in 2098 milliseconds

1 23 4 5 6 7 8 91011>>