HomeSort by relevance Sort by last modified time
    Searched refs:SHORT (Results 26 - 50 of 290) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/fw/arc/
types.h 22 typedef SHORT *PSHORT;
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/fw/arc/
types.h 22 typedef SHORT *PSHORT;
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/fw/arc/
types.h 22 typedef SHORT *PSHORT;
  /external/aac/libAACenc/src/
bit_cnt.h 170 INT FDKaacEnc_bitCount(const SHORT *aQuantSpectrum,
175 INT FDKaacEnc_countValues(SHORT *values, INT width, INT codeBook);
177 INT FDKaacEnc_codeValues(SHORT *values, INT width, INT codeBook, HANDLE_FDK_BITSTREAM hBitstream);
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/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_common.cc 81 { DetailInput::SHORT,
84 { DetailInput::SHORT,
87 { DetailInput::SHORT,
107 { DetailInput::SHORT,
110 { DetailInput::SHORT,
137 { DetailInput::SHORT,
140 { DetailInput::SHORT,
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatTest.java 53 DateFormat f1 = DateFormat.getDateTimeInstance(DateFormat.SHORT,
54 DateFormat.SHORT, locales[i]);
93 .getDateInstance(DateFormat.SHORT);
96 DateFormat.SHORT, Locale.getDefault())));
143 DateFormat.SHORT, Locale.GERMAN);
218 testDateTime(DateFormat.SHORT, DateFormat.SHORT);
219 testDateTime(DateFormat.SHORT, DateFormat.MEDIUM);
220 testDateTime(DateFormat.SHORT, DateFormat.LONG);
221 testDateTime(DateFormat.SHORT, DateFormat.FULL)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
StringBenchmark.java 25 SHORT("short"),
  /external/aac/libAACdec/src/
aac_rom.h 117 const SHORT *sfbOffsetLong;
118 const SHORT *sfbOffsetShort;
pulsedata.cpp 100 const SHORT *sfb_startlines,
102 const SHORT frame_length
141 const short *pScaleFactorBandOffsets, /*!< pointer to scalefactor band offsets */
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,
  /external/aac/libFDK/include/
clz.h 117 inline INT fixnormz_S (SHORT a)
122 inline INT fixnormz_S (SHORT a)
  /external/aac/libFDK/src/
scale.cpp 347 INT getScalefactorShort(const SHORT *vector, /*!< Pointer to input vector */
352 SHORT temp, maxVal = 0;
355 temp = (SHORT)(*vector++);
399 INT getScalefactorShort(const SHORT *vector, /*!< Pointer to input vector */
405 SHORT temp, maxVal = 0;
408 temp = (SHORT)(*vector); vector+=stride;
451 SHORT temp, maxVal = (FIXP_SGL)0;
454 temp = (SHORT)(*vector++);
  /external/aac/libSYS/include/
machine_type.h 130 /** \var SHORT
143 * Number of bits the data type short represents. sizeof() is not suited to get this info,
166 typedef signed short SHORT;
167 typedef unsigned short USHORT;
200 typedef SHORT INT_PCM;
  /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/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryClassField.java 57 public static final byte SHORT = 50;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
Type.java 10 SHORT(0, "0", ".shortValue()", "java.lang.Short", Short.TYPE),
61 return SHORT;

Completed in 452 milliseconds

12 3 4 5 6 7 8 91011>>