Home
last modified time | relevance | path

Searched refs:returnValue (Results 1 – 25 of 134) sorted by relevance

123456

/external/deqp-deps/glslang/glslang/Include/
DConstantUnion.h440 TConstUnion returnValue; variable
443 case EbtInt8: returnValue.setI8Const(i8Const + constant.i8Const); break;
444 case EbtInt16: returnValue.setI16Const(i16Const + constant.i16Const); break;
445 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
446 case EbtInt64: returnValue.setI64Const(i64Const + constant.i64Const); break;
447 case EbtUint8: returnValue.setU8Const(u8Const + constant.u8Const); break;
448 case EbtUint16: returnValue.setU16Const(u16Const + constant.u16Const); break;
449 case EbtUint: returnValue.setUConst(uConst + constant.uConst); break;
450 case EbtUint64: returnValue.setU64Const(u64Const + constant.u64Const); break;
451 case EbtDouble: returnValue.setDConst(dConst + constant.dConst); break;
[all …]
/external/deqp/framework/egl/
DegluCallLogWrapper.inl11 eglw::EGLBoolean returnValue = m_egl.bindAPI(api); local
13 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes…
14 return returnValue;
21 eglw::EGLBoolean returnValue = m_egl.bindTexImage(dpy, surface, buffer); local
23 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes…
24 return returnValue;
31 …eglw::EGLBoolean returnValue = m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_conf… local
34 …m_log << TestLog::Message << "// configs = " << getPointerStr(configs, (num_config && returnValue)…
38 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes…
39 return returnValue;
[all …]
/external/swiftshader/src/OpenGL/compiler/
DConstantUnion.h244 ConstantUnion returnValue; variable
247 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
248 case EbtUInt: returnValue.setUConst(uConst + constant.uConst); break;
249 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
253 return returnValue;
258 ConstantUnion returnValue; variable
261 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
262 case EbtUInt: returnValue.setUConst(uConst - constant.uConst); break;
263 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
267 return returnValue;
[all …]
/external/oj-libjdwp/src/share/back/
Dinvoker.c228 if (request->returnValue.l != NULL) { in deletePotentiallySavedGlobalRefs()
229 tossGlobalRef(env, &(request->returnValue.l)); in deletePotentiallySavedGlobalRefs()
302 request->returnValue.j = 0; in fillInvokeRequest()
384 request->returnValue.l = NULL; in invokeConstructor()
386 saveGlobalRef(env, object, &(request->returnValue.l)); in invokeConstructor()
402 request->returnValue.l = NULL; in invokeStatic()
404 saveGlobalRef(env, object, &(request->returnValue.l)); in invokeStatic()
411 request->returnValue.b = JNI_FUNC_PTR(env,CallStaticByteMethodA)(env, in invokeStatic()
418 request->returnValue.c = JNI_FUNC_PTR(env,CallStaticCharMethodA)(env, in invokeStatic()
425 request->returnValue.f = JNI_FUNC_PTR(env,CallStaticFloatMethodA)(env, in invokeStatic()
[all …]
/external/proguard/src/proguard/optimize/info/
DMethodOptimizationInfo.java49 private Value returnValue; field in MethodOptimizationInfo
258 public void generalizeReturnValue(Value returnValue) in generalizeReturnValue() argument
260 this.returnValue = this.returnValue != null ? in generalizeReturnValue()
261 this.returnValue.generalize(returnValue) : in generalizeReturnValue()
262 returnValue; in generalizeReturnValue()
268 return returnValue; in getReturnValue()
273 public void setReturnValue(Value returnValue) in setReturnValue() argument
275 this.returnValue = returnValue; in setReturnValue()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPConstants.java125 String returnValue = ""; in getName() local
127 returnValue += "|VERIFIED"; in getName()
129 returnValue += "|PREPARED"; in getName()
131 returnValue += "|INITIALIZED"; in getName()
133 returnValue += "|ERROR"; in getName()
135 returnValue += "|ARRAY"; in getName()
137 returnValue += "|PRIMITIVE"; in getName()
139 if (returnValue.equals("")) { in getName()
140 returnValue = "NONE"; in getName()
142 returnValue = returnValue.substring(1); in getName()
[all …]
/external/webrtc/webrtc/modules/audio_conference_mixer/source/
Dmemory_pool_win.h179 MemoryPoolItem<MemoryType>* returnValue = (MemoryPoolItem<MemoryType>*) in CreateMemory() local
182 if(returnValue == NULL) in CreateMemory()
187 returnValue->payload = new MemoryPoolItemPayload<MemoryType>(); in CreateMemory()
188 if(returnValue->payload == NULL) in CreateMemory()
190 delete returnValue; in CreateMemory() local
193 returnValue->payload->base = returnValue; in CreateMemory()
195 return returnValue; in CreateMemory()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DInvokeMethodTest.java217 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() local
219 + returnValue.getIntValue()); in testInvokeMethod001()
225 assertTrue("returnValue must be != null", returnValue != null); in testInvokeMethod001()
226 assertEquals("Invalid returned value,", 345, returnValue.getIntValue()); in testInvokeMethod001()
251 returnValue = reply.getNextValueAsValue(); in testInvokeMethod001()
253 + returnValue.getIntValue()); in testInvokeMethod001()
333 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod002() local
335 + returnValue.getIntValue()); in testInvokeMethod002()
341 assertTrue("returnValue must be != null", returnValue != null); in testInvokeMethod002()
342 assertEquals("Invalid value,", 456, returnValue.getIntValue()); in testInvokeMethod002()
[all …]
DInvokeMethodDefaultTest.java145 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod() local
146 assertNotNull("Returned value is null", returnValue); in testInvokeMethod()
148 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethod()
150 + returnValue.getIntValue()); in testInvokeMethod()
164 InvokeMethodDefaultDebuggee.TestInterface.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethod()
166 + returnValue.getIntValue()); in testInvokeMethod()
DInvokeMethodDefault002Test.java145 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod() local
146 assertNotNull("Returned value is null", returnValue); in testInvokeMethod()
148 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethod()
150 + returnValue.getIntValue()); in testInvokeMethod()
164 InvokeMethodDefault002Debuggee.TestClass.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethod()
166 + returnValue.getIntValue()); in testInvokeMethod()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java619 byte returnValue;
622 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
628 returnValue = 0;
634 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
642 returnValue = 0;
660 assert returnValue >= 0;
661 return returnValue;
750 byte returnValue;
752 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
758 returnValue = 0;
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java616 byte returnValue;
619 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
625 returnValue = 0;
631 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
639 returnValue = 0;
657 assert returnValue >= 0;
658 return returnValue;
747 byte returnValue;
749 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
755 returnValue = 0;
[all …]
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DExecutionListBenchmark.java196 int returnValue = 0;
202 returnValue += listenerLatch.getCount();
205 returnValue += listenerLatch.getCount();
207 return returnValue;
211 int returnValue = 0;
218 returnValue += listenerLatch.getCount();
220 returnValue += listenerLatch.getCount();
222 return returnValue;
239 int returnValue = 0;
247 returnValue = (int) listenerLatch.getCount();
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormatSymbols.java771 String [] returnValue = null; in getMonths() local
776 returnValue = months; in getMonths()
780 returnValue = shortMonths; in getMonths()
783 returnValue = narrowMonths; in getMonths()
790 returnValue = standaloneMonths; in getMonths()
794 returnValue = standaloneShortMonths; in getMonths()
797 returnValue = standaloneNarrowMonths; in getMonths()
802 if (returnValue == null) { in getMonths()
805 return duplicate(returnValue); in getMonths()
892 String [] returnValue = null; in getWeekdays() local
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java789 String [] returnValue = null; in getMonths() local
794 returnValue = months; in getMonths()
798 returnValue = shortMonths; in getMonths()
801 returnValue = narrowMonths; in getMonths()
808 returnValue = standaloneMonths; in getMonths()
812 returnValue = standaloneShortMonths; in getMonths()
815 returnValue = standaloneNarrowMonths; in getMonths()
820 if (returnValue == null) { in getMonths()
823 return duplicate(returnValue); in getMonths()
916 String [] returnValue = null; in getWeekdays() local
[all …]
/external/swiftshader/src/OpenGL/libEGL/
Dmain.h63 const T &error(EGLint errorCode, const T &returnValue) in error() argument
67 return returnValue; in error()
71 const T &success(const T &returnValue) in success() argument
75 return returnValue; in success()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/
DInvokeMethodTest.java119 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethodStatic() local
120 assertNotNull("Returned value is null", returnValue); in testInvokeMethodStatic()
122 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethodStatic()
124 + returnValue.getIntValue()); in testInvokeMethodStatic()
138 InvokeMethodTestInterface.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethodStatic()
140 + returnValue.getIntValue()); in testInvokeMethodStatic()
/external/proguard/src/proguard/gui/
DMemberSpecificationsPanel.java79 int returnValue = fieldSpecificationDialog.showDialog(); in addAddFieldButton()
80 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addAddFieldButton()
101 int returnValue = methodSpecificationDialog.showDialog(); in addAddMethodButton()
102 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addAddMethodButton()
131 int returnValue = memberSpecificationDialog.showDialog(); in addEditButton()
132 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addEditButton()
/external/v8/src/inspector/
Dv8-regex.cc64 v8::Local<v8::Value> returnValue; in match() local
67 .ToLocal(&returnValue)) in match()
77 DCHECK(!returnValue.IsEmpty()); in match()
78 if (!returnValue->IsArray()) return -1; in match()
80 v8::Local<v8::Array> result = returnValue.As<v8::Array>(); in match()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethodTest.java158 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() local
159 assertNotNull("Returned value is null", returnValue); in testInvokeMethod001()
160 assertEquals("Invalid returned value,", 234, returnValue.getIntValue()); in testInvokeMethod001()
162 + returnValue.getIntValue()); in testInvokeMethod001()
188 returnValue = reply.getNextValueAsValue(); in testInvokeMethod001()
190 + returnValue.getIntValue()); in testInvokeMethod001()
328 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod002() local
329 if (returnValue != null) { in testInvokeMethod002()
331 + returnValue.getIntValue()); in testInvokeMethod002()
455 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod003() local
[all …]
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DDuckTypedPSKKeyManagerTest.java110 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation()
119 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation()
128 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation()
137 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation()
147 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation()
157 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation()
310 Object returnValue; field in DuckTypedPSKKeyManagerTest.MockInvocationHandler
318 return returnValue; in invoke()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DDuckTypedPSKKeyManagerTest.java106 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation()
115 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation()
124 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation()
133 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation()
143 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation()
153 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation()
306 Object returnValue; field in DuckTypedPSKKeyManagerTest.MockInvocationHandler
314 return returnValue; in invoke()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ParallelJIT/
DParallelJIT.cpp302 void* returnValue; in main() local
303 result = pthread_join( add1Thread, &returnValue ); in main()
308 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main()
310 result = pthread_join( fibThread1, &returnValue ); in main()
315 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main()
317 result = pthread_join( fibThread2, &returnValue ); in main()
322 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()
/external/llvm/examples/ParallelJIT/
DParallelJIT.cpp303 void* returnValue; in main() local
304 result = pthread_join( add1Thread, &returnValue ); in main()
309 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main()
311 result = pthread_join( fibThread1, &returnValue ); in main()
316 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main()
318 result = pthread_join( fibThread2, &returnValue ); in main()
323 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/
DParallelJIT.cpp281 void* returnValue; in main() local
282 result = pthread_join( add1Thread, &returnValue ); in main()
287 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main()
289 result = pthread_join( fibThread1, &returnValue ); in main()
294 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main()
296 result = pthread_join( fibThread2, &returnValue ); in main()
301 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()

123456