/third_party/node/deps/v8/src/torque/ |
H A D | declaration-visitor.cc | 339 Callable* result = Specialize(key, key.generic->declaration(), base::nullopt, in SpecializeImplicit() local 341 result->SetIsUserDefined(false); in SpecializeImplicit() 342 requester.name = result->ReadableName(); in SpecializeImplicit() 343 result->SetSpecializationRequester(requester); in SpecializeImplicit() 344 CurrentScope::Scope callable_scope(result); in SpecializeImplicit() 346 return result; in SpecializeImplicit()
|
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/ |
H A D | ldso_dlopen_test.cpp | 367 const char* result = strstr(dlInfo.dli_fname, fileName); in HWTEST_F() local 368 EXPECT_TRUE(result != nullptr); in HWTEST_F() 394 const char* result = strstr(dlInfo.dli_fname, fileName); in HWTEST_F() local 395 EXPECT_TRUE(result != nullptr); in HWTEST_F() 422 unsigned long int result = getauxval(AT_SYSINFO_EHDR); in HWTEST_F() local 423 if (!result) { in HWTEST_F()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_screen.c | 617 uint64_t result; in crocus_get_timestamp() local 619 crocus_reg_read(screen->bufmgr, TIMESTAMP | 1, &result); in crocus_get_timestamp() 621 result = intel_device_info_timebase_scale(&screen->devinfo, result); in crocus_get_timestamp() 622 result &= (1ull << TIMESTAMP_BITS) - 1; in crocus_get_timestamp() 624 return result; in crocus_get_timestamp()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | keymgmt_lib.c | 539 char *result = NULL; in evp_keymgmt_util_get_deflt_digest_name() local 556 result = SN_undef; in evp_keymgmt_util_get_deflt_digest_name() 558 result = mdmandatory; in evp_keymgmt_util_get_deflt_digest_name() 562 result = SN_undef; in evp_keymgmt_util_get_deflt_digest_name() 564 result = mddefault; in evp_keymgmt_util_get_deflt_digest_name() 568 OPENSSL_strlcpy(mdname, result, mdname_sz); in evp_keymgmt_util_get_deflt_digest_name()
|
/third_party/node/deps/uv/src/win/ |
H A D | core.c | 737 int result; in uv__getsockpeername() local 740 result = uv_fileno(handle, &fd); in uv__getsockpeername() 741 if (result != 0) in uv__getsockpeername() 742 return result; in uv__getsockpeername() 747 result = func((SOCKET) fd, name, namelen); in uv__getsockpeername() 748 if (result != 0) in uv__getsockpeername()
|
H A D | poll.c | 78 int result; in uv__fast_poll_submit_poll_req() local 125 result = uv__msafd_poll((SOCKET) handle->peer_socket, in uv__fast_poll_submit_poll_req() 129 if (result != 0 && WSAGetLastError() != WSA_IO_PENDING) { in uv__fast_poll_submit_poll_req() 539 int result; in uv__poll_close() local 562 result = uv__msafd_poll(handle->socket, in uv__poll_close() 567 if (result == SOCKET_ERROR) { in uv__poll_close()
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | action.rs | 26 let result = cmd in set() 29 let err = result.err().unwrap(); in set() 99 let result = cmd in set_true() 102 let err = result.err().unwrap(); in set_true() 243 let result = cmd in set_false() 246 let err = result.err().unwrap(); in set_false()
|
/third_party/openssl/test/ |
H A D | packettest.c | 224 int result = 0; in test_PACKET_memdup() local 235 result = 1; in test_PACKET_memdup() 238 return result; in test_PACKET_memdup() 246 int result = 0; in test_PACKET_strndup() local 262 result = 1; in test_PACKET_strndup() 265 return result; in test_PACKET_strndup()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/ |
H A D | ParseRawPrimitivesBenchmark.cs | 439 ulong result = 0; in RandomUnsignedVarint() 447 result = randomValue & bitmask; in RandomUnsignedVarint() 452 result &= uint.MaxValue; in RandomUnsignedVarint() 458 result |= ulong.MaxValue; in RandomUnsignedVarint() 464 if (encodedSize == 1 || (result & (0x7FUL << ((encodedSize - 1) * bitsPerByte))) != 0) in RandomUnsignedVarint() 469 return result; in RandomUnsignedVarint()
|
/third_party/python/Lib/multiprocessing/ |
H A D | synchronize.py | 300 result = predicate() 301 if result: 302 return result 308 while not result: 314 result = predicate() 315 return result
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_sdist.py | 152 result = os.listdir(dist_folder) 153 result.sort() 154 self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) 165 result = os.listdir(dist_folder) 166 result.sort() 167 self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz'])
|
/third_party/openssl/crypto/evp/ |
H A D | keymgmt_lib.c | 539 char *result = NULL; in evp_keymgmt_util_get_deflt_digest_name() local 556 result = SN_undef; in evp_keymgmt_util_get_deflt_digest_name() 558 result = mdmandatory; in evp_keymgmt_util_get_deflt_digest_name() 562 result = SN_undef; in evp_keymgmt_util_get_deflt_digest_name() 564 result = mddefault; in evp_keymgmt_util_get_deflt_digest_name() 568 OPENSSL_strlcpy(mdname, result, mdname_sz); in evp_keymgmt_util_get_deflt_digest_name()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_buffer/ |
H A D | esextcTextureBufferActiveUniformValidation.cpp | 210 * Sets the test result to QP_TEST_RESULT_FAIL if the test failed, QP_TEST_RESULT_PASS otherwise. 279 << "result uniform name is: " << &nameValue[0] << "\n" in iterate() 326 /* Log error if expected result is different from expected*/ in iterate() 331 << "result uniform type: " << getUniformTypeName(types[i]) << "\n" in iterate() 351 << "result uniform type: " << getUniformTypeName(type) << "\n" in iterate() 468 const char* result = "${VERSION}\n" in getFragmentShaderCode() local 486 return result; in getFragmentShaderCode() 495 const char* result = "${VERSION}\n" in getVertexShaderCode() local 504 return result; in getVertexShaderCode() 620 const char* result in getComputeShaderCode() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_format_utils.cpp | 427 gl::SwizzleState result; in ApplySwizzle() local 429 result.swizzleRed = GetSwizzleStateComponent(formatSwizzle, toApply.swizzleRed); in ApplySwizzle() 430 result.swizzleGreen = GetSwizzleStateComponent(formatSwizzle, toApply.swizzleGreen); in ApplySwizzle() 431 result.swizzleBlue = GetSwizzleStateComponent(formatSwizzle, toApply.swizzleBlue); in ApplySwizzle() 432 result.swizzleAlpha = GetSwizzleStateComponent(formatSwizzle, toApply.swizzleAlpha); in ApplySwizzle() 434 return result; in ApplySwizzle()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrMatrixConvolutionEffect.cpp | 53 KernelWrapper result(size); in Make() 56 result.fArray[i] = SkScalarToFloat(values[i]); in Make() 58 return {result, nullptr}; in Make() 61 BiasAndGain& scalableSampler = result.fBiasAndGain; in Make() 109 return {result, std::move(kernelFP)}; in Make() 138 return {result, std::move(kernelFP)}; in Make()
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkBlendImageFilter.cpp | 224 auto result = getBackground(); in onFilterBounds() local 225 if (!result.intersect(getForeground())) { in onFilterBounds() 228 return result; in onFilterBounds() 233 auto result = getBackground(); in onFilterBounds() local 234 result.join(getForeground()); in onFilterBounds() 235 return result; in onFilterBounds()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_obfuscate_constants.cpp | 93 // computes the result of the binary expression. in ObfuscateBoolConstantViaConstantPair() 249 std::vector<std::vector<uint32_t>> result; in GetConstantWordsFromUniformsForType() local 260 if (std::find(result.begin(), result.end(), words) == result.end()) { in GetConstantWordsFromUniformsForType() 261 result.push_back(std::move(words)); in GetConstantWordsFromUniformsForType() 265 return result; in GetConstantWordsFromUniformsForType() 385 // the result of a load from the chosen uniform. in ObfuscateScalarConstant() 456 // if there are instructions at the start of the block without result ids, in Apply() 469 // The instruction has a result i in Apply() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass_obfuscate_constants.cpp | 93 // computes the result of the binary expression. in ObfuscateBoolConstantViaConstantPair() 249 std::vector<std::vector<uint32_t>> result; in GetConstantWordsFromUniformsForType() local 260 if (std::find(result.begin(), result.end(), words) == result.end()) { in GetConstantWordsFromUniformsForType() 261 result.push_back(std::move(words)); in GetConstantWordsFromUniformsForType() 265 return result; in GetConstantWordsFromUniformsForType() 385 // the result of a load from the chosen uniform. in ObfuscateScalarConstant() 456 // if there are instructions at the start of the block without result ids, in Apply() 469 // The instruction has a result i in Apply() [all...] |
/third_party/skia/third_party/externals/libpng/ |
H A D | pngerror.c | 939 volatile int result; in png_safe_execute() local 945 result = setjmp(safe_jmpbuf) == 0; in png_safe_execute() 947 if (result != 0) in png_safe_execute() 951 result = function(arg); in png_safe_execute() 957 if (result == 0) in png_safe_execute() 960 return result; in png_safe_execute()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | plurfmt.cpp | 225 UnicodeString result; in format() local 226 return format(Formattable(number), number, result, fpos, status); in format() 232 UnicodeString result; in format() local 233 return format(Formattable(number), number, result, fpos, status); in format() 410 Formattable& /*result*/, in parseObject() 506 void PluralFormat::parseType(const UnicodeString& source, const NFRule *rbnfLenientScanner, Formattable& result, FieldPosition& pos) const { in parseType() argument 574 result.setString(keyword); in parseType()
|
H A D | stsearch.cpp | 288 StringSearch *result = new StringSearch(m_pattern_, m_text_, in safeClone() local 293 if (result == 0) { in safeClone() 297 result->setOffset(getOffset(), status); in safeClone() 298 result->setMatchStart(m_strsrch_->search->matchedIndex); in safeClone() 299 result->setMatchLength(m_strsrch_->search->matchedLength); in safeClone() 303 return result; in safeClone()
|
H A D | utrans.cpp | 201 UTransliterator* result = 204 return result; 501 UChar* result, int32_t resultLength, 504 if ( (result==NULL)? resultLength!=0: resultLength<0 ) { 510 res.setTo(result, 0, resultLength); 512 return res.extract(result, resultLength, *status);
|
/third_party/skia/third_party/externals/microhttpd/doc/examples/ |
H A D | sessions.c | 19 char *result = NULL; in asprintf() local 31 result = (char *) malloc (sizeof (char *) * len); in asprintf() 32 if (result != NULL) in asprintf() 37 free (result); in asprintf() 38 result = NULL; in asprintf() 45 *resultp = result; in asprintf()
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsWinding.cpp | 400 SkOpSpan* result = testSegment->findSortableTop(contourHead); in findSortableTop() local 401 if (result) { in findSortableTop() 402 return result; in findSortableTop() 419 SkOpSpan* result = contour->findSortableTop(contourHead); in FindSortableTop() local 420 if (result) { in FindSortableTop() 421 return result; in FindSortableTop()
|
/third_party/skia/third_party/externals/brotli/go/cbrotli/ |
H A D | cbrotli_test.go | 183 type result struct { type 187 ch := make(chan result) 190 ch <- result{n, err} 193 case result := <-ch: 194 return result.n, result.err
|