Home
last modified time | relevance | path

Searched refs:result (Results 10951 - 10975 of 20066) sorted by relevance

1...<<431432433434435436437438439440>>...803

/third_party/node/deps/openssl/config/archs/linux64-s390x/asm_avx2/
H A Dconfigdata.pm27991 my $result = eval "\$confquery->$query";
27993 # We may need a result class with a printing function at some point.
27996 if (ref $result eq 'ARRAY') {
27997 print "$_\n" foreach @$result;
27998 } elsif (ref $result eq 'HASH') {
27999 print "$_ : \\\n ", join(" \\\n ", @{$result->{$_}}), "\n"
28000 foreach sort keys %$result;
28001 } elsif (ref $result eq 'SCALAR') {
28002 print "$$result\n";
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/asm/
H A Dconfigdata.pm27960 my $result = eval "\$confquery->$query";
27962 # We may need a result class with a printing function at some point.
27965 if (ref $result eq 'ARRAY') {
27966 print "$_\n" foreach @$result;
27967 } elsif (ref $result eq 'HASH') {
27968 print "$_ : \\\n ", join(" \\\n ", @{$result->{$_}}), "\n"
27969 foreach sort keys %$result;
27970 } elsif (ref $result eq 'SCALAR') {
27971 print "$$result\n";
/third_party/node/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/
H A Dconfigdata.pm28106 my $result = eval "\$confquery->$query";
28108 # We may need a result class with a printing function at some point.
28111 if (ref $result eq 'ARRAY') {
28112 print "$_\n" foreach @$result;
28113 } elsif (ref $result eq 'HASH') {
28114 print "$_ : \\\n ", join(" \\\n ", @{$result->{$_}}), "\n"
28115 foreach sort keys %$result;
28116 } elsif (ref $result eq 'SCALAR') {
28117 print "$$result\n";
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm/
H A Dconfigdata.pm28065 my $result = eval "\$confquery->$query";
28067 # We may need a result class with a printing function at some point.
28070 if (ref $result eq 'ARRAY') {
28071 print "$_\n" foreach @$result;
28072 } elsif (ref $result eq 'HASH') {
28073 print "$_ : \\\n ", join(" \\\n ", @{$result->{$_}}), "\n"
28074 foreach sort keys %$result;
28075 } elsif (ref $result eq 'SCALAR') {
28076 print "$$result\n";
/third_party/pulseaudio/src/modules/bluetooth/
H A Dmodule-bluetooth-policy.c330 pa_card_profile *result = card->active_profile; in find_best_profile() local
336 if (result == NULL || in find_best_profile()
337 (profile->available == PA_AVAILABLE_YES && result->available == PA_AVAILABLE_UNKNOWN) || in find_best_profile()
338 (profile->available == result->available && profile->priority > result->priority)) in find_best_profile()
339 result = profile; in find_best_profile()
342 return result; in find_best_profile()
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcMultipleContextsTests.cpp232 /* Test result */ in iterate()
233 bool result = true; in iterate() local
253 result = false; in iterate()
280 result = false; in iterate()
285 if (true == result) in iterate()
813 bool result = true; in testProgram() local
818 result = false; in testProgram()
823 return result; in testProgram()
/third_party/skia/src/codec/
H A DSkBmpCodec.cpp74 Result* result) { in MakeFromStream()
75 return SkBmpCodec::MakeFromStream(std::move(stream), result, false); in MakeFromStream()
82 std::unique_ptr<SkCodec> SkBmpCodec::MakeFromIco(std::unique_ptr<SkStream> stream, Result* result) { in MakeFromIco() argument
83 return SkBmpCodec::MakeFromStream(std::move(stream), result, true); in MakeFromIco()
597 Result* result, bool inIco) { in MakeFromStream()
599 *result = ReadHeader(stream.get(), inIco, &codec); in MakeFromStream()
604 return kSuccess == *result ? std::move(codec) : nullptr; in MakeFromStream()
73 MakeFromStream(std::unique_ptr<SkStream> stream, Result* result) MakeFromStream() argument
596 MakeFromStream(std::unique_ptr<SkStream> stream, Result* result, bool inIco) MakeFromStream() argument
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dtransformation_add_loop_to_create_int_constant_synonym.cpp173 uint64_t result = i_value - s_value * num_iterations_value; in IsApplicable() local
178 result = (result << (64 - bit_width)) >> (64 - bit_width); in IsApplicable()
180 if (c_value != result) { in IsApplicable()
438 protobufs::Transformation result; in ToMessage() local
439 *result.mutable_add_loop_to_create_int_constant_synonym() = message_; in ToMessage()
440 return result; in ToMessage()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dtransformation_add_loop_to_create_int_constant_synonym.cpp173 uint64_t result = i_value - s_value * num_iterations_value; in IsApplicable() local
178 result = (result << (64 - bit_width)) >> (64 - bit_width); in IsApplicable()
180 if (c_value != result) { in IsApplicable()
438 protobufs::Transformation result; in ToMessage() local
439 *result.mutable_add_loop_to_create_int_constant_synonym() = message_; in ToMessage()
440 return result; in ToMessage()
/third_party/skia/third_party/externals/jinja2/
H A Dutils.py268 result = []
305 result.append(p)
308 return u"\n\n".join(result)
309 return Markup(u"\n".join(u"<p>%s</p>" % escape(x) for x in result))
473 result = [(key, self._mapping[key]) for key in list(self._queue)]
474 result.reverse()
475 return result
602 also mark the result as safe. Due to how this function escapes certain
/third_party/skia/src/pathops/
H A DSkPathOpsQuad.cpp203 SkDVector result = { a * fPts[0].fX + b * fPts[1].fX + c * fPts[2].fX, in dxdyAtT() local
205 if (result.fX == 0 && result.fY == 0) { in dxdyAtT()
207 result = fPts[2] - fPts[0]; in dxdyAtT()
213 return result; in dxdyAtT()
228 SkDPoint result = { a * fPts[0].fX + b * fPts[1].fX + c * fPts[2].fX, in ptAtT() local
230 return result; in ptAtT()
/third_party/skia/third_party/externals/freetype/src/gzip/
H A Dftgzip.c502 FT_ULong result = 0; in ft_gzip_file_io() local
538 result += delta; in ft_gzip_file_io()
552 return result; in ft_gzip_file_io()
604 FT_ULong result = 0; in ft_gzip_get_uncompressed_size() local
610 result = FT_Stream_ReadULongLE( stream, &error ); in ft_gzip_get_uncompressed_size()
612 result = 0; in ft_gzip_get_uncompressed_size()
617 return result; in ft_gzip_get_uncompressed_size()
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder.h56 /// The result of sanitizing a program for generation.
391 /// @param result_type result type operand of the texture instruction
392 /// @param result_id result identifier operand of the texture instruction
406 /// @param result_type result type operand of the texture instruction
407 /// @param result_id result identifier operand of the texture instruction
421 /// Generates a cast or object copy for the expression result,
474 /// @param result the result operand
476 bool GenerateTextureType(const sem::Texture* texture, const Operand& result);
479 /// @param result th
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Duvector.cpp395 void** UVector::toArray(void** result) const { in toArray()
396 void** a = result; in toArray()
400 return result; in toArray()
418 * caller owns the result and must delete it and the vector entry
502 int32_t result = (*compare)(e1, e2); in sortComparator() local
503 return result; in sortComparator()
515 int32_t result = e1->integer < e2->integer? -1 : in sortiComparator() local
517 return result; in sortiComparator()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DWireFormatTest.java222 ExtensionRegistry result = ExtensionRegistry.newInstance(); in getTestFieldOrderingsRegistry()
223 result.add(UnittestProto.myExtensionInt); in getTestFieldOrderingsRegistry()
224 result.add(UnittestProto.myExtensionString); in getTestFieldOrderingsRegistry()
225 return result; in getTestFieldOrderingsRegistry()
245 ExtensionRegistry result = ExtensionRegistry.newInstance(); in getTestExtensionInsideTableRegistry()
246 result.add(UnittestProto.testExtensionInsideTableExtension); in getTestExtensionInsideTableRegistry()
247 return result; in getTestExtensionInsideTableRegistry()
/third_party/protobuf/src/google/protobuf/
H A Dreflection_internal.h189 virtual void ConvertToT(const Value* value, T* result) const = 0;
254 virtual void ConvertToEntry(const Value* value, Message* result) const { in ConvertToEntry()
255 result->CopyFrom(*static_cast<const Message*>(value)); in ConvertToEntry()
324 void ConvertToT(const Value* value, std::string* result) const override {
325 *result = *static_cast<const std::string*>(value);
351 void ConvertToT(const Value* value, Message* result) const override {
352 result->CopyFrom(*static_cast<const Message*>(value));
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcharconv_bigint.cc276 // This call to std::find will result in a pointer either to the decimal in ReadDigits()
341 std::string result; in ToString() local
342 // Build result in reverse order in ToString()
345 result.push_back('0' + next_digit); in ToString()
347 if (result.empty()) { in ToString()
348 result.push_back('0'); in ToString()
350 std::reverse(result.begin(), result.end()); in ToString()
351 return result; in ToString()
/third_party/rust/crates/regex/regex-syntax/src/
H A Dunicode.rs3 use std::result;
8 pub type Result<T> = result::Result<T, Error>;
28 pub type FoldResult<T> = result::Result<T, CaseFoldError>;
83 ) -> FoldResult<result::Result<impl Iterator<Item = char>, Option<char>>> { in fmt()
87 ) -> FoldResult<result::Result<impl Iterator<Item = char>, Option<char>>> in fmt()
90 Err::<result::Result<IntoIter<char>, _>, _>(CaseFoldError(())) in fmt()
96 ) -> FoldResult<result::Result<impl Iterator<Item = char>, Option<char>>> in fmt()
400 pub fn is_word_character(c: char) -> result::Result<bool, UnicodeWordError> { in is_word_character()
402 fn imp(_: char) -> result::Result<bool, UnicodeWordError> { in is_word_character()
407 fn imp(c: char) -> result in is_word_character()
[all...]
/third_party/rust/crates/which-rs/tests/
H A Dbasic.rs106 let result = which::Path::new("rustc"); in _which_all()
107 assert!(result.is_ok()); in _which_all()
112 String::from(result.unwrap().to_str().unwrap()), in _which_all()
141 let result: Vec<PathBuf> = which::which_re_in(re, Some(f.paths)) in test_which_re_in_with_matches()
149 result, in test_which_re_in_with_matches()
160 let result: Vec<PathBuf> = which::which_re_in(re, Some(f.paths)) in test_which_re_in_without_matches()
165 assert_eq!(result, Vec::<PathBuf>::new()) in test_which_re_in_without_matches()
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_add_loop_to_create_int_constant_synonym.cpp173 uint64_t result = i_value - s_value * num_iterations_value; in IsApplicable() local
178 result = (result << (64 - bit_width)) >> (64 - bit_width); in IsApplicable()
180 if (c_value != result) { in IsApplicable()
440 protobufs::Transformation result; in ToMessage() local
441 *result.mutable_add_loop_to_create_int_constant_synonym() = message_; in ToMessage()
442 return result; in ToMessage()
/third_party/vulkan-loader/loader/
H A Dloader_environment.c257 VkResult result = VK_SUCCESS; in parse_generic_filter_environment_var() local
262 return result; in parse_generic_filter_environment_var()
273 result = VK_ERROR_OUT_OF_HOST_MEMORY; in parse_generic_filter_environment_var()
308 return result; in parse_generic_filter_environment_var()
316 VkResult result = VK_SUCCESS; in parse_layers_disable_filter_environment_var() local
333 result = VK_ERROR_OUT_OF_HOST_MEMORY; in parse_layers_disable_filter_environment_var()
379 return result; in parse_layers_disable_filter_environment_var()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingValveMutableTests.cpp190 DescriptorTypeFlags result = 0u; in toDescriptorTypeFlags() local
192 result |= toDescriptorTypeFlagBit(t); in toDescriptorTypeFlags()
193 return result; in toDescriptorTypeFlags()
199 std::vector<VkDescriptorType> result; in toDescriptorTypeVector() local
201 if (bitfield & DTFB_SAMPLER) result.push_back(VK_DESCRIPTOR_TYPE_SAMPLER); in toDescriptorTypeVector()
202 if (bitfield & DTFB_COMBINED_IMAGE_SAMPLER) result.push_back(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER); in toDescriptorTypeVector()
203 if (bitfield & DTFB_SAMPLED_IMAGE) result.push_back(VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE); in toDescriptorTypeVector()
204 if (bitfield & DTFB_STORAGE_IMAGE) result.push_back(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE); in toDescriptorTypeVector()
205 if (bitfield & DTFB_UNIFORM_TEXEL_BUFFER) result.push_back(VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER); in toDescriptorTypeVector()
206 if (bitfield & DTFB_STORAGE_TEXEL_BUFFER) result in toDescriptorTypeVector()
752 deUint32 result; getStoredValue() local
798 deUint32 result; getStoredValue() local
1268 std::vector<VkDescriptorType> result; global() variable
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/
H A DvktRasterizationTests.cpp198 virtual void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, VkPrimitiveTopology primitiveTopology);
199 void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const std::vector<tcu::Vec4>& coloDrata, VkPrimitiveTopology primitiveTopology);
200 void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& positionData, const std::vector<tcu::Vec4>& colorData, VkPrimitiveTopology primitiveTopology,
670 void BaseRenderingTestInstance::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, VkPrimitiveTopology primitiveTopology) in drawPrimitives() argument
675 drawPrimitives(result, vertexData, colorData, primitiveTopology); in drawPrimitives()
678 void BaseRenderingTestInstance::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& positionData, const std::vector<tcu::Vec4>& colorData, VkPrimitiveTopology primitiveTopology) in drawPrimitives() argument
680 drawPrimitives(result, positionData, colorData, primitiveTopology, *m_image, *m_resolvedImage, *m_frameBuffer, m_renderSize, *m_resultBuffer, *m_resultBufferMemory); in drawPrimitives()
682 void BaseRenderingTestInstance::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& positionData, const std::vector<tcu::Vec4>& colorData, VkPrimitiveTopology primitiveTopology, in drawPrimitives() argument
928 tcu::copy(result.getAccess(), tcu::ConstPixelBufferAccess(m_textureFormat, tcu::IVec3(renderSize, renderSize, 1), resultBufferMemory.getHostPtr())); in drawPrimitives()
1076 // result in iterate()
1471 bool result = true; compareAndVerify() local
1950 drawPoint(tcu::PixelBufferAccess& result, PointSceneSpec::ScenePoint& point) drawPoint() argument
[all...]
/foundation/graphic/graphic_surface/surface/src/
H A Dbuffer_queue.cpp77 bool result = processName.substr(0, target.size()) == target; in IsLocalRender() local
78 return result; in IsLocalRender()
1911 void BufferQueue::DumpMetadata(std::string &result, BufferElement element) in DumpMetadata() argument
1922 result += std::to_string(colorSpaceType) + ", "; in DumpMetadata()
1923 result += " [staticMetadata: "; in DumpMetadata()
1925 result += std::to_string(x); in DumpMetadata()
1926 result += " "; in DumpMetadata()
1928 result += " ],[dynamicMetadata: "; in DumpMetadata()
1930 result += std::to_string(x); in DumpMetadata()
1931 result in DumpMetadata()
1937 DumpCache(std::string &result) DumpCache() argument
1981 Dump(std::string &result) Dump() argument
[all...]
/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_manager.c192 .result = EVENT_STAGE_RESULT_FAILED, in DfxRecordBleConnectFail()
224 .result = EVENT_STAGE_RESULT_OK in DfxRecordBleConnectSuccess()
239 request->result = ctx->result; in NewRequest()
354 it->result.OnConnectFailed(it->requestId, reason); in BleNotifyDeviceConnectResult()
382 it->result.OnConnectSuccessed(it->requestId, connection->connectionId, &info); in BleNotifyDeviceConnectResult()
527 .result = status == SOFTBUS_OK ? EVENT_STAGE_RESULT_OK : EVENT_STAGE_RESULT_FAILED in BleConnectDeviceDirectly()
595 ctx->result.OnConnectFailed(ctx->requestId, status); in BleConnectRequestOnAvailableState()
615 ctx->result.OnConnectFailed(ctx->requestId, status); in BleConnectRequestOnConnectingState()
848 .result in BleServerAccepted()
1076 int32_t result = BleReuseConnectionCommon(ctx->udid, anomizeAddress, ctx->protocol); BleReuseConnectionRequestOnConnectingState() local
1734 BleConnectDevice(const ConnectOption *option, uint32_t requestId, const ConnectResult *result) BleConnectDevice() argument
2089 int32_t result = g_bleManager.state->reuseConnectionRequest(&ctx); ConflictReuseConnection() local
2255 int32_t result = SOFTBUS_CONN_BLE_INTERNAL_ERR; ConflictGetConnection() local
[all...]

Completed in 117 milliseconds

1...<<431432433434435436437438439440>>...803