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

1 23 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
SimpleDate.java 49 mCachedStringRepresentation = DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
110 mCachedStringRepresentation = DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
  /external/aac/libAACdec/src/
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;
aacdec_hcr.cpp 110 SHORT numLine,
114 SHORT lengthOfReorderedSpectralData,
175 description: Check if codebook and numSect are within allowed range (short only)
177 static void errDetectorInHcrSideinfoShrt(SCHAR cb, SHORT numLine,UINT* errorWord)
194 SHORT lengthOfReorderedSpectralData,
211 SHORT lengOfReorderedSpectralData;
274 For short block a sorting algorithm is applied to get the SI in the order
286 SHORT *pNumLinesInSec;
288 SHORT numSection;
306 if (!IsLongBlock(&pAacDecoderChannelInfo->icsInfo)) /* short block *
    [all...]
  /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));
224 String shortDst = tz.getDisplayName(true, TimeZone.SHORT, Locale.US);
225 String shortStd = tz.getDisplayName(false, TimeZone.SHORT, Locale.US);
233 // The short std and dst strings must differ!
239 // If the short std matches the long dst, or the long std matches the short dst,
251 // The long and short dst strings must differ!
282 assertEquals("GMT-03:00", tz.getDisplayName(true, TimeZone.SHORT, Locale.US))
    [all...]
  /libcore/luni/src/main/java/java/text/
DateFormat.java 101 * The format style constant defining the short style.
103 public static final int SHORT = 3;
363 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
367 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
380 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
384 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
409 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
411 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
416 * SHORT, MEDIUM, LONG, FULL, or DEFAULT.
429 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT
    [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);
  /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...]
  /libcore/luni/src/main/java/java/nio/charset/
ModifiedUtf8.java 71 * exception if the string is too long for its length to be represented by a short.
120 byte[] result = new byte[SizeOf.SHORT + utfCount];
121 Memory.pokeShort(result, 0, (short) utfCount, ByteOrder.BIG_ENDIAN);
122 ModifiedUtf8.encode(result, SizeOf.SHORT, s);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 804 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
810 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
818 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
824 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
834 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
845 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
854 .getDisplayName(field, Calendar.SHORT, locale));
863 cal.getDisplayName(-1, Calendar.SHORT, Locale.US);
887 cal.getDisplayName(Calendar.MONTH, Calendar.SHORT, null);
893 cal.getDisplayName(-1, Calendar.SHORT, null)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 804 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
810 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
818 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
824 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
834 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
845 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
854 .getDisplayName(field, Calendar.SHORT, locale));
863 cal.getDisplayName(-1, Calendar.SHORT, Locale.US);
887 cal.getDisplayName(Calendar.MONTH, Calendar.SHORT, null);
893 cal.getDisplayName(-1, Calendar.SHORT, null)
    [all...]
  /external/aac/libAACenc/src/
dyn_bits.h 152 const SHORT* const quantSpectrum,
pnsparam.cpp 95 SHORT startFreq;
99 SHORT tnsGainThreshold; /* scaled by TNS_PREDGAIN_SCALE (=1000) */
100 SHORT tnsPNSGainThreshold; /* scaled by TNS_PREDGAIN_SCALE (=1000) */
102 SHORT minSfbWidth;
dyn_bits.cpp 102 const SHORT* const sideInfoTab,
120 const SHORT* const quantSpectrum,
221 const SHORT* const sideInfoTab,
285 const SHORT* const sideInfoTab,
326 const SHORT* const sideInfoTab,
393 const SHORT* const quantSpectrum,
403 const SHORT *sideInfoTab = NULL;
728 const SHORT* const quantSpectrum,
  /external/aac/libFDK/include/
mdct.h 232 const SHORT scalefactor[],
  /external/javassist/src/main/javassist/compiler/
TokenId.java 53 int SHORT = 334;
  /libcore/luni/src/main/java/libcore/io/
HeapBufferIterator.java 73 public short readShort() {
74 short result = Memory.peekShort(buffer, offset + position, order);
75 position += SizeOf.SHORT;
NioBufferIterator.java 70 public short readShort() {
71 short result = Memory.peekShort(address + position, swap);
72 position += SizeOf.SHORT;
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 55 /** {@code non-null;} instance corresponding to the class {@code Short} */
56 public static final CstType SHORT = intern(Type.SHORT_CLASS);
82 /** {@code non-null;} instance corresponding to the type {@code short[]} */
112 case Type.BT_SHORT: return SHORT;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 54 /** {@code non-null;} instance corresponding to the class {@code Short} */
55 public static final CstType SHORT = intern(Type.SHORT_CLASS);
81 /** {@code non-null;} instance corresponding to the type {@code short[]} */
111 case Type.BT_SHORT: return SHORT;
  /external/aac/libSBRdec/src/
env_dec.cpp 315 h_data_right->iEnvelope[i] = ((FIXP_SGL)((SHORT)(FIXP_SGL)(newR_m + ROUNDING) & MASK_M)) +
316 (FIXP_SGL)((SHORT)(FIXP_SGL)(newR_e + NRG_EXP_OFFSET) & MASK_E);
317 h_data_left->iEnvelope[i] = ((FIXP_SGL)((SHORT)(FIXP_SGL)(newL_m + ROUNDING) & MASK_M)) +
318 (FIXP_SGL)((SHORT)(FIXP_SGL)(newL_e + NRG_EXP_OFFSET) & MASK_E);
346 h_data_right->sbrNoiseFloorLevel[i] = ((FIXP_SGL)((SHORT)(FIXP_SGL)(newR_m + ROUNDING) & MASK_M)) +
347 (FIXP_SGL)((SHORT)(FIXP_SGL)(newR_e + NOISE_EXP_OFFSET) & MASK_E);
348 h_data_left->sbrNoiseFloorLevel[i] = ((FIXP_SGL)((SHORT)(FIXP_SGL)(newL_m + ROUNDING) & MASK_M)) +
349 (FIXP_SGL)((SHORT)(FIXP_SGL)(newL_e + NOISE_EXP_OFFSET) & MASK_E);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstType.java 55 /** {@code non-null;} instance corresponding to the class {@code Short} */
56 public static final CstType SHORT = intern(Type.SHORT_CLASS);
82 /** {@code non-null;} instance corresponding to the type {@code short[]} */
112 case Type.BT_SHORT: return SHORT;
  /external/lzma/CPP/Common/
MyWindows.h 23 typedef short SHORT;
24 typedef unsigned short USHORT;
27 typedef unsigned short WORD;
28 typedef short VARIANT_BOOL;
143 typedef unsigned short VARTYPE;
160 SHORT iVal;

Completed in 1909 milliseconds

1 23 4 5 6 7 8 91011>>