/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingBuildTests.cpp | 230 "layout(r32ui, set = 0, binding = 0) uniform uimage2D result;\n" in initPrograms() 234 " imageStore(result, ivec2(gl_LaunchIDEXT.xy), color);\n" in initPrograms() 246 "layout(r32ui, set = 0, binding = 0) uniform uimage2D result;\n" in initPrograms() 250 " imageStore(result, ivec2(gl_LaunchIDEXT.xy), color);\n" in initPrograms() 282 de::MovePtr<TopLevelAccelerationStructure> result = makeTopLevelAccelerationStructure(); variable 285 result->setInstanceCount(blases.size()); 286 result->setBuildType(useGpuBuild ? VK_ACCELERATION_STRUCTURE_BUILD_TYPE_DEVICE_KHR : VK_ACCELERATION_STRUCTURE_BUILD_TYPE_HOST_KHR); 287 result->setDeferredOperation(m_data.deferredOperation, workerThreadsCount); 294 result->addInstance(blases[instanceNdx], vk::identityMatrix3x4, 0, 0xFF, instanceShaderBindingTableRecordOffset); 297 return TlasPtr(result [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/ |
H A D | vktYCbCrViewTests.cpp | 637 VkResult result = vk.getPhysicalDeviceImageFormatProperties2(context.getPhysicalDevice(), &imageFormatInfo, &imageFormatProperties); in testPlaneView() local 638 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in testPlaneView() 640 VK_CHECK(result); in testPlaneView() 736 const vector<Vec4>& result = resultWhole; in testPlaneView() local 740 const Vec4 resultValue = result[ndx]; in testPlaneView() 745 << ": got " << result[ndx] in testPlaneView()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Image11.cpp | 417 angle::Result result = angle::Result::Continue; in copyFromFramebuffer() local 422 result = mRenderer->getScratchMemoryBuffer(GetImplAs<Context11>(context), bufferSize, in copyFromFramebuffer() 425 if (result == angle::Result::Continue) in copyFromFramebuffer() 429 result = mRenderer->readFromAttachment( in copyFromFramebuffer() 440 result = mRenderer->readFromAttachment( in copyFromFramebuffer() 448 return result; in copyFromFramebuffer()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
H A D | DisplayWGL.cpp | 612 HRESULT result = d3d11CreateDevice(nullptr, D3D_DRIVER_TYPE_HARDWARE, nullptr, 0, nullptr, 0, in initializeD3DDevice() local 614 if (FAILED(result)) in initializeD3DDevice() 616 return egl::EglNotInitialized() << "Could not create D3D11 device, " << gl::FmtHR(result); in initializeD3DDevice() 954 bool result = mFunctionsWGL->makeCurrent(mDeviceContext, mContext); in makeCurrent() local 955 if (!result) in makeCurrent() 959 return result; in makeCurrent()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_border_clamp/ |
H A D | esextcTextureBorderClampSamplingTexture.cpp | 394 * Sets the test result to QP_TEST_RESULT_FAIL if the test failed, QP_TEST_RESULT_PASS otherwise. 728 /** Get result data and check if it is as expected 730 * @return returns true if result data is as expected, otherwise returns false 759 m_testCtx.getLog() << tcu::TestLog::Image("Result", "Rendered result image", in checkResult() 782 std::stringstream result; in getFragmentShaderCode() local 860 result << "${VERSION}\n" in getFragmentShaderCode() 879 return result.str(); in getFragmentShaderCode() 889 std::stringstream result; in getVertexShaderCode() local 911 result << "${VERSION}\n" in getVertexShaderCode() 928 return result in getVertexShaderCode() [all...] |
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | egl_ext_stubs.cpp | 167 EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID; in DupNativeFenceFDANDROID() local 168 ANGLE_EGL_TRY_RETURN(thread, syncObject->dupNativeFenceFD(display, &result), in DupNativeFenceFDANDROID() 173 return result; in DupNativeFenceFDANDROID() 376 const char *result; in QueryDeviceStringEXT() local 380 result = dev->getExtensionString().c_str(); in QueryDeviceStringEXT() 388 return result; in QueryDeviceStringEXT()
|
/third_party/skia/src/gpu/ |
H A D | GrProxyProvider.cpp | 237 sk_sp<GrTextureProxy> result = this->findProxyByUniqueKey(key); in findOrCreateProxyByUniqueKey() local 238 if (result) { in findOrCreateProxyByUniqueKey() 239 return result; in findOrCreateProxyByUniqueKey() 257 result = this->createWrapped(std::move(texture), useAllocator); in findOrCreateProxyByUniqueKey() 258 SkASSERT(result->getUniqueKey() == key); in findOrCreateProxyByUniqueKey() 261 return result; in findOrCreateProxyByUniqueKey()
|
/third_party/openssl/crypto/ui/ |
H A D | ui_lib.c | 874 int UI_set_result(UI *ui, UI_STRING *uis, const char *result) in UI_set_result() argument 876 return UI_set_result_ex(ui, uis, result, strlen(result)); in UI_set_result() 879 int UI_set_result_ex(UI *ui, UI_STRING *uis, const char *result, int len) in UI_set_result_ex() argument 908 memcpy(uis->result_buf, result, len); in UI_set_result_ex() 923 for (p = result; *p; p++) { in UI_set_result_ex()
|
/third_party/openssl/crypto/ts/ |
H A D | ts_rsp_sign.c | 379 int result = 0; in TS_RESP_create_response() local 405 result = 1; in TS_RESP_create_response() 408 if (!result) { in TS_RESP_create_response() 530 int result = 0; in ts_RESP_create_tst_info() local 589 result = 1; in ts_RESP_create_tst_info() 591 if (!result) { in ts_RESP_create_tst_info()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
H A D | ViewableTaggedData.java | 729 int result = this.position - rhs.position; in compareTo() 730 if (result != 0) { in compareTo() 731 return result; in compareTo() 735 result = classOrder(thisClass) - classOrder(thatClass); in compareTo() 736 if (result != 0) { in compareTo() 737 return result; in compareTo()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | copy_prop_arrays.cpp | 210 CopyPropagateArrays::GetSourceObjectIfAny(uint32_t result) { 211 Instruction* result_inst = context()->get_def_use_mgr()->GetDef(result); 273 std::unique_ptr<MemoryObject> result = GetSourceObjectIfAny( 276 if (result) { 291 result->GetMember(components); 292 return result; 304 // are being combined in the same order, then the result is the same as the 749 // We treat an OpImageTexelPointer as a load. The result type should
|
H A D | graphics_robust_access_pass.cpp | 25 // execution of a shader instruction) is the result of an OpVariable. 27 // - Instructions that result in pointers are: 117 // - The pointer is the result of an access chain instruction. We clamp 121 // the result of an OpArrayLength instruction acting on the pointer of 179 auto result = module_status_.failed in Process() local 184 return result; in Process() 189 // We don't really have a position, and we'll ignore the result. in Fail() 440 // UConvert requires the result type to have 0 signedness. So enforce in ClampIndicesForAccessChain() 462 // Use unsigned-min to ensure that the result is always non-negative. in ClampIndicesForAccessChain() 736 // Compute the type of the result o in MakeRuntimeArrayLengthInst() 1053 auto* result = where_inst->InsertBefore( InsertInst() local [all...] |
H A D | ir_context.h | 395 // defines a result id, its name and decorations will also be deleted. 408 // Collects the non-semantic instruction tree that uses |inst|'s result id 453 // Kill all name and decorate ops targeting the result id of |inst|. 807 // the result so it doesn't need to be rebuilt each time. 1084 // OpName and OpMemberName do not have result-ids. The target of the in AddDebug2Inst() 1156 auto result = id_to_name_->equal_range(id); in GetNames() local 1157 return make_range(std::move(result.first), std::move(result.second)); in GetNames() 1164 auto result = id_to_name_->equal_range(struct_type_id); in GetMemberName() local 1165 for (auto i = result in GetMemberName() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | copy_prop_arrays.cpp | 210 CopyPropagateArrays::GetSourceObjectIfAny(uint32_t result) { 211 Instruction* result_inst = context()->get_def_use_mgr()->GetDef(result); 273 std::unique_ptr<MemoryObject> result = GetSourceObjectIfAny( 276 if (result) { 291 result->GetMember(components); 292 return result; 304 // are being combined in the same order, then the result is the same as the 749 // We treat an OpImageTexelPointer as a load. The result type should
|
H A D | graphics_robust_access_pass.cpp | 25 // execution of a shader instruction) is the result of an OpVariable. 27 // - Instructions that result in pointers are: 117 // - The pointer is the result of an access chain instruction. We clamp 121 // the result of an OpArrayLength instruction acting on the pointer of 179 auto result = module_status_.failed in Process() local 184 return result; in Process() 189 // We don't really have a position, and we'll ignore the result. in Fail() 440 // UConvert requires the result type to have 0 signedness. So enforce in ClampIndicesForAccessChain() 462 // Use unsigned-min to ensure that the result is always non-negative. in ClampIndicesForAccessChain() 736 // Compute the type of the result o in MakeRuntimeArrayLengthInst() 1053 auto* result = where_inst->InsertBefore( InsertInst() local [all...] |
H A D | ir_context.h | 395 // defines a result id, its name and decorations will also be deleted. 408 // Collects the non-semantic instruction tree that uses |inst|'s result id 453 // Kill all name and decorate ops targeting the result id of |inst|. 807 // the result so it doesn't need to be rebuilt each time. 1084 // OpName and OpMemberName do not have result-ids. The target of the in AddDebug2Inst() 1156 auto result = id_to_name_->equal_range(id); in GetNames() local 1157 return make_range(std::move(result.first), std::move(result.second)); in GetNames() 1164 auto result = id_to_name_->equal_range(struct_type_id); in GetMemberName() local 1165 for (auto i = result in GetMemberName() [all...] |
/third_party/skia/third_party/externals/icu/source/extra/uconv/ |
H A D | uconv.cpp | 494 int32_t result; in cnvSigType() local 501 result = CNV_WITH_FEFF; in cnvSigType() 503 result = CNV_NO_FEFF; // an error occurred or U+FEFF cannot be converted in cnvSigType() 507 if (result == CNV_WITH_FEFF) { in cnvSigType() 527 result = CNV_ADDS_FEFF; in cnvSigType() 531 return result; in cnvSigType() 861 // This makes the transformation result independent of the buffer size in convertFile() 881 // append the transformation result to the result and empty the chunk in convertFile()
|
/third_party/skia/src/ports/skia_ohos/ |
H A D | HmSymbolConfig_ohos.cpp | 345 uint32_t result = static_cast<uint32_t>(groupSum); in EncodeAnimationAttribute() local 346 result = (result << oneByteBitsLen) + static_cast<uint32_t>(animationMode); in EncodeAnimationAttribute() 347 result = (result << oneByteBitsLen) + static_cast<uint32_t>(commonSubType); in EncodeAnimationAttribute() 348 return result; in EncodeAnimationAttribute()
|
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLPipelineStageCodeGenerator.cpp | 613 String result; in modifierString() local 615 result.append("const "); in modifierString() 619 result.append("inout "); in modifierString() 621 result.append("in "); in modifierString() 623 result.append("out "); in modifierString() 626 return result; in modifierString()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucasemap.cpp | 138 /* append a full case mapping result, see UCASE_MAX_STRING_LENGTH */ 140 appendResult(int32_t cpLength, int32_t result, const UChar *s, in appendResult() argument 144 /* decode the result */ in appendResult() 145 if(result<0) { in appendResult() 151 ByteSinkUtil::appendCodePoint(cpLength, ~result, sink); in appendResult() 154 if(result<=UCASE_MAX_STRING_LENGTH) { in appendResult() 155 // string: "result" is the UTF-16 length in appendResult() 156 return ByteSinkUtil::appendChange(cpLength, s, result, sink, edits, errorCode); in appendResult() 158 ByteSinkUtil::appendCodePoint(cpLength, result, sink, edits); in appendResult()
|
/third_party/python/Lib/lib2to3/ |
H A D | refactor.py | 549 result = [] 558 result.extend(self.refactor_doctest(block, block_lineno, 570 result.extend(self.refactor_doctest(block, block_lineno, 574 result.append(line) 576 result.extend(self.refactor_doctest(block, block_lineno, 578 return "".join(result)
|
/third_party/python/Lib/ |
H A D | calendar.py | 755 result = cal.formatyear(datetime.date.today().year, **optdict) 757 result = cal.formatyear(options.year, **optdict) 759 result = cal.formatmonth(options.year, options.month, **optdict) 762 result = result.encode(options.encoding) 764 write(result)
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map_entry_lite.h | 390 const bool result = entry_->MergePartialFromCodedStream(input); in MergePartialFromCodedStream() local 391 if (result) UseKeyAndValueFromEntry(); in MergePartialFromCodedStream() 392 return result; in MergePartialFromCodedStream() 479 const bool result = entry_->MergePartialFromCodedStream(input); variable 480 if (result) UseKeyAndValueFromEntry(); 481 return result;
|
/third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
H A D | syscalls.rs | 98 let mut result = MaybeUninit::<[OwnedFd; 2]>::uninit(); variables 104 &mut result 106 let [fd0, fd1] = result.assume_init(); 111 let mut result = MaybeUninit::<[OwnedFd; 2]>::uninit(); variables 119 (&mut result).into(), 122 let [fd0, fd1] = result.assume_init();
|
/third_party/spirv-tools/source/opt/ |
H A D | copy_prop_arrays.cpp | 220 CopyPropagateArrays::GetSourceObjectIfAny(uint32_t result) { 221 Instruction* result_inst = context()->get_def_use_mgr()->GetDef(result); 281 std::unique_ptr<MemoryObject> result = GetSourceObjectIfAny( 284 if (!result) { 293 result->PushIndirection(components); 294 return result; 304 // are being combined in the same order, then the result is the same as the 748 // We treat an OpImageTexelPointer as a load. The result type should
|