Home
last modified time | relevance | path

Searched refs:result (Results 9726 - 9750 of 16678) sorted by relevance

1...<<381382383384385386387388389390>>...668

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawSampleAttributeTests.cpp453 uint32_t result = 0; in iterate() local
454 deMemcpy(&result, bufferData, sizeof(result)); in iterate()
456 if (result < expectedCounter) in iterate()
459 output << "Atomic counter value lower than expected: " << result; in iterate() local
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageMismatchedFormatsTests.cpp79 FormatInfo result; in getFormatInfo() local
83 result.VectorWidth = getNumUsedChannels(texFormat.order); in getFormatInfo()
84 result.BytesPerPixel = getPixelSize(texFormat); in getFormatInfo()
85 result.ChannelClass = tcu::getTextureChannelClass(texFormat.type); in getFormatInfo()
87 return result; in getFormatInfo()
326 ${VECT} result; in initPrograms()
327 int r = sparseImageLoadARB(inputImage, ivec2(gl_GlobalInvocationID.xy), result); in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsArithmeticTests.cpp388 TestStatus result (QP_TEST_RESULT_INTERNAL_ERROR, "Internal Error"); in test()
391 result = subgroups::makeComputeTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
393 result = subgroups::makeMeshTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
395 if (result.getCode() != QP_TEST_RESULT_PASS) in test()
398 return result; in test()
H A DvktSubgroupsBallotTests.cpp914 TestStatus result (QP_TEST_RESULT_INTERNAL_ERROR, "Internal Error"); in test()
917 result = subgroups::makeComputeTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
919 result = subgroups::makeMeshTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
921 if (result.getCode() != QP_TEST_RESULT_PASS) in test()
924 return result; in test()
H A DvktSubgroupsClusteredTests.cpp315 TestStatus result (QP_TEST_RESULT_INTERNAL_ERROR, "Internal Error"); in test()
318 result = subgroups::makeComputeTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
320 result = subgroups::makeMeshTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
322 if (result.getCode() != QP_TEST_RESULT_PASS) in test()
325 return result; in test()
H A DvktSubgroupsQuadTests.cpp343 TestStatus result (QP_TEST_RESULT_INTERNAL_ERROR, "Internal Error"); in test()
346 result = subgroups::makeComputeTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
348 result = subgroups::makeMeshTest(context, VK_FORMAT_R32_UINT, &inputData, 1, DE_NULL, checkComputeOrMesh, size); in test()
350 if (result.getCode() != QP_TEST_RESULT_PASS) in test()
353 return result; in test()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
H A DvktTextureTestUtil.hpp215 void renderQuad (tcu::Surface& result, int texUnit, const float* texCoord, glu::TextureTestUtil::TextureType texType);
216 void renderQuad (tcu::Surface& result, int texUnit, const float* texCoord, const glu::TextureTestUtil::ReferenceParams& params);
217 void renderQuad (tcu::Surface& result,
224 void renderQuad (const tcu::PixelBufferAccess& result, int texUnit, const float* texCoord, const glu::TextureTestUtil::ReferenceParams& params);
225 void renderQuad (const tcu::PixelBufferAccess& result,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageMismatchedFormatsTests.cpp79 FormatInfo result; in getFormatInfo() local
83 result.VectorWidth = getNumUsedChannels(texFormat.order); in getFormatInfo()
84 result.BytesPerPixel = getPixelSize(texFormat); in getFormatInfo()
85 result.ChannelClass = tcu::getTextureChannelClass(texFormat.type); in getFormatInfo()
87 return result; in getFormatInfo()
328 ${VECT} result; in initPrograms()
329 int r = sparseImageLoadARB(inputImage, ivec2(gl_GlobalInvocationID.xy), result); in initPrograms()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A Drenderer11_utils.h179 HRESULT result = in DynamicCastComObject() local
181 if (SUCCEEDED(result)) in DynamicCastComObject()
313 HRESULT result = context->Map(constantBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); in SetBufferData() local
314 ASSERT(SUCCEEDED(result)); in SetBufferData()
315 if (SUCCEEDED(result)) in SetBufferData()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
H A DD3DTextureSurfaceWGL.cpp151 HRESULT result = texture9->GetDevice(&d3d9Device); in GetD3D9TextureInfo() local
152 if (FAILED(result)) in GetD3D9TextureInfo()
214 HRESULT result = d3d11Device->OpenSharedResource(shareHandle, __uuidof(ID3D11Texture2D), in GetD3DTextureInfo() local
216 if (FAILED(result)) in GetD3DTextureInfo()
218 return egl::EglBadParameter() << "Failed to open share handle, " << gl::FmtHR(result); in GetD3DTextureInfo()
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/
H A Djsonrpc2.go138 // If the response is not an error, it will be decoded into result.
139 // result must be of a type you an pass to json.Unmarshal.
140 func (c *Conn) Call(ctx context.Context, method string, params, result interface{}) (err error) {
194 if result == nil || response.Result == nil {
197 if err := json.Unmarshal(*response.Result, result); err != nil {
198 return fmt.Errorf("unmarshalling result: %v", err)
238 // If err is set then result will be ignored.
241 func (r *Request) Reply(ctx context.Context, result interface{}, err error) error {
257 raw, err = marshalToRaw(result)
310 Result *json.RawMessage `json:"result,omitempt
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DTimerQueriesTest.cpp145 ASSERT_LT(0, timeout) << "Query result available timed out" << std::endl; in TEST_P()
218 ASSERT_LT(0, timeout) << "Query result available timed out" << std::endl; in TEST_P()
220 GLuint64 result = 0; in TEST_P() local
221 glGetQueryObjectui64vEXT(query, GL_QUERY_RESULT_EXT, &result); in TEST_P()
227 std::cout << "Elapsed time: " << result << std::endl; in TEST_P()
228 EXPECT_LT(0ul, result); in TEST_P()
231 EXPECT_LT(result, 1000000000ul); in TEST_P()
389 // Go back to the first context, end its query, and get the result in TEST_P()
467 ASSERT_LT(0, timeout) << "Query result available timed out" << std::endl; in TEST_P()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
H A DGlyfEncoder.java261 List<Integer> result = new ArrayList<Integer>(); in splitPush()
287 result.add(data.readUByte(ix)); in splitPush()
289 result.add(data.readShort(ix)); in splitPush()
295 int pushCount = result.size(); in splitPush()
299 encodePushSequence(pushStream, result); in splitPush()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/
H A Djsonrpc2.go138 // If the response is not an error, it will be decoded into result.
139 // result must be of a type you an pass to json.Unmarshal.
140 func (c *Conn) Call(ctx context.Context, method string, params, result interface{}) (err error) {
194 if result == nil || response.Result == nil {
197 if err := json.Unmarshal(*response.Result, result); err != nil {
198 return fmt.Errorf("unmarshalling result: %v", err)
238 // If err is set then result will be ignored.
241 func (r *Request) Reply(ctx context.Context, result interface{}, err error) error {
257 raw, err = marshalToRaw(result)
310 Result *json.RawMessage `json:"result,omitempt
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcurrpinf.cpp186 UnicodeString& result) const { in getCurrencyPluralPattern()
201 result = UnicodeString(gDefaultCurrencyPluralPattern); in getCurrencyPluralPattern()
202 return result; in getCurrencyPluralPattern()
205 result = *currencyPluralPattern; in getCurrencyPluralPattern()
206 return result; in getCurrencyPluralPattern()
H A Dnumber_patternmodifier.cpp222 int result = AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // prefix length in getPrefixLength() local
223 return result; in getPrefixLength()
234 int result = AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // prefix length in getCodePointCount() local
236 result += AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // suffix length in getCodePointCount()
237 return result; in getCodePointCount()
H A Dnumber_rounding.cpp197 Precision result(*this); // copy constructor in trailingZeroDisplay()
198 result.fTrailingZeroDisplay = trailingZeroDisplay; in trailingZeroDisplay()
199 return result; in trailingZeroDisplay()
275 Precision result = Precision::withCurrency(currency, localStatus); in withCurrency() local
279 return result; in withCurrency()
H A Drbt_set.cpp42 * @param appendTo result is appended to this param.
450 UnicodeSet& TransliterationRuleSet::getSourceTargetSet(UnicodeSet& result, in getSourceTargetSet() argument
453 result.clear(); in getSourceTargetSet()
459 r->addTargetSetTo(result); in getSourceTargetSet()
461 r->addSourceSetTo(result); in getSourceTargetSet()
464 return result; in getSourceTargetSet()
/third_party/skia/third_party/externals/oboe/docs/reference/search/
H A Dsearch.js26 var result = '';
33 result+=c;
37 result+="_0"+cn.toString(16);
41 result+="_"+cn.toString(16);
44 return result;
536 else // at least one result
762 if (searchData[e][1].length==2) // single result
/third_party/skia/tests/
H A DPDFPrimitivesTest.cpp76 SkString result = emit_to_string(object); in assert_emit_eq() local
77 assert_eq(reporter, result, string); in assert_emit_eq()
97 SkString result = emit_to_string(pdfUnion); in assert_emit_eq_number() local
98 float value = static_cast<float>(std::atof(result.c_str())); in assert_emit_eq_number()
100 ERRORF(reporter, "%.9g != %s", number, result.c_str()); in assert_emit_eq_number()
344 ERRORF(reporter, "unscannable result: %s", floatString); in check_pdf_scalar_serialization()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DPipelineLayout.cpp326 Ref<PipelineLayoutBase> result; in CreateDefault() local
327 DAWN_TRY_ASSIGN(result, device->GetOrCreatePipelineLayout(&desc)); in CreateDefault()
328 ASSERT(!result->IsError()); in CreateDefault()
334 ASSERT(ValidateCompatibilityWithPipelineLayout(device, metadata, result.Get()) in CreateDefault()
338 return std::move(result); in CreateDefault()
/third_party/skia/third_party/externals/freetype/src/base/
H A Dmd5.c258 void MD5_Final(unsigned char *result, MD5_CTX *ctx) in MD5_Final() argument
283 OUT(&result[0], ctx->a) in MD5_Final()
284 OUT(&result[4], ctx->b) in MD5_Final()
285 OUT(&result[8], ctx->c) in MD5_Final()
286 OUT(&result[12], ctx->d) in MD5_Final()
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcmanag.c636 FT_UInt result; in FT_LOCAL_DEF() local
645 for ( result = 0; result < count; ) in FT_LOCAL_DEF()
654 result++; in FT_LOCAL_DEF()
662 return result; in FT_LOCAL_DEF()
/third_party/skia/third_party/externals/icu/source/common/
H A Dunifiedcache.cpp247 UBool result = FALSE; in _flush() local
260 result = TRUE; in _flush()
263 return result; in _flush()
456 UBool result = _inProgress(value, status); in _inProgress() local
458 return result; in _inProgress()
/third_party/toybox/toys/pending/
H A Droute.c99 struct addrinfo hints, *result; in get_addrinfo() local
104 if ((status = getaddrinfo(ip, NULL, &hints, &result))) { in get_addrinfo()
108 if (result) { in get_addrinfo()
109 memcpy(sock_in6, result->ai_addr, sizeof(*sock_in6)); in get_addrinfo()
110 freeaddrinfo(result); in get_addrinfo()

Completed in 27 milliseconds

1...<<381382383384385386387388389390>>...668