Home
last modified time | relevance | path

Searched refs:result (Results 7401 - 7425 of 19589) sorted by relevance

1...<<291292293294295296297298299300>>...784

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactor.hpp26 __pragma(warning(disable : 4146)) // unary minus operator applied to unsigned type, result still unsigned
70 std::vector<llvm::Value *> result; in V() local
71 result.reserve(values.size()); in V()
74 result.push_back(V(v)); in V()
76 return result; in V()
H A DReactorDebugInfo.cpp66 // all debug info emits are the result of a function call. Note that technically we shouldn't in getCallerBacktrace()
70 std::vector<bs::frame> result; in getCallerBacktrace()
71 result.reserve(st.size()); in getCallerBacktrace()
75 result.emplace_back(reinterpret_cast<void *>(reinterpret_cast<size_t>(frame.address()) - 1)); in getCallerBacktrace()
78 return result; in getCallerBacktrace()
/third_party/openssl/crypto/ui/
H A Dui_util.c109 char result[PEM_BUFSIZE + 1]; /* reserve one byte at the end */ in ui_read() local
116 len = data->cb(result, maxsize, data->rwflag, in ui_read()
121 result[len] = '\0'; in ui_read()
124 if (UI_set_result_ex(ui, uis, result, len) >= 0) in ui_read()
/third_party/openssl/crypto/
H A Dthreads_win.c137 LONG result; in CRYPTO_THREAD_run_once() local
143 result = InterlockedCompareExchange(lock, ONCE_ININIT, ONCE_UNINITED); in CRYPTO_THREAD_run_once()
144 if (result == ONCE_UNINITED) { in CRYPTO_THREAD_run_once()
149 } while (result == ONCE_ININIT); in CRYPTO_THREAD_run_once()
/third_party/openssl/demos/digest/
H A DEVP_MD_demo.c82 int result = 0; in demonstrate_digest() local
164 result = 1; in demonstrate_digest()
169 if (result != 1) in demonstrate_digest()
177 return result; in demonstrate_digest()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
H A DGlyphGroup.java31 GlyphGroup result = new GlyphGroup(); in inverseGlyphGroup()
33 result.or(glyphGroup); in inverseGlyphGroup()
35 result.inverse = true; in inverseGlyphGroup()
36 return result; in inverseGlyphGroup()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dcall_graph.cpp166 std::set<uint32_t> result; in GetIndirectCallees() local
173 if (result.count(next)) { in GetIndirectCallees()
176 result.insert(next); in GetIndirectCallees()
179 return result; in GetIndirectCallees()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dcall_graph.cpp166 std::set<uint32_t> result; in GetIndirectCallees() local
173 if (result.count(next)) { in GetIndirectCallees()
176 result.insert(next); in GetIndirectCallees()
179 return result; in GetIndirectCallees()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/
H A Drandom_generator.cpp91 spv_target_env result;
95 result = static_cast<spv_target_env>(
97 } while (!spvIsValidEnv(result));
99 return result;
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnfrs.h52 void getName(UnicodeString& result) const { result.setTo(name); } in getName()
58 UBool parse(const UnicodeString& text, ParsePosition& pos, double upperBound, uint32_t nonNumericalExecutedRuleMask, Formattable& result) const;
60 void appendRules(UnicodeString& result) const; // toString
H A Drbt.cpp239 // A Complication: compound transliterators can result in recursive entries to this in handleTransliterate()
294 void RuleBasedTransliterator::handleGetSourceSet(UnicodeSet& result) const { in handleGetSourceSet()
295 fData->ruleSet.getSourceTargetSet(result, FALSE); in handleGetSourceSet()
301 UnicodeSet& RuleBasedTransliterator::getTargetSet(UnicodeSet& result) const { in getTargetSet()
302 return fData->ruleSet.getSourceTargetSet(result, TRUE); in getTargetSet()
H A Dzrule.h193 * @param result Receives the very first time when this rule takes effect.
195 * "result" is unchanged.
199 UDate& result);
208 * @param result Receives the final time when this rule takes effect.
210 * "result" is unchanged.
214 UDate& result);
225 * @param result Receives The first time when this rule takes effect after
228 * "result" is unchanged.
232 int32_t prevDSTSavings, UBool inclusive, UDate& result);
243 * @param result Receive
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLVariable.cpp81 ScratchVariable result; in MakeScratchVariable() local
96 result.fVarDecl = VarDeclaration::Make(context, var.get(), type, arraySize, in MakeScratchVariable()
98 result.fVarSymbol = symbolTable->add(std::move(var)); in MakeScratchVariable()
99 return result; in MakeScratchVariable()
/third_party/skia/tests/
H A DGrOpListFlushTest.cpp17 bool result = true; in check_read() local
18 for (int x = 0; x < 1000 && result; ++x) { in check_read()
23 result = false; in check_read()
26 return result; in check_read()
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/
H A Dmutator.cc46 MutationFinderList result; in CreateMutationFinders() local
49 enable_all_mutations, probability_context, &result); in CreateMutationFinders()
50 } while (result.empty()); in CreateMutationFinders()
51 return result; in CreateMutationFinders()
/third_party/skia/third_party/externals/tint/src/transform/
H A Dtest_helper.h96 auto result = writer::wgsl::Generate(&output.program, options); in str() local
97 if (!result.success) { in str()
98 return "WGSL writer failed:\n" + result.error; in str()
101 auto res = result.wgsl; in str()
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl_if_test.cc36 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
61 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
88 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
120 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_if_test.cc36 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
61 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
88 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
120 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
H A Dtest_helper.h94 auto result = local
97 ASSERT_TRUE(result.program.IsValid())
98 << formatter.format(result.program.Diagnostics());
100 *program = std::move(result.program);
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl_if_test.cc37 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
62 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
87 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
119 EXPECT_EQ(gen.result(), R"( if (cond) { in TEST_F()
H A Dgenerator_impl_literal_test.cc37 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/skottie-wasm-perf/
H A Dparse_perf_csvs.py36 result = p.search(v[0])
37 test_name = result.group(1)
58 result = {
64 test_to_result[test1] = result
/third_party/spirv-tools/source/fuzz/
H A Dcall_graph.cpp166 std::set<uint32_t> result; in GetIndirectCallees() local
173 if (result.count(next)) { in GetIndirectCallees()
176 result.insert(next); in GetIndirectCallees()
179 return result; in GetIndirectCallees()
/third_party/skia/third_party/externals/icu/source/common/
H A Druleiter.cpp113 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { in lookahead() argument
118 buf->extract(bufPos, maxLookAhead, result); in lookahead()
120 text.extract(pos.getIndex(), maxLookAhead, result); in lookahead()
122 return result; in lookahead()
130 UnicodeString& RuleCharacterIterator::toString(UnicodeString& result) const {
132 text.extract(0, b, result);
133 return result.append((UChar) 0x7C).append(text, b, 0x7FFFFFFF); // Insert '|' at index
/third_party/typescript/tests/baselines/reference/
H A DasyncArrowFunction11_es5.js16 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }

Completed in 15 milliseconds

1...<<291292293294295296297298299300>>...784