HomeSort by relevance Sort by last modified time
    Searched refs:returnValue (Results 1 - 25 of 566) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
ConstantUnion.h 296 TConstUnion returnValue;
299 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
300 case EbtInt64: returnValue.setI64Const(i64Const + constant.i64Const); break;
301 case EbtUint: returnValue.setUConst(uConst + constant.uConst); break;
302 case EbtUint64: returnValue.setU64Const(u64Const + constant.u64Const); break;
303 case EbtDouble: returnValue.setDConst(dConst + constant.dConst); break;
307 return returnValue;
312 TConstUnion returnValue;
315 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
316 case EbtInt64: returnValue.setI64Const(i64Const - constant.i64Const); break
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_getbits.cpp 120 uint32 returnValue = 0;
124 return (returnValue);
135 returnValue = (((uint32)(Elem)) << 24) |
144 returnValue <<= bitIndex;
147 returnValue >>= (32 - neededBits);
151 return (returnValue);
166 uint16 returnValue;
174 returnValue = (((uint16)(Elem)) << 8) |
182 returnValue = (returnValue << (bitIndex))
    [all...]
  /external/deqp/framework/egl/
egluCallLogWrapper.inl 11 eglw::EGLBoolean returnValue = m_egl.bindAPI(api);
13 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
14 return returnValue;
21 eglw::EGLBoolean returnValue = m_egl.bindTexImage(dpy, surface, buffer);
23 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
24 return returnValue;
31 eglw::EGLBoolean returnValue = m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_config);
34 m_log << TestLog::Message << "// configs = " << getPointerStr(configs, (num_config && returnValue) ? deMin32(config_size, *num_config) : 0) << TestLog::EndMessage;
38 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
39 return returnValue;
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
ConstantUnion.h 244 ConstantUnion returnValue;
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;
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/swiftshader/src/OpenGL/libGLES_CM/
main.h 37 const T &error(GLenum errorCode, const T &returnValue)
41 return returnValue;
  /external/testng/src/test/java/test/privatemethod/
PrivateMethodTest.java 19 int returnValue = pmt.privateMethod();
21 Assert.assertEquals(returnValue, 1);
  /libcore/luni/src/test/java/libcore/java/math/
