Home
last modified time | relevance | path

Searched refs:result (Results 6601 - 6625 of 16602) sorted by relevance

1...<<261262263264265266267268269270>>...665

/third_party/node/deps/v8/src/debug/
H A Ddebug-wasm-objects.h78 Isolate* isolate, Handle<ArrayList> result,
82 Isolate* isolate, Handle<ArrayList> result,
86 Isolate* isolate, Handle<ArrayList> result, Handle<WasmTableObject> table);
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental-bytecode.cc85 int result = 1; in DigitsRequiredBelow() local
87 result += 1; in DigitsRequiredBelow()
89 return result; in DigitsRequiredBelow()
/third_party/node/deps/v8/src/torque/
H A Dtype-oracle.cc75 std::vector<const ClassType*> result; in GetClasses() local
78 result.push_back(class_type); in GetClasses()
81 return result; in GetClasses()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_query.c87 debug_printf("Failed to map query result memory for initialization\n"); in vmw_svga_winsys_query_init()
107 void *result, uint32 resultLen) in vmw_svga_winsys_query_get_result()
115 debug_printf("Failed to lock query result memory\n"); in vmw_svga_winsys_query_get_result()
128 if (result) { in vmw_svga_winsys_query_get_result()
129 memcpy(result, state + 1, resultLen); in vmw_svga_winsys_query_get_result()
103 vmw_svga_winsys_query_get_result(struct svga_winsys_screen *sws, struct svga_winsys_gb_query *query, unsigned offset, SVGA3dQueryState *queryState, void *result, uint32 resultLen) vmw_svga_winsys_query_get_result() argument
/third_party/musl/libc-test/src/functionalext/supplement/time/
H A Dgmtime_sup.c24 const char *result; member
510 EXPECT_STREQ("gmtime_0100", gResultData[i].result, buff); in gmtime_0100()
553 EXPECT_STREQ("gmtime64_0100", gResultData[i].result, buff); in gmtime64_0100()
/third_party/node/deps/openssl/openssl/Configurations/platform/
H A DBASE.pm91 my $result = '';
94 $result .= $_;
96 return $result;
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_common.py113 for result, text in results():
114 if result:
115 yield result, text
/third_party/rust/crates/cxx/src/
H A Dresult.rs9 use core::result::Result as StdResult;
26 pub unsafe fn r#try<T, E>(ret: *mut T, result: StdResult<T, E>) -> Result in r()
30 match result { in r()
/third_party/openssl/test/
H A Dcmp_asn_test.c64 return result; in test_cmp_asn1_get_int()
92 return result; in test_ASN1_OCTET_STRING_set()
107 return result; in test_ASN1_OCTET_STRING_set_tgt_is_src()
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DAnyPartial.cs108 public bool TryUnpack<T>(out T result) where T : IMessage, new()
110 // Note: deliberately avoid writing anything to result until the end, in case it's being
115 result = default(T); // Can't use null as there's no class constraint, but this always *will* be null in real usage.
119 result = target;
/third_party/openssl/Configurations/platform/
H A DBASE.pm91 my $result = '';
94 $result .= $_;
96 return $result;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiComputeInstanceResultBuffer.cpp52 void ComputeInstanceResultBuffer::readResultContentsTo(deUint32 *result) const in readResultContentsTo()
55 deMemcpy(result, m_bufferMem->getHostPtr(), sizeof(*result)); in readResultContentsTo()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmLoopDepInfTests.cpp161 float result = 0.0f; in getComputeShaderSpec() local
167 result += c[i]; in getComputeShaderSpec()
169 outputFloats[ndx] = result; in getComputeShaderSpec()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiComputeInstanceResultBuffer.cpp52 void ComputeInstanceResultBuffer::readResultContentsTo(deUint32 *result) const in readResultContentsTo()
55 deMemcpy(result, m_bufferMem->getHostPtr(), sizeof(*result)); in readResultContentsTo()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
H A Dwgl_utils.cpp76 int result = 0; in QueryWGLFormatAttrib() local
78 !functions->getPixelFormatAttribivARB(dc, format, 0, 1, &attribName, &result)) in QueryWGLFormatAttrib()
82 return result; in QueryWGLFormatAttrib()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Dgen_dxgi_format_table.py70 return {result};
78 def format_case(dxgi_format, result):
79 return template_format_case.format(dxgi_format=dxgi_format, result=result)
/third_party/skia/third_party/externals/spirv-tools/test/fuzzers/
H A Dspvtools_fuzz_fuzzer.cpp52 std::unique_ptr<spvtools::opt::IRContext> result; in LLVMFuzzerTestOneInput()
55 &result)) { in LLVMFuzzerTestOneInput()
60 return result; in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/spirv-tools/utils/
H A Dcheck_symbol_exports.py81 result = 0
96 result = 1
97 return result
/third_party/skia/src/gpu/vk/
H A DGrVkSemaphore.cpp26 VkResult result; in Make() local
27 GR_VK_CALL_RESULT(gpu, result, CreateSemaphore(gpu->device(), &createInfo, nullptr, in Make()
29 if (result != VK_SUCCESS) { in Make()
/third_party/skia/src/gpu/ops/
H A DGrOp.cpp24 auto result = this->onCombineIfPossible(that, alloc, caps); in combineIfPossible() local
25 if (result == CombineResult::kMerged) { in combineIfPossible()
28 return result; in combineIfPossible()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dtransformation_add_constant_scalar.cpp90 protobufs::Transformation result; in ToMessage() local
91 *result.mutable_add_constant_scalar() = message_; in ToMessage()
92 return result; in ToMessage()
H A Dtransformation_add_global_variable.cpp38 // The result id must be fresh. in IsApplicable()
111 protobufs::Transformation result; in ToMessage() local
112 *result.mutable_add_global_variable() = message_; in ToMessage()
113 return result; in ToMessage()
H A Dtransformation_add_image_sample_unused_components.cpp110 protobufs::Transformation result; in ToMessage() local
111 *result.mutable_add_image_sample_unused_components() = message_; in ToMessage()
112 return result; in ToMessage()
H A Dtransformation_add_local_variable.cpp92 protobufs::Transformation result; in ToMessage() local
93 *result.mutable_add_local_variable() = message_; in ToMessage()
94 return result; in ToMessage()
H A Dtransformation_add_relaxed_decoration.cpp62 protobufs::Transformation result; in ToMessage() local
63 *result.mutable_add_relaxed_decoration() = message_; in ToMessage()
64 return result; in ToMessage()

Completed in 15 milliseconds

1...<<261262263264265266267268269270>>...665