/third_party/openssl/providers/implementations/rands/ |
H A D | drbg_hash.c | 140 * most bytes. The result is stored in the dst buffer. 148 int result; in add_bytes() local 158 result = *d + *add + carry; in add_bytes() 159 carry = (unsigned char)(result >> 8); in add_bytes() 160 *d = (unsigned char)(result & 0xff); in add_bytes()
|
/third_party/skia/src/utils/ |
H A D | SkNWayCanvas.cpp | 378 bool result = false; in onDrawBlurImage() local 380 result |= iter->drawBlurImage(image, blurArg); in onDrawBlurImage() 382 result |= this->INHERITED::onDrawBlurImage(image, blurArg); in onDrawBlurImage() 383 return result; in onDrawBlurImage()
|
/third_party/skia/src/pathops/ |
H A D | SkOpSpan.cpp | 129 SkOpPtT* result = this; in prev() local 132 result = next; in prev() 134 SkASSERT(result->fNext == this); in prev() 135 return result; in prev()
|
H A D | SkPathWriter.cpp | 163 SkPoint result = pt->fPt; in update() local 164 if (fFirstPtT && result != fFirstPtT->fPt && fFirstPtT->contains(pt)) { in update() 165 result = fFirstPtT->fPt; in update() 168 return result; in update()
|
/third_party/skia/tests/ |
H A D | ColorSpaceTest.cpp | 209 bool result = primaries.toXYZD50(&toXYZ); in check_primaries() local 210 REPORTER_ASSERT(r, result); in check_primaries() 217 bool result = skcms_PrimariesToXYZD50( in DEF_TEST() local 223 REPORTER_ASSERT(r, result); in DEF_TEST()
|
H A D | SkSLTest.cpp | 61 SkRuntimeEffect::Result result = SkRuntimeEffect::MakeForShader(shaderString, options); in test_one_permutation() local 62 if (!result.effect) { in test_one_permutation() 63 ERRORF(r, "%s%s: %s", testFile, permutationSuffix, result.errorText.c_str()); in test_one_permutation() 69 SkRuntimeShaderBuilder builder(result.effect); in test_one_permutation()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | UtilsD3D12.cpp | 37 std::wstring result; in ConvertStringToWstring() local 38 result.resize(numChars); in ConvertStringToWstring() 40 MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, str, len, &result[0], numChars); in ConvertStringToWstring() 44 return std::move(result); in ConvertStringToWstring()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | Device.h | 73 bool ConsumedError(ResultOrError<T> resultOrError, T* result) { in ConsumedError() argument 78 *result = resultOrError.AcquireSuccess(); in ConsumedError() 104 T* result, in ConsumedError() 122 *result = resultOrError.AcquireSuccess(); in ConsumedError() 103 ConsumedError(ResultOrError<T> resultOrError, T* result, const char* formatStr, const Args&... args) ConsumedError() argument
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
H A D | font_data_test.cc | 36 // search test result pairs - number to search for; index found at 235 int result = memcmp(&(b1[offset]), &(b2[0]), length); in ReadComparison() local 236 EXPECT_EQ(result, 0); in ReadComparison() 248 int result = memcmp(&(b1[offset]), &(b2[0]), length); in ReadComparison() local 249 EXPECT_EQ(result, 0); in ReadComparison()
|
/third_party/python/Lib/test/ |
H A D | test_py_compile.py | 248 result = self.pycompilecmd('-', input=self.source_path) 249 self.assertEqual(result.returncode, 0) 250 self.assertEqual(result.stdout, b'') 251 self.assertEqual(result.stderr, b'')
|
/third_party/python/Lib/turtledemo/ |
H A D | __main__.py | 359 result = self.module.main() 360 if result == "EVENTLOOP": 368 result = "stopped!" 371 result)
|
/third_party/python/Include/internal/ |
H A D | pycore_atomic.h | 197 __typeof__(atomic_val->_value) result; \ 198 volatile __typeof__(result) *volatile_data = &atomic_val->_value; \ 216 result = *volatile_data; \ 230 result; \
|
/third_party/python/Lib/ |
H A D | contextlib.py | 494 returns the result of the __enter__ method. 505 result = _enter(cm) 507 return result 628 returns the result of the __aenter__ method. 638 result = await _enter(cm) 640 return result
|
/third_party/python/Lib/concurrent/futures/ |
H A D | _base.py | 214 TimeoutError: If the entire result iterator could not be generated 317 return fut.result(timeout) 326 """Represents the result of an asynchronous computation.""" 428 def result(self, timeout=None): member in Future 429 """Return the result of the call that the future represents. 432 timeout: The number of seconds to wait for the result if the future 436 The result of the call that the future represents. 537 def set_result(self, result): 545 self._result = result 553 """Sets the result o [all...] |
/third_party/python/Modules/_multiprocessing/ |
H A D | semaphore.c | 149 /* handle result */ in _multiprocessing_SemLock_acquire_impl() 487 PyObject *result; in _multiprocessing_SemLock_impl() local 512 result = newsemlockobject(type, handle, kind, maxvalue, name_copy); in _multiprocessing_SemLock_impl() 513 if (!result) in _multiprocessing_SemLock_impl() 516 return result; in _multiprocessing_SemLock_impl()
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | parser_impl_const_literal_test.cc | 37 float result = 0.0f; in MakeFloat() local 38 static_assert(sizeof(result) == sizeof(bits), in MakeFloat() 40 std::memcpy(&result, &bits, sizeof(bits)); in MakeFloat() 41 return result; in MakeFloat()
|
/third_party/skia/tools/calmbench/ |
H A D | ab.py | 199 result = [] 202 result.append(os.path.expanduser(r)) 204 result.append(r) 205 return result
|
/third_party/skia/tools/sk_app/ |
H A D | VulkanWindowContext.cpp | 397 SkDEBUGCODE(VkResult result = )GR_VK_CALL(fInterface, in createBuffers() 400 SkASSERT(result == VK_SUCCESS); in createBuffers() 498 SkDEBUGCODE(VkResult result = )GR_VK_CALL(fInterface, CreateSemaphore(fDevice, &semaphoreInfo, in getBackbufferSurface() 500 SkASSERT(result == VK_SUCCESS); in getBackbufferSurface()
|
/third_party/spirv-tools/source/ |
H A D | cfa.h | 325 std::vector<BB*> result; in TraversalRoots() local 331 result.push_back(block); in TraversalRoots() 339 result.push_back(block); in TraversalRoots() 344 return result; in TraversalRoots()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | thisTypeInFunctionsNegative.js | 188 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
/third_party/toybox/toys/net/ |
H A D | ifconfig.c | 68 struct addrinfo hints, *result, *rp = 0; in get_addrinfo() local 79 status = getaddrinfo(host, NULL, &hints, &result); in get_addrinfo() 81 for (rp = result; rp; rp = rp->ai_next) in get_addrinfo() 93 freeaddrinfo(result); in get_addrinfo() 370 // Encode offset and size of field into an int, and make result negative
|
H A D | netstat.c | 64 struct addrinfo hints, *result, *rp; in addr2str() local 70 if (!getaddrinfo(buf, NULL, &hints, &result)) { in addr2str() 75 for (rp = result; rp; rp = rp->ai_next) in addr2str() 77 freeaddrinfo(result); in addr2str()
|
/third_party/python/Modules/_sha3/ |
H A D | sha3module.c | 458 PyObject *result = NULL; in _SHAKE_digest() local 478 result = _Py_strhex((const char *)digest, digestlen); in _SHAKE_digest() 480 result = PyBytes_FromStringAndSize((const char *)digest, in _SHAKE_digest() 486 return result; in _SHAKE_digest()
|
/third_party/python/Modules/_sqlite/ |
H A D | blob.c | 241 blob will result in an exception being raised. 441 PyObject *result = PyBytes_FromStringAndSize(NULL, len); in subscript_slice() local 442 if (result != NULL) { in subscript_slice() 444 char *res_buf = PyBytes_AS_STRING(result); in subscript_slice() 450 return result; in subscript_slice()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
H A D | symbolize_test.cc | 125 // the result of absl::Symbolize(). 559 const char *result = TrySymbolize((void *)(&Foo::func)); in TEST() local 560 ASSERT_TRUE(result != nullptr); in TEST() 561 EXPECT_TRUE(strstr(result, "Foo::func") != nullptr) << result; in TEST()
|