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

1 2 3

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse_ipic.c 29 uint32_t tempValue;
55 VC1_GET_BITS9(7, tempValue); /* BF. */
79 VC1_GET_BITS9(2, tempValue); /* RESPIC. */
vc1parse_ipic_adv.c 167 uint32_t tempValue;
196 VC1_GET_BITS9(2, tempValue); /* POSTPROC. */
vc1parse_pic_com.c 27 uint32_t tempValue;
41 result = viddec_pm_peek_bits(ctxt, &tempValue, 17);
51 VC1_GET_BITS9(1, tempValue); /* INTERPFRM. */
54 VC1_GET_BITS9(2, tempValue); /* FRMCNT. */
78 VC1_PEEK_BITS( 7, tempValue );
79 if ( tempValue == 0x7f )
vc1parse_ppic.c 28 uint32_t tempValue;
62 VC1_GET_BITS9(2, tempValue); /* RESPIC. */
vc1parse_huffman.c 19 uint32_t tempValue;
36 VC1_GET_BITS9(1, tempValue);
37 value = (value << 1) | tempValue;
61 uint32_t tempValue;
78 VC1_GET_BITS9(1, tempValue);
79 value = (value << 1) | tempValue;
vc1parse_pic_com_adv.c 32 uint32_t tempValue;
150 VC1_GET_BITS9(1, tempValue); /* INTERPFRM. */
vc1parse.c 115 uint32_t tempValue;
153 result = viddec_pm_get_bits(ctxt, &tempValue, 4);
154 sh.ASPECT_RATIO = tempValue;
161 result = viddec_pm_get_bits(ctxt, &tempValue, 1);
162 sh.FRAMERATE_FLAG = tempValue;
165 result = viddec_pm_get_bits(ctxt, &tempValue, 1);
166 sh.FRAMERATEIND = tempValue;
173 result = viddec_pm_get_bits(ctxt, &tempValue, 16);
174 sh.FRAMERATEEXP = tempValue;
178 result = viddec_pm_get_bits(ctxt, &tempValue, 1)
    [all...]
vc1parse_bitplane.c 474 uint32_t tempValue;
489 VC1_GET_BITS(1, tempValue);
490 bpp->invert = (uint8_t) tempValue;
527 VC1_GET_BITS(1, tempValue);
528 /* if tempValue==0, put row of zeros Dwords*/
529 if (tempValue == 1)
533 VC1_GET_BITS(1, tempValue);
534 put_bit( tempValue, j, i, width, height, bpp->invert,
551 VC1_GET_BITS(1, tempValue);
552 /* if tempValue==0, and invert == 0, fill column with zeros *
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-union-template.cpp 8 Value<float> tempValue;
  /developers/build/prebuilts/gradle/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
MainActivity.java 110 String tempValue = "";
112 tempValue = tempValue + value + " ";
114 mMultiEntryValue.setText(tempValue);
  /developers/samples/android/content/multiuser/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
MainActivity.java 110 String tempValue = "";
112 tempValue = tempValue + value + " ";
114 mMultiEntryValue.setText(tempValue);
  /development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/
MainActivity.java 110 String tempValue = "";
112 tempValue = tempValue + value + " ";
114 mMultiEntryValue.setText(tempValue);
  /external/sonivox/arm-wt-22k/lib_src/
eas_chorus.c 262 EAS_I32 tempValue;
317 tempValue = MULT_EG1_EG1(tapL, pChorusData->m_nLevel);
318 nOutputSample = SATURATE(tempValue + nInputSample);
363 tempValue = MULT_EG1_EG1(tapR, pChorusData->m_nLevel);
364 nOutputSample = SATURATE(tempValue + nInputSample);
eas_reverb.c 540 EAS_I32 tempValue;
711 //tempValue = SATURATE(psEarly->m_zLpf + pReverbData->m_nRevOutFbkL);
712 tempValue = SATURATE((EAS_I32)pReverbData->m_sEarlyL.m_zLpf + (EAS_I32)pReverbData->m_nRevOutFbkL);
715 tempValue = MULT_EG1_EG1(tempValue, (pReverbData->m_nWet<<1));
717 tempValue += *pOutputBuffer;
718 *pOutputBuffer++ = (EAS_PCM)SATURATE(tempValue);
751 tempValue = SATURATE((EAS_I32)pReverbData->m_sEarlyR.m_zLpf + (EAS_I32)pReverbData->m_nRevOutFbkR);
754 tempValue = MULT_EG1_EG1(tempValue, (pReverbData->m_nWet << 1))
    [all...]
  /frameworks/layoutlib/bridge/src/android/view/
LayoutInflater_Delegate.java 122 final TypedValue tempValue = new TypedValue();
123 if (context.getTheme().resolveAttribute(layout, tempValue, true)) {
124 layout = tempValue.resourceId;
  /external/gptfdisk/
support.cc 313 char* tempValue = NULL;
316 tempValue = new char [numBytes];
317 if (tempValue != NULL) {
318 memcpy(tempValue, theValue, numBytes);
320 ((char*) theValue)[i] = tempValue[numBytes - i - 1];
321 delete[] tempValue;
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.c     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NFRule.java 297 long tempValue = 0;
302 // into "tempValue", skip periods, commas, and spaces,
308 tempValue = tempValue * 10 + (c - '0');
320 setBaseValue(tempValue);
324 // in tempValue, skip punctuation, stop on a > mark, and
327 tempValue = 0;
332 tempValue = tempValue * 10 + (c - '0');
343 // tempValue now contains the rule's radix. Set i
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NFRule.java 296 long tempValue = 0;
301 // into "tempValue", skip periods, commas, and spaces,
307 tempValue = tempValue * 10 + (c - '0');
319 setBaseValue(tempValue);
323 // in tempValue, skip punctuation, stop on a > mark, and
326 tempValue = 0;
331 tempValue = tempValue * 10 + (c - '0');
342 // tempValue now contains the rule's radix. Set i
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractListTest.java 94 Integer tempValue;
104 tempValue = (Integer) lit.next();
105 assertTrue("next returned wrong value. Wanted 3, got: " + tempValue,
106 tempValue.intValue() == 3);
107 tempValue = (Integer) lit.previous();
  /external/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js 468 var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD;
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java     [all...]
  /prebuilts/tools/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/
software-and-algorithms-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/parboiled/parboiled-core/1.0.2/
parboiled-core-1.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/
org.eclipse.sisu.inject-0.0.0.M5.jar 

Completed in 777 milliseconds

1 2 3