Home
last modified time | relevance | path

Searched refs:result (Results 2676 - 2700 of 10825) sorted by relevance

1...<<101102103104105106107108109110>>...433

/third_party/skia/third_party/externals/brotli/research/
H A Dbrotli_decoder.c47 BrotliDecoderResult result = BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT; in main() local
68 if (result == BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT) { in main()
73 } else if (result == BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT) { in main()
81 result = BrotliDecoderDecompressStream( in main()
87 if ((result == BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT) || ferror(ctx.fout)) { in main()
89 } else if (result != BROTLI_DECODER_RESULT_SUCCESS) { in main()
/third_party/optimized-routines/string/aarch64/
H A Dmemrchr.S19 #define result x0 define
67 sub result, endm1, synd, lsr 2
69 csel result, result, xzr, hi
109 csel result, tmp, xzr, hs
113 mov result, 0
/third_party/skia/third_party/externals/tint/fuzzers/
H A Drandom_generator.cc75 uint8_t result; in GetByte() local
76 engine_->RandomNBytes(&result, 1); in GetByte()
77 return result; in GetByte()
81 uint32_t result; in Get4Bytes() local
82 engine_->RandomNBytes(reinterpret_cast<uint8_t*>(&result), 4); in Get4Bytes()
83 return result; in Get4Bytes()
H A Dtint_ast_clone_fuzzer.cc97 auto result = tint::writer::wgsl::Generate(&src, wgsl_options); in LLVMFuzzerTestOneInput() local
98 ASSERT_TRUE(result.success); in LLVMFuzzerTestOneInput()
99 src_wgsl = result.wgsl; in LLVMFuzzerTestOneInput()
110 auto result = tint::writer::wgsl::Generate(&dst, wgsl_options); in LLVMFuzzerTestOneInput() local
111 ASSERT_TRUE(result.success); in LLVMFuzzerTestOneInput()
112 auto dst_wgsl = result.wgsl; in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbinary_writer_test.cc28 auto res = bw.result(); in TEST_F()
44 auto res = bw.result(); in TEST_F()
58 auto res = bw.result(); in TEST_F()
70 auto res = bw.result(); in TEST_F()
95 auto res = bw.result(); in TEST_F()
121 auto res = bw.result(); in TEST_F()
/third_party/skia/tools/skiaserve/
H A Dskiaserve.cpp80 int result = kUrlManager.invoke(request, connection, url, method, upload_data, in answer_to_connection() local
82 if (MHD_NO == result) { in answer_to_connection()
85 return result; in answer_to_connection()
95 int result = inet_pton(AF_INET, FLAGS_address[0], &address.sin_addr); in skiaserve_main() local
96 if (result != 1) { in skiaserve_main()
98 FLAGS_address[0], FLAGS_port, result, strerror(errno)); in skiaserve_main()
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocresdata.cpp41 * default locale because that would result in a mix of languages that is
156 ULayoutType result = ULOC_LAYOUT_UNKNOWN; in _uloc_getOrientationHelper() local
179 result = ULOC_LAYOUT_BTT; in _uloc_getOrientationHelper()
182 result = ULOC_LAYOUT_LTR; in _uloc_getOrientationHelper()
185 result = ULOC_LAYOUT_RTL; in _uloc_getOrientationHelper()
188 result = ULOC_LAYOUT_TTB; in _uloc_getOrientationHelper()
198 return result; in _uloc_getOrientationHelper()
/third_party/vixl/tools/
H A Dgenerate_tests.py604 As a result, the new test we will assemble each instructions in "mnemonics" with
682 result = argparse.ArgumentParser(
685 result.add_argument('--config-files', nargs='+',
689 result.add_argument('--clang-format',
691 result.add_argument('--jobs', '-j', type=int, metavar='N',
694 result.add_argument('--skip-traces', action='store_true',
696 return result.parse_args()
/third_party/typescript/tests/baselines/reference/
H A DinterfaceAssignmentCompat.js27 var result=""; variable
38 result+=((Color._map[z[i].color])+"\r\n");
46 return result;
74 var result = "";
82 result += ((Color._map[z[i].color]) + "\r\n");
89 return result;
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DExtensionRegistryLite.java128 ExtensionRegistryLite result = emptyRegistry; in getEmptyRegistry()
129 if (result == null) { in getEmptyRegistry()
131 result = emptyRegistry; in getEmptyRegistry()
132 if (result == null) { in getEmptyRegistry()
133 result = in getEmptyRegistry()
141 return result; in getEmptyRegistry()
/third_party/python/Modules/
H A D_weakref.c91 PyObject *result = NULL; in _weakref_getweakrefs() local
97 result = PyList_New(count); in _weakref_getweakrefs()
98 if (result != NULL) { in _weakref_getweakrefs()
102 PyList_SET_ITEM(result, i, (PyObject *) current); in _weakref_getweakrefs()
109 result = PyList_New(0); in _weakref_getweakrefs()
111 return result; in _weakref_getweakrefs()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DCodedAdapterTest.java59 Proto3Message result = fromByteArray(expectedBytes, Proto3Message.class); in proto3Roundtrip()
60 assertEquals(expected, result); in proto3Roundtrip()
63 byte[] actualBytes = toByteArray(result, expectedBytes.length); in proto3Roundtrip()
76 Proto2Message result = fromByteArray(expectedBytes, Proto2Message.class); in proto2Roundtrip()
77 assertEquals(expected, result); in proto2Roundtrip()
80 byte[] actualBytes = toByteArray(result, expectedBytes.length); in proto2Roundtrip()
/third_party/python/Lib/test/test_importlib/builtin/
H A Dtest_loader.py82 result = self.machinery.BuiltinImporter.get_code(util.BUILTINS.good_name)
83 self.assertIsNone(result)
87 result = self.machinery.BuiltinImporter.get_source(util.BUILTINS.good_name)
88 self.assertIsNone(result)
92 result = self.machinery.BuiltinImporter.is_package(util.BUILTINS.good_name)
93 self.assertFalse(result)
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dascii.h172 std::string result(s); in AsciiStrToLower()
173 absl::AsciiStrToLower(&result); in AsciiStrToLower()
174 return result; in AsciiStrToLower()
190 std::string result(s); in AsciiStrToUpper()
191 absl::AsciiStrToUpper(&result); in AsciiStrToUpper()
192 return result; in AsciiStrToUpper()
/third_party/rust/crates/nom/examples/
H A Dstring.rs38 // `preceded` takes a prefix parser, and if it succeeds, returns the result in parse_unicode()
43 // It returns the result of the middle parser. In this case, it parses in parse_unicode()
48 // `map_res` takes the result of a parser and applies a function that returns in parse_unicode()
67 // `alt` tries each parser in sequence, returning the result of in parse_escaped_char()
168 let result = parse_string::<()>(data); in main()
169 assert_eq!(result, Ok(("", String::from("abc")))); in main()
170 println!("Result: {}\n\n", result.unwrap().1); in main()
177 let result = parse_string::<()>(data); in main()
179 result, in main()
185 println!("Result:\n\n{}", result in main()
[all...]
/third_party/spirv-tools/test/opt/
H A Deliminate_dead_functions_test.cpp101 auto result = SinglePassRunAndDisassemble<EliminateDeadFunctionsPass>( in TEST_F() local
103 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
104 EXPECT_EQ(assembly, std::get<0>(result)); in TEST_F()
140 auto result = SinglePassRunAndDisassemble<EliminateDeadFunctionsPass>( in TEST_F() local
142 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
143 EXPECT_EQ(assembly, std::get<0>(result)); in TEST_F()
H A Dprivate_to_local_test.cpp201 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local
203 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
235 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local
237 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
450 auto result = SinglePassRunToBinary<PrivateToLocalPass>(text, true); in TEST_F() local
451 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
/third_party/glslang/glslang/CInterface/
H A Dglslang_c_interface.cpp92 glsl_include_result_t* result = variable
94 return makeIncludeResult(result);
104 glsl_include_result_t* result = variable
106 return makeIncludeResult(result);
114 virtual void releaseInclude(IncludeResult* result) override
116 if (result == nullptr)
120 this->callbacks.free_include_result(this->context, static_cast<glsl_include_result_t*>(result->userData));
123 delete result;
129 IncludeResult* makeIncludeResult(glsl_include_result_t* result) { in makeIncludeResult() argument
130 if (!result) { in makeIncludeResult()
[all...]
/third_party/alsa-lib/src/rawmidi/
H A Drawmidi_virt.c192 ssize_t result = 0; in snd_rawmidi_virtual_write() local
214 result += size1; in snd_rawmidi_virtual_write()
224 return result > 0 ? result : err; in snd_rawmidi_virtual_write()
228 if (result > 0) in snd_rawmidi_virtual_write()
231 return result; in snd_rawmidi_virtual_write()
237 ssize_t result = 0; in snd_rawmidi_virtual_read() local
243 if (err <= 0 && result > 0) in snd_rawmidi_virtual_read()
244 return result; in snd_rawmidi_virtual_read()
247 return result > in snd_rawmidi_virtual_read()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DLongNameHandler.java47 String result = strings[plural.ordinal()]; in getWithPlural()
48 if (result == null) { in getWithPlural()
49 result = strings[StandardPlural.OTHER.ordinal()]; in getWithPlural()
51 if (result == null) { in getWithPlural()
55 return result; in getWithPlural()
193 LongNameHandler result = new LongNameHandler(modifiers, rules, parent); in forCurrencyLongNames()
194 result.simpleFormatsToModifiers(simpleFormats, NumberFormat.Field.CURRENCY); in forCurrencyLongNames()
195 return result; in forCurrencyLongNames()
221 LongNameHandler result = new LongNameHandler(modifiers, rules, parent); in forMeasureUnit()
222 result in forMeasureUnit()
[all...]
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-parser-mem.c40 void *result; in parser_malloc() local
43 result = jmem_heap_alloc_block_null_on_error (size); in parser_malloc()
45 if (result == NULL) in parser_malloc()
49 return result; in parser_malloc()
71 void *result; in parser_malloc_local() local
74 result = jmem_heap_alloc_block (size); in parser_malloc_local()
75 if (result == 0) in parser_malloc_local()
79 return result; in parser_malloc_local()
236 void *result; in parser_list_append() local
258 result in parser_list_append()
308 void *result; parser_list_iterator_next() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dunits_data.cpp376 void U_I18N_API getAllConversionRates(MaybeStackVector<ConversionRateInfo> &result, UErrorCode &status) { in getAllConversionRates() argument
378 ConversionRateDataSink sink(&result); in getAllConversionRates()
399 CharString result; in getKeyWordValue() local
400 if (U_FAILURE(status)) { return result; } in getKeyWordValue()
402 CharStringByteSink sink(&result); in getKeyWordValue()
405 if (U_SUCCESS(status) && result.isEmpty()) { in getKeyWordValue()
408 return result; in getKeyWordValue()
415 MaybeStackVector<UnitPreference> result; in getPreferencesFor() local
434 result.emplaceBackAndCheckErrorCode(status, unitPref); in getPreferencesFor()
435 return result; in getPreferencesFor()
[all...]
/third_party/node/deps/v8/src/inspector/
H A Dstring-util.cc38 std::basic_string<UChar> result; in toBase64()
39 result.reserve(4 * ((size() + 2) / 3)); in toBase64()
43 result.push_back(table[split.first | last]); in toBase64()
47 result.push_back(table[split.second]); in toBase64()
53 result.push_back(table[last]); in toBase64()
54 while (result.size() % 4 > 0) result.push_back('='); in toBase64()
55 return String16(std::move(result)); in toBase64()
71 std::vector<uint8_t> result; in fromBase64() local
72 result in fromBase64()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_compositor_cs.c616 /* Make the result visible to all clients. */ in cs_launch()
626 struct u_rect result; in calc_drawn_area() local
634 result.x0 = tl.x * layer->viewport.scale[0] + layer->viewport.translate[0]; in calc_drawn_area()
635 result.y0 = tl.y * layer->viewport.scale[1] + layer->viewport.translate[1]; in calc_drawn_area()
636 result.x1 = br.x * layer->viewport.scale[0] + layer->viewport.translate[0]; in calc_drawn_area()
637 result.y1 = br.y * layer->viewport.scale[1] + layer->viewport.translate[1]; in calc_drawn_area()
640 result.x0 = MAX2(result.x0, s->scissor.minx); in calc_drawn_area()
641 result.y0 = MAX2(result in calc_drawn_area()
[all...]
/third_party/node/deps/undici/src/lib/fetch/
H A Dutil.js40 // 2. Let location be the result of extracting header list values given
44 // 3. If location is a header value, then set location to the result of
197 // 1. Let policy be the result of executing § 8.1 Parse a referrer policy
201 // 1. Let policy-tokens be the result of extracting header list values given `Referrer-Policy` and response’s header list.
276 // 1. Let serializedOrigin be the result of byte-serializing a request origin with request.
385 // 4. Let request’s referrerURL be the result of stripping referrerSource for
389 // 5. Let referrerOrigin be the result of stripping referrerSource for use as
393 // 6. If the result of serializing referrerURL is a string whose length is
541 // 1. Let parsedMetadata be the result of parsing metadataList.
557 // 5. Let metadata be the result o
[all...]

Completed in 18 milliseconds

1...<<101102103104105106107108109110>>...433