/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.h | 581 HeapEntry* result = in AddEntry() local 585 reverse_entries_map_.emplace(result, ptr); in AddEntry() 588 return result; in AddEntry()
|
/third_party/node/deps/v8/src/torque/ |
H A D | declarable.h | 550 TypeConstraint result; in SubtypeConstraint() local 551 result.upper_bound = {upper_bound}; in SubtypeConstraint() 552 return result; in SubtypeConstraint()
|
/third_party/node/deps/openssl/openssl/crypto/cmp/ |
H A D | cmp_client.c | 737 X509 *result = NULL; in OSSL_CMP_exec_certreq() local 751 result = ctx->newCert; in OSSL_CMP_exec_certreq() 754 return result; in OSSL_CMP_exec_certreq()
|
/third_party/rust/crates/either/src/ |
H A D | lib.rs | 83 ($value:expr, $pattern:pat => $result:expr) => { 85 $crate::Either::Left($pattern) => $result, 86 $crate::Either::Right($pattern) => $result, 308 /// result in `Left`. 330 /// result in `Right`. 351 /// Apply one of two functions depending on contents, unifying their result. If the value is 385 /// let mut result = Vec::new(); 390 /// value.either_with(&mut result, 395 /// assert_eq!(result, vec![2, 3]); 475 /// the result o [all...] |
/third_party/python/Lib/lib2to3/tests/data/ |
H A D | py3_test_grammar.py | 599 result = [] 601 result.append(x) 602 self.assertEqual(result, [1, 2, 3])
|
H A D | py2_test_grammar.py | 619 result = [] 621 result.append(x) 622 self.assertEqual(result, [1, 2, 3])
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | json.c | 695 char *result; in pa_json_encoder_to_string_free() local 699 result = pa_strbuf_to_string_free(encoder->buffer); in pa_json_encoder_to_string_free() 704 return result; in pa_json_encoder_to_string_free()
|
/third_party/python/Lib/ |
H A D | smtpd.py | 462 result = {} 467 result[param] = value if eq else True 468 return result
|
/third_party/python/Lib/test/ |
H A D | test_bdb.py | 68 class BdbNotExpectedError(BdbException): """Unexpected result.""" 301 def check_equal(self, expected, result, msg): 302 if expected == result: 305 (msg, self.expect_set_no, result))
|
/third_party/openssl/crypto/bn/asm/ |
H A D | bn-c64xplus.asm | 150 || STW A0,*A3++ ; write result 175 || STW A0,*A3++ ; write result 294 ;; before SPKERNEL instruction is reached. As result it's 25%
|
/third_party/openssl/crypto/cmp/ |
H A D | cmp_client.c | 740 X509 *result = NULL; in OSSL_CMP_exec_certreq() local 754 result = ctx->newCert; in OSSL_CMP_exec_certreq() 757 return result; in OSSL_CMP_exec_certreq()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiFillBufferTests.cpp | 379 result); 494 result) in checkTestResult() 500 if (!tcu::intThresholdCompare(m_context.getTestContext().getLog(), "Compare", "Result comparsion", expected, result, threshold, tcu::COMPARE_LOG_RESULT)) in checkTestResult() 492 checkTestResult(tcu::ConstPixelBufferAccess result) checkTestResult() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageSubresourceLayoutTests.cpp | 233 const auto result = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, m_params.imageFormat, m_params.imageType, kImageTiling, kImageUsageFlags, 0u, &imgFormatProperties); in checkSupport() local 234 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in checkSupport() 236 VK_CHECK(result); in checkSupport()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | formatutils11.cpp | 408 const VertexFormat *result = GetVertexFormatInfo_FL_9_3(vertexFormatID); in GetVertexFormatInfo() local 409 if (result) in GetVertexFormatInfo() 411 return *result; in GetVertexFormatInfo()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/ |
H A D | esextcTextureCubeMapArrayImageOperations.cpp | 146 /* prepare buffers for result data */ in checkResults() 194 bool result = true; in checkResults() local 232 << tcu::TestLog::Message << "Wrong value in result texture for " in checkResults() 238 result = false; in checkResults() 255 return result; in checkResults() 537 * Sets the test result to QP_TEST_RESULT_FAIL if the test failed, QP_TEST_RESULT_PASS otherwise.
|
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/ |
H A D | data_synonym_transformation_test.cpp | 42 protobufs::Fact result; in MakeSynonymFact() local 43 *result.mutable_data_synonym_fact() = data_synonym_fact; in MakeSynonymFact() 44 return result; in MakeSynonymFact()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrTextureEffect.cpp | 412 SkString result; in emitCode() 419 fb->appendTextureLookup(&result, fSamplerHandle, normCoord.c_str()); in emitCode() 420 return result; in emitCode()
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkMorphologyImageFilter.cpp | 667 // called pad_image to account for our dilation of bounds, so the result will already be in onFilterImage() 673 sk_sp<SkSpecialImage> result(apply_morphology(context, input.get(), srcBounds, fType, in onFilterImage() 675 if (result) { in onFilterImage() 679 return result; in onFilterImage()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | aggressive_dead_code_elim_pass.cpp | 871 // this live as it does not have a result id. This is a little too in ProcessGlobalValues() 1051 bool result = IsEntryPoint(func) && !HasCall(func); in IsEntryPointWithNoCalls() local 1052 entry_point_with_no_calls_cache_[func->result_id()] = result; in IsEntryPointWithNoCalls() 1053 return result; in IsEntryPointWithNoCalls()
|
H A D | loop_descriptor.cpp | 840 int64_t result = diff / step_value; in GetIterations() local 843 result += 1; in GetIterations() 845 return result; in GetIterations()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | aggressive_dead_code_elim_pass.cpp | 871 // this live as it does not have a result id. This is a little too in ProcessGlobalValues() 1051 bool result = IsEntryPoint(func) && !HasCall(func); in IsEntryPointWithNoCalls() local 1052 entry_point_with_no_calls_cache_[func->result_id()] = result; in IsEntryPointWithNoCalls() 1053 return result; in IsEntryPointWithNoCalls()
|
H A D | loop_descriptor.cpp | 840 int64_t result = diff / step_value; in GetIterations() local 843 result += 1; in GetIterations() 845 return result; in GetIterations()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
H A D | data_synonym_transformation_test.cpp | 42 protobufs::Fact result; in MakeSynonymFact() local 43 *result.mutable_data_synonym_fact() = data_synonym_fact; in MakeSynonymFact() 44 return result; in MakeSynonymFact()
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | environment.py | 105 result = {} 109 result[extension.identifier] = extension(environment) 110 return result 215 A callable that can be used to process the result of a variable 643 returns the result of the expression. 680 body = [nodes.Assign(nodes.Name("result", "store"), expr, lineno=1)] 804 in the result list. 1270 rv = context.vars["result"]
|
/third_party/skia/third_party/externals/icu/source/tools/gencnval/ |
H A D | gencnval.c | 1125 int result = ucnv_compareNames(GET_ALIAS_STR(*(uint16_t*)alias1), GET_ALIAS_STR(*(uint16_t*)alias2)); in compareAliases() local 1126 if (!result) { in compareAliases() 1130 return result; in compareAliases()
|