Home
last modified time | relevance | path

Searched refs:result (Results 8176 - 8200 of 10825) sorted by relevance

1...<<321322323324325326327328329330>>...433

/third_party/typescript/tests/baselines/reference/
H A DpromiseTypeStrictNull.js228 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DMinimumBufferSizeValidationTests.cpp139 std::vector<BindingDescriptor> result; in CombineBindings() local
141 result.insert(result.end(), b.begin(), b.end()); in CombineBindings()
143 return result; in CombineBindings()
/third_party/python/Objects/stringlib/
H A Dfastsearch.h512 Py_ssize_t result; in _two_way_count() local
513 result = STRINGLIB(_two_way)(haystack + index, in _two_way_count()
515 if (result == -1) { in _two_way_count()
522 index += result + len_needle; in _two_way_count()
/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor_pool.cc86 // As this only happens on failure and will result in the program not
463 ScopedPyObjectPtr result(PyList_New(extensions.size())); in FindAllExtensions()
464 if (result == NULL) { in FindAllExtensions()
472 PyList_SET_ITEM(result.get(), i, extension); // Steals the reference. in FindAllExtensions()
474 return result.release(); in FindAllExtensions()
/third_party/rust/crates/memchr/src/memmem/
H A Dmod.rs354 let result = self in next()
358 match result { in next()
420 let result = self.finder.rfind(&self.haystack[..pos]); in next()
421 match result { in next()
1184 /// Check that naive substring search matches the result of the given search
/third_party/rust/crates/nix/test/
H A Dtest_stat.rs119 let result = in test_fstatat()
121 assert_stat_results(result); in test_fstatat()
137 // should be the same result as calling stat, in test_stat_fstat_lstat()
360 let result = mkdirat(dirfd, filename, Mode::S_IRWXU).unwrap_err(); in test_mkdirat_fail()
361 assert_eq!(result, Errno::ENOTDIR); in test_mkdirat_fail()
/third_party/spirv-tools/source/opt/
H A Ddecoration_manager.cpp249 const bool result = decorate_set_for1 == decorate_set_for2 && in HaveTheSameDecorations() local
254 return result; in HaveTheSameDecorations()
315 const bool result = in HaveSubsetOfDecorations() local
321 return result; in HaveSubsetOfDecorations()
/third_party/spirv-tools/source/val/
H A Dvalidation_state.h439 FieldDecorationsIter result; in id_member_decorations() local
440 result.begin = decorations.lower_bound(min_decoration); in id_member_decorations()
441 result.end = decorations.upper_bound(max_decoration); in id_member_decorations()
443 return result; in id_member_decorations()
475 /// Returns a map of instructions mapped by their result id
672 // in uniform storage class? The result is only valid after internal method
683 // The result is only valid after internal method CheckDecorationsOfBuffers
695 // storage class? The result is only valid after internal method
706 // The result is only valid after internal method CheckDecorationsOfBuffers
838 /// Stores a vector of instructions that use the result o
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fTextureFilteringTests.cpp374 tcu::Surface result (viewport.width, viewport.height); in iterate()
388 glu::readPixels(renderCtx, viewport.x, viewport.y, result.getAccess()); in iterate()
406 const bool isHighQuality = verifyTextureResult(m_testCtx, result.getAccess(), curCase.texture->getRefTexture(), in iterate()
417 const bool isOk = verifyTextureResult(m_testCtx, result.getAccess(), curCase.texture->getRefTexture(), in iterate()
426 m_testCtx.setTestResult(QP_TEST_RESULT_QUALITY_WARNING, "Low-quality filtering result"); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/
H A DvktPipelineIdentifierTests.cpp335 VkResult result = createGraphicsPipelinesFunc(device, pipelineCache, pipelineCount, graphicsPipelineCreateInfos.data(), DE_NULL, pipelines.data()); in testGraphicsPipelineIdentifier() local
351 if (result != expectedResult) in testGraphicsPipelineIdentifier()
522 VkResult result = createComputePipelinesFunc(device, pipelineCache, pipelineCount, computePipelineCreateInfos.data(), DE_NULL, pipelines.data()); in testComputePipelineIdentifier() local
539 if (result != expectedResult) in testComputePipelineIdentifier()
/third_party/vk-gl-cts/framework/common/
H A DtcuTestLog.cpp503 void TestLog::endCase (qpTestResult result, const char* description) in endCase() argument
506 if (qpTestLog_endCase(m_log, result, description) == DE_FALSE) in endCase()
510 void TestLog::terminateCase (qpTestResult result) in terminateCase() argument
513 if (qpTestLog_terminateCase(m_log, result) == DE_FALSE) in terminateCase()
/third_party/alsa-lib/src/pcm/
H A Dpcm.c1426 snd_pcm_sframes_t result; in snd_pcm_rewindable() local
1439 result = pcm->fast_ops->rewindable(pcm->fast_op_arg); in snd_pcm_rewindable()
1441 result = -ENOSYS; in snd_pcm_rewindable()
1443 return result; in snd_pcm_rewindable()
1457 snd_pcm_sframes_t result; in snd_pcm_rewind() local
1472 result = pcm->fast_ops->rewind(pcm->fast_op_arg, frames); in snd_pcm_rewind()
1474 result = -ENOSYS; in snd_pcm_rewind()
1476 return result; in snd_pcm_rewind()
1492 snd_pcm_sframes_t result; in snd_pcm_forwardable() local
1505 result in snd_pcm_forwardable()
1527 snd_pcm_sframes_t result; snd_pcm_forward() local
3052 snd_pcm_sframes_t result; snd_pcm_avail_update() local
3077 snd_pcm_sframes_t result; snd_pcm_avail() local
7517 snd_pcm_sframes_t result; snd_pcm_mmap_commit() local
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DMeasureUnitTest.java80 int result = first.compareTo(other.first); in compareTo()
81 if (result != 0) { in compareTo()
82 return result; in compareTo()
2944 String result = mf.formatMeasures(hours, minutes); in testManyLocaleDurations()
2945 if (!result.equals(row[2])) { in testManyLocaleDurations()
2947 row[1] + ", expected \"" + (String)row[2] + "\", got \"" + result + "\"" ); in testManyLocaleDurations()
3081 // Unit, locale, width, expected result in testDisplayNames()
3138 String result = fmt.formatMeasures( in testFieldPositionMultiple()
3143 assertEquals("result", "354 m, 23 cm", result); in testFieldPositionMultiple()
[all...]
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dmacro-assembler-riscv64.cc1840 Register result,
1843 if (result.is_valid()) {
1855 // set result to 1 if normal, otherwise set result to 0 for abnormal
1856 frflags(result);
1857 andi(result, result, exception_flags);
1858 seqz(result, result); // result <
1919 Trunc_l_d(Register rd, FPURegister fs, Register result) Trunc_l_d() argument
1926 Trunc_ul_s(Register rd, FPURegister fs, Register result) Trunc_ul_s() argument
1933 Trunc_l_s(Register rd, FPURegister fs, Register result) Trunc_l_s() argument
1940 Round_w_s(Register rd, FPURegister fs, Register result) Round_w_s() argument
1947 Round_w_d(Register rd, FPURegister fs, Register result) Round_w_d() argument
1954 Ceil_w_s(Register rd, FPURegister fs, Register result) Ceil_w_s() argument
1961 Ceil_w_d(Register rd, FPURegister fs, Register result) Ceil_w_d() argument
1968 Floor_w_s(Register rd, FPURegister fs, Register result) Floor_w_s() argument
1975 Floor_w_d(Register rd, FPURegister fs, Register result) Floor_w_d() argument
2761 TryInlineTruncateDoubleToI(Register result, DoubleRegister double_input, Label* done) TryInlineTruncateDoubleToI() argument
2772 TruncateDoubleToI(Isolate* isolate, Zone* zone, Register result, DoubleRegister double_input, StubCallMode stub_mode) TruncateDoubleToI() argument
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cShaderImageLoadStoreTests.cpp357 const char* src_fs, bool* result = NULL) in BuildProgram()
370 if (result) in BuildProgram()
371 *result = false; in BuildProgram()
384 if (result) in BuildProgram()
385 *result = false; in BuildProgram()
398 if (result) in BuildProgram()
399 *result = false; in BuildProgram()
412 if (result) in BuildProgram()
413 *result = false; in BuildProgram()
426 if (result) in BuildProgram()
2068 vec4 result; Read() local
6954 bool result = true; Run() local
7433 bool result = true; Run() local
8121 bool result = true; Run() local
[all...]
/third_party/curl/lib/vtls/
H A Dbearssl.c781 CURLcode result; in bearssl_run_until() local
820 ret = Curl_conn_cf_send(cf->next, data, (char *)buf, len, &result); in bearssl_run_until()
821 CURL_TRC_CF(data, cf, "ssl_send(len=%zu) -> %zd, %d", len, ret, result); in bearssl_run_until()
823 return result; in bearssl_run_until()
829 ret = Curl_conn_cf_recv(cf->next, data, (char *)buf, len, &result); in bearssl_run_until()
830 CURL_TRC_CF(data, cf, "ssl_recv(len=%zu) -> %zd, %d", len, ret, result); in bearssl_run_until()
836 return result; in bearssl_run_until()
/third_party/gn/src/gn/
H A Dcommand_format.cc543 if (int result = (x); result >= 0) \ in SuffixCommentTreeWalk()
544 return result in SuffixCommentTreeWalk()
605 int result = SuffixCommentTreeWalk(root); in FindLowestSuffixComment() local
606 return (result == -1 || result < end) ? end : result; in FindLowestSuffixComment()
/third_party/backends/backend/
H A Dhp5400_internal.c609 /* Copy a line into the result buffer */ in CircBufferGetLine()
1012 int result; in hp5400_scan() local
1051 result = DoScan (iHandle, &req, filename, 0x40, &res); in hp5400_scan()
1069 return result; in hp5400_scan()
1196 THWParams * pHWParams, struct ScanResponse *result, in InitScan2()
1372 if (result) /* copy ScanResult to parent if they asked for it */ in InitScan2()
1373 memcpy (result, &res, sizeof (*result)); in InitScan2()
1195 InitScan2(enum ScanType scantype, struct ScanRequest *req, THWParams * pHWParams, struct ScanResponse *result, int iColourOffset, int code) InitScan2() argument
/third_party/NuttX/drivers/usbdev/gadget/
H A Drndis.c1486 switch (req->result) in rndis_rdcomplete()
1543 switch (req_wr->result) in rndis_wrcomplete()
1580 if (req->result) in usbclass_ep0incomplete()
1582 usb_err("result:%d, xfrd:%u, len:%u\n", req->result, req->xfrd, req->len); in usbclass_ep0incomplete()
1602 if (req->result || req->xfrd != req->len) in usbclass_epintin_complete()
1604 usb_err("result:%d, xfrd:%u, len:%u\n", req->result, req->xfrd, req->len); in usbclass_epintin_complete()
1852 * transfers and return the requests to us (with result == -ESHUTDOWN) in usbclass_unbind()
2049 ctrlreq->result in usbclass_setup()
[all...]
/third_party/mesa3d/src/util/
H A Dxmlconfig.c91 int result = 0; in strToI() local
128 result = radix*result + digit; in strToI()
134 return sign * result; in strToI()
143 * strToI. In that case the result is number * 10^exponent. After
153 float sign = 1.0f, result = 0.0f, scale; in strToF() local
202 result += scale * (float)(*string - '0'); in strToF()
209 return result; in strToF()
/third_party/node/deps/v8/src/inspector/
H A Dv8-runtime-agent-impl.cc78 void sendSuccess(std::unique_ptr<protocol::Runtime::RemoteObject> result,
81 return m_callback->sendSuccess(std::move(result),
101 std::unique_ptr<RemoteObject> result; in wrapEvaluateResultAsync() local
105 maybeResultValue, tryCatch, objectGroup, wrapMode, &result, in wrapEvaluateResultAsync()
108 callback->sendSuccess(std::move(result), std::move(exceptionDetails)); in wrapEvaluateResultAsync()
313 } // Run microtasks before returning result. in evaluate()
433 result, in getProperties()
459 result, exceptionDetails); in getProperties()
428 getProperties( const String16& objectId, Maybe<bool> ownProperties, Maybe<bool> accessorPropertiesOnly, Maybe<bool> generatePreview, Maybe<bool> nonIndexedPropertiesOnly, std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>* result, Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>* internalProperties, Maybe<protocol::Array<protocol::Runtime::PrivatePropertyDescriptor>>* privateProperties, Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) getProperties() argument
/third_party/node/deps/v8/src/snapshot/
H A Ddeserializer.cc504 String result = *isolate()->string_table()->LookupKey(isolate(), &key); in PostProcessNewObject() local
506 if (result != raw_obj) { in PostProcessNewObject()
507 String::cast(raw_obj).MakeThin(isolate(), result); in PostProcessNewObject() local
510 obj.PatchValue(result); in PostProcessNewObject()
1179 Maybe<bool> result = in ReadSingleBytecodeData() local
1183 DCHECK(result.FromJust()); in ReadSingleBytecodeData()
1184 USE(result); in ReadSingleBytecodeData()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryExternalMemoryHostTests.cpp408 tcu::ConstPixelBufferAccess result(mapVkFormat(m_testParams.m_format), tcu::IVec3(100,100,1), m_resultBufferAllocation->getHostPtr()); in iterate()
415 if (!tcu::floatThresholdCompare(m_context.getTestContext().getLog(), "Comparison", "Comparison", reference, result, tcu::Vec4(0.01f), tcu::COMPARE_LOG_ON_ERROR)) in iterate()
778 const auto result = m_context.getInstanceInterface().getPhysicalDeviceImageFormatProperties2(m_context.getPhysicalDevice(), &formatInfo, &formatProperties); in verifyFormatProperties() local
779 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in verifyFormatProperties()
782 VK_CHECK(result); in verifyFormatProperties()
913 //wait for fence_2 before checking result in iterate()
917 tcu::ConstPixelBufferAccess result(mapVkFormat(m_testParams.m_format), tcu::IVec3(100, 100, 1), bufferDataPointer); in iterate()
924 if (!tcu::floatThresholdCompare(m_context.getTestContext().getLog(), "Comparison", "Comparison", reference, result, tcu::Vec4(0.01f), tcu::COMPARE_LOG_ON_ERROR)) in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsSizeControlTests.cpp431 vector<string> result (stageCount, string()); in getPerStageHeadDeclarations()
434 result.reserve(result.size() + 1); in getPerStageHeadDeclarations()
436 for (size_t i = 0; i < result.size(); ++i) in getPerStageHeadDeclarations()
438 result[i] = in getPerStageHeadDeclarations()
441 " uint result[];\n" in getPerStageHeadDeclarations()
448 "layout(location = 0) out uint result;\n"; in getPerStageHeadDeclarations()
450 result.push_back(fragPart); in getPerStageHeadDeclarations()
453 return result; in getPerStageHeadDeclarations()
487 << " uvec4 result[];\ in initProgramsRequireFull()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryExternalMemoryHostTests.cpp408 tcu::ConstPixelBufferAccess result(mapVkFormat(m_testParams.m_format), tcu::IVec3(100,100,1), m_resultBufferAllocation->getHostPtr()); in iterate()
415 if (!tcu::floatThresholdCompare(m_context.getTestContext().getLog(), "Comparison", "Comparison", reference, result, tcu::Vec4(0.01f), tcu::COMPARE_LOG_ON_ERROR)) in iterate()
778 const auto result = m_context.getInstanceInterface().getPhysicalDeviceImageFormatProperties2(m_context.getPhysicalDevice(), &formatInfo, &formatProperties); in verifyFormatProperties() local
779 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in verifyFormatProperties()
782 VK_CHECK(result); in verifyFormatProperties()
913 //wait for fence_2 before checking result in iterate()
917 tcu::ConstPixelBufferAccess result(mapVkFormat(m_testParams.m_format), tcu::IVec3(100, 100, 1), bufferDataPointer); in iterate()
924 if (!tcu::floatThresholdCompare(m_context.getTestContext().getLog(), "Comparison", "Comparison", reference, result, tcu::Vec4(0.01f), tcu::COMPARE_LOG_ON_ERROR)) in iterate()

Completed in 54 milliseconds

1...<<321322323324325326327328329330>>...433