RunCSVTestsStrict.java 28 Object returnValue = m.invoke(null, input);
32 (double) returnValue, 0D);
35 (int) returnValue, 0D);
47 Object returnValue;
50 returnValue = m.invoke(null, input1, (int) input2);
53 returnValue = m.invoke(null, input1, input2);
57 assertEquals(extra + ": " + m + ": " , expectedOutput, (double) returnValue, 0D);
59 assertEquals(extra + ": " + m + ": ", (int) expectedOutput, (int) returnValue, 0D);
RunCSVTests.java 58 Object returnValue = m.invoke(null, input);
69 (double) returnValue, allowedError);
72 (int) returnValue, allowedError);
85 Object returnValue;
88 returnValue = m.invoke(null, input1, (int) input2);
91 returnValue = m.invoke(null, input1, input2);
102 assertEquals(extra + ": " + m + ": ", expectedOutput, (double) returnValue,
105 assertEquals(extra + ": " + m + ": ", (int) expectedOutput, (int) returnValue,
  /frameworks/base/core/java/android/transition/
TransitionValues.java 80 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
81 returnValue += " view = " + view + "\n";
82 returnValue += " values:";
84 returnValue += " " + s + ": " + values.get(s) + "\n";
86 return returnValue;
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionValues.java 79 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
80 returnValue += " view = " + view + "\n";
81 returnValue += " values:";
83 returnValue += " " + s + ": " + values.get(s) + "\n";
85 return returnValue;
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
RunOnMainUtils.java 33 AtomicReference<T> returnValue = new AtomicReference<>(null);
37 returnValue.set(callable.call());
45 return returnValue.get();
  /external/swiftshader/src/OpenGL/libEGL/
main.h 63 const T &error(EGLint errorCode, const T &returnValue)
67 return returnValue;
71 const T &success(const T &returnValue)
75 return returnValue;
  /external/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 49 private Value returnValue;
258 public void generalizeReturnValue(Value returnValue)
260 this.returnValue = this.returnValue != null ?
261 this.returnValue.generalize(returnValue) :
262 returnValue;
268 return returnValue;
273 public void setReturnValue(Value returnValue)
275 this.returnValue = returnValue
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
main.h 39 const T &error(GLenum errorCode, const T &returnValue)
43 return returnValue;
  /frameworks/native/opengl/tests/gl_perf/
gl2_perf.cpp 53 EGLBoolean returnValue;
75 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
76 checkEglError("eglInitialize", returnValue);
77 if (returnValue != EGL_TRUE) {
84 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
85 if (returnValue) {
86 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
105 returnValue = eglMakeCurrent(dpy, surface, surface, context);
106 checkEglError("eglMakeCurrent", returnValue);
107 if (returnValue != EGL_TRUE)
    [all...]
  /external/webrtc/webrtc/modules/audio_conference_mixer/source/
memory_pool_win.h 179 MemoryPoolItem<MemoryType>* returnValue = (MemoryPoolItem<MemoryType>*)
182 if(returnValue == NULL)
187 returnValue->payload = new MemoryPoolItemPayload<MemoryType>();
188 if(returnValue->payload == NULL)
190 delete returnValue;
193 returnValue->payload->base = returnValue;
195 return returnValue;
  /external/swiftshader/src/OpenGL/libGL/
main.h 57 T &error(GLenum errorCode, T &returnValue)
61 return returnValue;
65 const T &error(GLenum errorCode, const T &returnValue)
69 return returnValue;
  /frameworks/base/core/java/com/android/internal/view/
OneShotPreDrawListener.java 39 private OneShotPreDrawListener(View view, boolean returnValue, Runnable runnable) {
43 mReturnValue = returnValue;
63 * @param returnValue The value to be returned from the OnPreDrawListener.
68 public static OneShotPreDrawListener add(View view, boolean returnValue, Runnable runnable) {
69 OneShotPreDrawListener listener = new OneShotPreDrawListener(view, returnValue, runnable);
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
LayoutParserWrapper.java 135 int returnValue;
138 returnValue = mNext;
144 returnValue = mDelegate.next();
147 if (returnValue == END_TAG && depth <= mFinalDepth) {
150 return returnValue;
175 String returnValue = null;
188 returnValue = attribute.value;
194 returnValue = mDelegate.getAttributeValue(namespace, name);
197 if (returnValue != null && mFinalDepth >= 0 && returnValue.startsWith("@{"))
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] +
51 return returnValue / 255;
  /frameworks/native/opengl/libs/EGL/
egl_tls.h 56 int line, EGLint error, T returnValue, bool quiet = false) {
58 return returnValue;
  /packages/apps/Contacts/src/com/android/contacts/widget/
TouchlessScrollView.java 35 final Parcelable returnValue = super.onSaveInstanceState();
37 return returnValue;
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
ExtImplsLocationCriterion.java 60 boolean returnValue = false;
71 returnValue = true;
76 returnValue = true;
81 if (!returnValue) {
  /art/tools/dexfuzz/src/dexfuzz/
ExecutionResult.java 27 public int returnValue;
116 return (returnValue == TIMEOUT_RETURN_VALUE);
120 return (returnValue == SIGABORT_RETURN_VALUE);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 125 String returnValue = "";
127 returnValue += "|VERIFIED";
129 returnValue += "|PREPARED";
131 returnValue += "|INITIALIZED";
133 returnValue += "|ERROR";
135 returnValue += "|ARRAY";
137 returnValue += "|PRIMITIVE";
139 if (returnValue.equals("")) {
140 returnValue = "NONE";
142 returnValue = returnValue.substring(1)
    [all...]

Completed in 900 milliseconds

1 2 3 4 5 6 7 8 91011>>