Home
last modified time | relevance | path

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

1234567

/third_party/glslang/glslang/Include/
DConstantUnion.h446 TConstUnion returnValue; variable
449 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
450 case EbtUint: returnValue.setUConst(uConst + constant.uConst); break;
451 case EbtDouble: returnValue.setDConst(dConst + constant.dConst); break;
453 case EbtInt8: returnValue.setI8Const(i8Const + constant.i8Const); break;
454 case EbtInt16: returnValue.setI16Const(i16Const + constant.i16Const); break;
455 case EbtInt64: returnValue.setI64Const(i64Const + constant.i64Const); break;
456 case EbtUint8: returnValue.setU8Const(u8Const + constant.u8Const); break;
457 case EbtUint16: returnValue.setU16Const(u16Const + constant.u16Const); break;
458 case EbtUint64: returnValue.setU64Const(u64Const + constant.u64Const); break;
[all …]
/third_party/vk-gl-cts/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 …]
/third_party/skia/third_party/externals/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 …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DConstantUnion.cpp407 TConstantUnion returnValue; in add() local
415 returnValue.setIConst(gl::WrappingSum<int>(lhs.iConst, rhs.iConst)); in add()
418 returnValue.setUConst(gl::WrappingSum<unsigned int>(lhs.uConst, rhs.uConst)); in add()
421 returnValue.setFConst(CheckedSum(lhs.fConst, rhs.fConst, diag, line)); in add()
430 returnValue.setFConst(CheckedSum(lhs.getFConst(), rhs.getFConst(), diag, line)); in add()
433 return returnValue; in add()
442 TConstantUnion returnValue; in sub() local
450 returnValue.setIConst(gl::WrappingDiff<int>(lhs.iConst, rhs.iConst)); in sub()
453 returnValue.setUConst(gl::WrappingDiff<unsigned int>(lhs.uConst, rhs.uConst)); in sub()
456 returnValue.setFConst(CheckedDiff(lhs.fConst, rhs.fConst, diag, line)); in sub()
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DConstantUnion.cpp411 TConstantUnion returnValue; in add() local
419 returnValue.setIConst(gl::WrappingSum<int>(lhs.iConst, rhs.iConst)); in add()
422 returnValue.setUConst(gl::WrappingSum<unsigned int>(lhs.uConst, rhs.uConst)); in add()
425 returnValue.setFConst(CheckedSum(lhs.fConst, rhs.fConst, diag, line)); in add()
434 returnValue.setFConst(CheckedSum(lhs.getFConst(), rhs.getFConst(), diag, line)); in add()
437 return returnValue; in add()
446 TConstantUnion returnValue; in sub() local
454 returnValue.setIConst(gl::WrappingDiff<int>(lhs.iConst, rhs.iConst)); in sub()
457 returnValue.setUConst(gl::WrappingDiff<unsigned int>(lhs.uConst, rhs.uConst)); in sub()
460 returnValue.setFConst(CheckedDiff(lhs.fConst, rhs.fConst, diag, line)); in sub()
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
DFFMpegExtractor.cpp124 int returnValue = -1; // -1 indicates error in decode() local
141 return returnValue; in decode()
153 if (!createAVFormatContext(ioContext.get(), &tmp)) return returnValue; in decode()
157 if (!openAVFormatContext(formatContext.get())) return returnValue; in decode()
159 if (!getStreamInfo(formatContext.get())) return returnValue; in decode()
165 return returnValue; in decode()
174 return returnValue; in decode()
186 return returnValue; in decode()
194 return returnValue; in decode()
200 return returnValue; in decode()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libGL/
Dentry_points_gl_1_5_autogen.cpp337 GLboolean returnValue; in IsBuffer() local
345 returnValue = context->isBuffer(bufferPacked); in IsBuffer()
349 returnValue = GetDefaultReturnValue<EntryPoint::IsBuffer, GLboolean>(); in IsBuffer()
351 ANGLE_CAPTURE(IsBuffer, isCallValid, context, bufferPacked, returnValue); in IsBuffer()
355 returnValue = GetDefaultReturnValue<EntryPoint::IsBuffer, GLboolean>(); in IsBuffer()
357 return returnValue; in IsBuffer()
365 GLboolean returnValue; in IsQuery() local
372 returnValue = context->isQuery(id); in IsQuery()
376 returnValue = GetDefaultReturnValue<EntryPoint::IsQuery, GLboolean>(); in IsQuery()
378 ANGLE_CAPTURE(IsQuery, isCallValid, context, id, returnValue); in IsQuery()
[all …]
Dentry_points_gl_3_2_autogen.cpp36 GLenum returnValue; in ClientWaitSync() local
44 returnValue = context->clientWaitSync(sync, flags, timeout); in ClientWaitSync()
48 returnValue = GetDefaultReturnValue<EntryPoint::ClientWaitSync, GLenum>(); in ClientWaitSync()
50 ANGLE_CAPTURE(ClientWaitSync, isCallValid, context, sync, flags, timeout, returnValue); in ClientWaitSync()
54 returnValue = GetDefaultReturnValue<EntryPoint::ClientWaitSync, GLenum>(); in ClientWaitSync()
56 return returnValue; in ClientWaitSync()
173 GLsync returnValue; in FenceSync() local
181 returnValue = context->fenceSync(condition, flags); in FenceSync()
185 returnValue = GetDefaultReturnValue<EntryPoint::FenceSync, GLsync>(); in FenceSync()
187 ANGLE_CAPTURE(FenceSync, isCallValid, context, condition, flags, returnValue); in FenceSync()
[all …]
Dentry_points_gl_3_0_autogen.cpp230 GLenum returnValue; in CheckFramebufferStatus() local
238 returnValue = context->checkFramebufferStatus(target); in CheckFramebufferStatus()
242 returnValue = GetDefaultReturnValue<EntryPoint::CheckFramebufferStatus, GLenum>(); in CheckFramebufferStatus()
244 ANGLE_CAPTURE(CheckFramebufferStatus, isCallValid, context, target, returnValue); in CheckFramebufferStatus()
248 returnValue = GetDefaultReturnValue<EntryPoint::CheckFramebufferStatus, GLenum>(); in CheckFramebufferStatus()
250 return returnValue; in CheckFramebufferStatus()
774 GLint returnValue; in GetFragDataLocation() local
782 returnValue = context->getFragDataLocation(program, name); in GetFragDataLocation()
786 returnValue = GetDefaultReturnValue<EntryPoint::GetFragDataLocation, GLint>(); in GetFragDataLocation()
788 ANGLE_CAPTURE(GetFragDataLocation, isCallValid, context, program, name, returnValue); in GetFragDataLocation()
[all …]
Dentry_points_gl_4_3_autogen.cpp317 GLuint returnValue; in GetDebugMessageLog() local
326 returnValue = context->getDebugMessageLog(count, bufSize, sources, types, ids, in GetDebugMessageLog()
331 returnValue = GetDefaultReturnValue<EntryPoint::GetDebugMessageLog, GLuint>(); in GetDebugMessageLog()
334 severities, lengths, messageLog, returnValue); in GetDebugMessageLog()
338 returnValue = GetDefaultReturnValue<EntryPoint::GetDebugMessageLog, GLuint>(); in GetDebugMessageLog()
340 return returnValue; in GetDebugMessageLog()
476 GLuint returnValue; in GetProgramResourceIndex() local
485 returnValue = context->getProgramResourceIndex(program, programInterface, name); in GetProgramResourceIndex()
489 returnValue = GetDefaultReturnValue<EntryPoint::GetProgramResourceIndex, GLuint>(); in GetProgramResourceIndex()
492 name, returnValue); in GetProgramResourceIndex()
[all …]
Dentry_points_gl_2_0_autogen.cpp108 GLuint returnValue; in CreateProgram() local
115 returnValue = context->createProgram(); in CreateProgram()
119 returnValue = GetDefaultReturnValue<EntryPoint::CreateProgram, GLuint>(); in CreateProgram()
121 ANGLE_CAPTURE(CreateProgram, isCallValid, context, returnValue); in CreateProgram()
125 returnValue = GetDefaultReturnValue<EntryPoint::CreateProgram, GLuint>(); in CreateProgram()
127 return returnValue; in CreateProgram()
135 GLuint returnValue; in CreateShader() local
143 returnValue = context->createShader(typePacked); in CreateShader()
147 returnValue = GetDefaultReturnValue<EntryPoint::CreateShader, GLuint>(); in CreateShader()
149 ANGLE_CAPTURE(CreateShader, isCallValid, context, typePacked, returnValue); in CreateShader()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libGLESv2/
Dentry_points_gles_3_0_autogen.cpp283 GLenum returnValue; in ClientWaitSync() local
291 returnValue = context->clientWaitSync(sync, flags, timeout); in ClientWaitSync()
295 returnValue = GetDefaultReturnValue<EntryPoint::ClientWaitSync, GLenum>(); in ClientWaitSync()
297 ANGLE_CAPTURE(ClientWaitSync, isCallValid, context, sync, flags, timeout, returnValue); in ClientWaitSync()
301 returnValue = GetDefaultReturnValue<EntryPoint::ClientWaitSync, GLenum>(); in ClientWaitSync()
303 return returnValue; in ClientWaitSync()
680 GLsync returnValue; in FenceSync() local
688 returnValue = context->fenceSync(condition, flags); in FenceSync()
692 returnValue = GetDefaultReturnValue<EntryPoint::FenceSync, GLsync>(); in FenceSync()
694 ANGLE_CAPTURE(FenceSync, isCallValid, context, condition, flags, returnValue); in FenceSync()
[all …]
Dentry_points_gles_2_0_autogen.cpp316 GLenum returnValue; in CheckFramebufferStatus() local
324 returnValue = context->checkFramebufferStatus(target); in CheckFramebufferStatus()
328 returnValue = GetDefaultReturnValue<EntryPoint::CheckFramebufferStatus, GLenum>(); in CheckFramebufferStatus()
330 ANGLE_CAPTURE(CheckFramebufferStatus, isCallValid, context, target, returnValue); in CheckFramebufferStatus()
334 returnValue = GetDefaultReturnValue<EntryPoint::CheckFramebufferStatus, GLenum>(); in CheckFramebufferStatus()
336 return returnValue; in CheckFramebufferStatus()
588 GLuint returnValue; in CreateProgram() local
595 returnValue = context->createProgram(); in CreateProgram()
599 returnValue = GetDefaultReturnValue<EntryPoint::CreateProgram, GLuint>(); in CreateProgram()
601 ANGLE_CAPTURE(CreateProgram, isCallValid, context, returnValue); in CreateProgram()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java651 byte returnValue;
654 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
660 returnValue = 0;
666 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
674 returnValue = 0;
692 assert returnValue >= 0;
693 return returnValue;
782 byte returnValue;
784 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
790 returnValue = 0;
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java644 byte returnValue;
647 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
653 returnValue = 0;
659 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
667 returnValue = 0;
685 assert returnValue >= 0;
686 return returnValue;
775 byte returnValue;
777 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
783 returnValue = 0;
[all …]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
Dmain.h62 const T &error(EGLint errorCode, const T &returnValue) in error() argument
66 return returnValue; in error()
70 const T &success(const T &returnValue) in success() argument
74 return returnValue; in success()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java793 String [] returnValue = null; in getMonths() local
798 returnValue = months; in getMonths()
802 returnValue = shortMonths; in getMonths()
805 returnValue = narrowMonths; in getMonths()
812 returnValue = standaloneMonths; in getMonths()
816 returnValue = standaloneShortMonths; in getMonths()
819 returnValue = standaloneNarrowMonths; in getMonths()
824 if (returnValue == null) { in getMonths()
827 return duplicate(returnValue); in getMonths()
920 String [] returnValue = null; in getWeekdays() local
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DDateFormatSymbols.java775 String [] returnValue = null; in getMonths() local
780 returnValue = months; in getMonths()
784 returnValue = shortMonths; in getMonths()
787 returnValue = narrowMonths; in getMonths()
794 returnValue = standaloneMonths; in getMonths()
798 returnValue = standaloneShortMonths; in getMonths()
801 returnValue = standaloneNarrowMonths; in getMonths()
806 if (returnValue == null) { in getMonths()
809 return duplicate(returnValue); in getMonths()
896 String [] returnValue = null; in getWeekdays() local
[all …]
/third_party/node/test/node-api/test_buffer/
Dtest_buffer.c83 napi_value returnValue; in bufferHasInstance() local
84 NAPI_CALL(env, napi_get_boolean(env, hasInstance, &returnValue)); in bufferHasInstance()
85 return returnValue; in bufferHasInstance()
95 napi_value returnValue; in bufferInfo() local
105 &returnValue)); in bufferInfo()
106 return returnValue; in bufferInfo()
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
Dentry_points_gles_3_0_autogen.cpp357 GLenum returnValue; in GL_ClientWaitSync() local
366 returnValue = context->clientWaitSync(sync, flags, timeout); in GL_ClientWaitSync()
370 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLClientWaitSync, GLenum>(); in GL_ClientWaitSync()
372 ANGLE_CAPTURE(ClientWaitSync, isCallValid, context, sync, flags, timeout, returnValue); in GL_ClientWaitSync()
377 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLClientWaitSync, GLenum>(); in GL_ClientWaitSync()
379 return returnValue; in GL_ClientWaitSync()
847 GLsync returnValue; in GL_FenceSync() local
856 returnValue = context->fenceSync(condition, flags); in GL_FenceSync()
860 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLFenceSync, GLsync>(); in GL_FenceSync()
862 ANGLE_CAPTURE(FenceSync, isCallValid, context, condition, flags, returnValue); in GL_FenceSync()
[all …]
Dentry_points_gles_2_0_autogen.cpp399 GLenum returnValue; in GL_CheckFramebufferStatus() local
408 returnValue = context->checkFramebufferStatus(target); in GL_CheckFramebufferStatus()
412 returnValue = in GL_CheckFramebufferStatus()
415 ANGLE_CAPTURE(CheckFramebufferStatus, isCallValid, context, target, returnValue); in GL_CheckFramebufferStatus()
420 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLCheckFramebufferStatus, GLenum>(); in GL_CheckFramebufferStatus()
422 return returnValue; in GL_CheckFramebufferStatus()
724 GLuint returnValue; in GL_CreateProgram() local
732 returnValue = context->createProgram(); in GL_CreateProgram()
736 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLCreateProgram, GLuint>(); in GL_CreateProgram()
738 ANGLE_CAPTURE(CreateProgram, isCallValid, context, returnValue); in GL_CreateProgram()
[all …]
/third_party/typescript/tests/baselines/reference/
DspyComparisonChecking.types49 spyObj[methodName].and.returnValue(1);
50 >spyObj[methodName].and.returnValue(1) : any
51 >spyObj[methodName].and.returnValue : any
57 >returnValue : any
DspyComparisonChecking.errors.txt1 tests/cases/compiler/spyComparisonChecking.ts(20,32): error TS2339: Property 'returnValue' does not…
24 spyObj[methodName].and.returnValue(1);
26 !!! error TS2339: Property 'returnValue' does not exist on type 'Function'.
/third_party/flutter/skia/src/pdf/
DSkDeflate.cpp44 SkDEBUGCODE(int returnValue;) in do_deflate()
48 SkDEBUGCODE(returnValue =) deflate(zStream, flush); in do_deflate()
54 ? returnValue == Z_STREAM_END in do_deflate()
55 : returnValue == Z_OK); in do_deflate()
/third_party/skia/src/pdf/
DSkDeflate.cpp45 SkDEBUGCODE(int returnValue;) in do_deflate()
49 SkDEBUGCODE(returnValue =) deflate(zStream, flush); in do_deflate()
55 ? returnValue == Z_STREAM_END in do_deflate()
56 : returnValue == Z_OK); in do_deflate()

1234567