/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | LLVMReactor.hpp | 26 __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 D | ReactorDebugInfo.cpp | 66 // 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 D | ui_util.c | 109 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 D | threads_win.c | 137 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 D | EVP_MD_demo.c | 82 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 D | GlyphGroup.java | 31 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 D | call_graph.cpp | 166 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 D | call_graph.cpp | 166 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 D | random_generator.cpp | 91 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 D | nfrs.h | 52 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 D | rbt.cpp | 239 // 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 D | zrule.h | 193 * @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 D | SkSLVariable.cpp | 81 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 D | GrOpListFlushTest.cpp | 17 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 D | mutator.cc | 46 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 D | test_helper.h | 96 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 D | generator_impl_if_test.cc | 36 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 D | generator_impl_if_test.cc | 36 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 D | test_helper.h | 94 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 D | generator_impl_if_test.cc | 37 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 D | generator_impl_literal_test.cc | 37 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 D | parse_perf_csvs.py | 36 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 D | call_graph.cpp | 166 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 D | ruleiter.cpp | 113 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 D | asyncArrowFunction11_es5.js | 16 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|