/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_descriptor_set.c | 57 VkResult result = in panvk_GetDescriptorSetLayoutSupport() local 61 if (result != VK_SUCCESS) { in panvk_GetDescriptorSetLayoutSupport() 62 vk_error(device, result); in panvk_GetDescriptorSetLayoutSupport()
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_query.c | 265 VkResult result = VK_SUCCESS; in dzn_GetQueryPoolResults() local 343 result = VK_NOT_READY; in dzn_GetQueryPoolResults() 346 return result; in dzn_GetQueryPoolResults()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | ucaconf.cpp | 169 normalizeResult(int32_t result) { in normalizeResult() argument 170 return result<0 ? UCOL_LESS : result==0 ? UCOL_EQUAL : UCOL_GREATER; in normalizeResult() 234 errln("Compare result not symmetrical on line %i: " in testConformance()
|
/third_party/icu/icu4c/source/tools/genrb/ |
H A D | read.c | 74 enum ETokenType result; in getNextToken() local 105 result = getStringToken(buf, c, token, status); in getNextToken() 109 return result; in getNextToken()
|
/third_party/libexif/contrib/c++/ |
H A D | exif.hxx | 396 ExifEntry *result = exif_content_get_entry(content_, tag); in operator []() local 397 if(result) in operator []() 398 return Entry(result); in operator []()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/ |
H A D | threads_scenarii.c | 43 int result; /* This thread creation is expected to: 0 => succeed; 1 => fail; 2 => unknown */ member 58 .result=res } 465 switch (scenarii[sc].result) { in main() 479 case 2: /* We did not know the expected result */ in main()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/ |
H A D | threads_scenarii.c | 43 int result; /* This thread creation is expected to: 0 => succeed; 1 => fail; 2 => unknown */ member 58 .result=res } 465 switch (scenarii[sc].result) { in main() 479 case 2: /* We did not know the expected result */ in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/ |
H A D | threads_scenarii.c | 82 int result; member 101 .result = res \ 507 switch (scenarii[sc].result) { in main() 517 case 2: /* We did not know the expected result */ in main()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/ |
H A D | threads_scenarii.c | 43 int result; /* This thread creation is expected to: 0 => succeed; 1 => fail; 2 => unknown */ member 58 .result=res } 532 switch (scenarii[sc].result) { in main() 546 case 2: /* We did not know the expected result */ in main()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-shadowrealm-gen.cc | 134 // 7. Let result be CopyNameAndLength(wrapped, Target, "wrapped"). in TF_BUILTIN() 135 // 8. If result is an Abrupt Completion, throw a TypeError exception. in TF_BUILTIN() 213 TNode<Object> result; in TF_BUILTIN() local 220 // 9. Let result be the Completion Record of Call(target, in TF_BUILTIN() 222 result = CallStub(callable, target_context, target, args_count, argc, in TF_BUILTIN() 226 // 10. If result.[[Type]] is normal or result.[[Type]] is return, then in TF_BUILTIN() 227 // 10a. Return ? GetWrappedValue(callerRealm, result.[[Value]]). in TF_BUILTIN() 230 caller_context, target_context, result); in TF_BUILTIN()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | safepoint-table.h | 186 uint32_t result = 0; in read_bytes() local 188 result |= uint32_t{*reinterpret_cast<uint8_t*>(*ptr)} << (8 * b); in read_bytes() 190 return static_cast<int>(result); in read_bytes()
|
/third_party/node/deps/v8/src/base/ |
H A D | vector.h | 85 T* result = new T[length_]; in Clone() local 86 for (size_t i = 0; i < length_; i++) result[i] = start_[i]; in Clone() 87 return Vector<T>(result, length_); in Clone()
|
H A D | threaded-list.h | 245 int result = 0; in LengthForTest() local 246 for (Iterator t = begin(); t != end(); ++t) ++result; in LengthForTest() 247 return result; in LengthForTest()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | page-memory.h | 274 auto* result = std::next(it, -1)->second; in Lookup() 275 if (address < result->reserved_region().end()) return result; in Lookup()
|
/third_party/node/deps/v8/src/heap/ |
H A D | local-heap.cc | 398 AllocationResult result = AllocateRaw(object_size, type, origin, alignment); in PerformCollectionAndAllocateAgain() local 400 if (!result.IsFailure()) { in PerformCollectionAndAllocateAgain() 403 return result.ToObjectChecked().address(); in PerformCollectionAndAllocateAgain()
|
/third_party/node/deps/v8/src/objects/ |
H A D | contexts-inl.h | 120 Object result = get(PREVIOUS_INDEX); in previous() local 121 DCHECK(IsBootstrappingOrValidParentContext(result, *this)); in previous() 122 return Context::unchecked_cast(result); in previous()
|
H A D | swiss-name-dictionary.cc | 256 int result = 0; in NumberOfEnumerableProperties() local 263 if ((attr & ONLY_ENUMERABLE) == 0) result++; in NumberOfEnumerableProperties() 265 return result; in NumberOfEnumerableProperties()
|
H A D | descriptor-array-inl.h | 84 InternalIndex result = Search(name, number_of_own_descriptors); in SearchWithCache() local 85 number = result.is_found() ? result.as_int() : DescriptorArray::kNotFound; in SearchWithCache()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | token.h | 305 Value result = static_cast<Value>(op - ASSIGN_NULLISH + NULLISH); in BinaryOpForAssignment() local 306 DCHECK(IsBinaryOp(result)); in BinaryOpForAssignment() 307 return result; in BinaryOpForAssignment()
|
/third_party/node/deps/v8/src/snapshot/embedded/ |
H A D | embedded-file-writer.cc | 267 auto result = external_filenames_.find(filename); in LookupOrAddExternallyCompiledFilename() local 268 if (result != external_filenames_.end()) { in LookupOrAddExternallyCompiledFilename() 269 return result->second; in LookupOrAddExternallyCompiledFilename()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_extensions.py | 329 result = None 333 result = (int(major), int(minor)) 335 return result
|
/third_party/node/deps/openssl/openssl/crypto/engine/ |
H A D | eng_list.c | 144 int result = 0; in engine_add_dynamic_id() local 185 result = 1; in engine_add_dynamic_id() 190 return result; in engine_add_dynamic_id()
|
/third_party/node/deps/uv/src/win/ |
H A D | winsock.c | 43 int result; in uv__get_extension_function() local 46 result = WSAIoctl(socket, in uv__get_extension_function() 56 if (result == SOCKET_ERROR) { in uv__get_extension_function()
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | automaton.rs | 64 // I was able to reproduce this result on two different machines (an i5 and 491 let result = self.get_match(*state_id, *match_index, at); in overlapping_find_at() 492 debug_assert!(result.is_some(), "must be a match"); in overlapping_find_at() 494 return result; in overlapping_find_at()
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _analyzer.py | 274 #def _parse_raw_result(cls, result, extra): 275 # typedecl, extra = super()._parse_raw_result(result, extra) 332 def build_item(cls, info, result=None): 334 raise NotImplementedError((info, result)) 335 return super().build_item(info, result)
|