Home
last modified time | relevance | path

Searched refs:tempValue (Results 1 – 9 of 9) sorted by relevance

/external/gptfdisk/
Dsupport.cc334 char* tempValue = NULL; in ReverseBytes() local
337 tempValue = new char [numBytes]; in ReverseBytes()
338 if (tempValue != NULL) { in ReverseBytes()
339 memcpy(tempValue, theValue, numBytes); in ReverseBytes()
341 ((char*) theValue)[i] = tempValue[numBytes - i - 1]; in ReverseBytes()
342 delete[] tempValue; in ReverseBytes()
/external/sonivox/arm-wt-22k/lib_src/
Deas_reverb.c540 EAS_I32 tempValue; in Reverb() local
712tempValue = SATURATE((EAS_I32)pReverbData->m_sEarlyL.m_zLpf + (EAS_I32)pReverbData->m_nRevOutFbkL); in Reverb()
715 tempValue = MULT_EG1_EG1(tempValue, (pReverbData->m_nWet<<1)); in Reverb()
717 tempValue += *pOutputBuffer; in Reverb()
718 *pOutputBuffer++ = (EAS_PCM)SATURATE(tempValue); in Reverb()
751tempValue = SATURATE((EAS_I32)pReverbData->m_sEarlyR.m_zLpf + (EAS_I32)pReverbData->m_nRevOutFbkR); in Reverb()
754 tempValue = MULT_EG1_EG1(tempValue, (pReverbData->m_nWet << 1)); in Reverb()
756 tempValue = tempValue + *pOutputBuffer; in Reverb()
757 *pOutputBuffer++ = (EAS_PCM)SATURATE(tempValue); in Reverb()
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
Dunion-template.ll20 %tempValue = alloca %"union.PR15637::Value", align 4
23 …call void @llvm.dbg.declare(metadata %"union.PR15637::Value"* %tempValue, metadata !25, metadata !…
61 !25 = !DILocalVariable(name: "tempValue", scope: !19, file: !3, line: 4, type: !4)
/external/llvm/test/DebugInfo/X86/
Dunion-template.ll17 %tempValue = alloca %"union.PR15637::Value", align 4
20 …call void @llvm.dbg.declare(metadata %"union.PR15637::Value"* %tempValue, metadata !25, metadata !…
55 !25 = !DILocalVariable(name: "tempValue", line: 4, scope: !4, file: !11, type: !12)
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNFRule.java296 long tempValue = 0; in parseRuleDescriptor() local
307 tempValue = tempValue * 10 + (c - '0'); in parseRuleDescriptor()
319 setBaseValue(tempValue); in parseRuleDescriptor()
326 tempValue = 0; in parseRuleDescriptor()
331 tempValue = tempValue * 10 + (c - '0'); in parseRuleDescriptor()
344 radix = (int)tempValue; in parseRuleDescriptor()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DNFRule.java297 long tempValue = 0; in parseRuleDescriptor() local
308 tempValue = tempValue * 10 + (c - '0'); in parseRuleDescriptor()
320 setBaseValue(tempValue); in parseRuleDescriptor()
327 tempValue = 0; in parseRuleDescriptor()
332 tempValue = tempValue * 10 + (c - '0'); in parseRuleDescriptor()
345 radix = (int)tempValue; in parseRuleDescriptor()
/external/clang/test/CodeGenCXX/
Ddebug-info-union-template.cpp8 Value<float> tempValue; in g() local
/external/cldr/tools/java/org/unicode/cldr/util/
DDateTimeFormats.java573 String tempValue = file.getStringValue(tempPath); in RelativePattern() local
574 if (tempValue == null) { in RelativePattern()
576 tempValue = file.getStringValue(tempPath); in RelativePattern()
579 value = tempValue; in RelativePattern()
/external/angle/src/libANGLE/
DProgram.cpp4985 GLint tempValue[16] = {0}; in getUniformInternal() local
4986 mProgram->getUniformiv(context, location.value, tempValue); in getUniformInternal()
4988 dataOut, reinterpret_cast<const uint8_t *>(tempValue), components); in getUniformInternal()
4993 GLint tempValue[16] = {0}; in getUniformInternal() local
4994 mProgram->getUniformiv(context, location.value, tempValue); in getUniformInternal()
4995 UniformStateQueryCastLoop<GLint>(dataOut, reinterpret_cast<const uint8_t *>(tempValue), in getUniformInternal()
5001 GLuint tempValue[16] = {0}; in getUniformInternal() local
5002 mProgram->getUniformuiv(context, location.value, tempValue); in getUniformInternal()
5003 UniformStateQueryCastLoop<GLuint>(dataOut, reinterpret_cast<const uint8_t *>(tempValue), in getUniformInternal()
5009 GLfloat tempValue[16] = {0}; in getUniformInternal() local
[all …]