Home
last modified time | relevance | path

Searched refs:result (Results 4851 - 4875 of 11971) sorted by relevance

1...<<191192193194195196197198199200>>...479

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineClearUtil.cpp52 const tcu::IVec4 result ((deInt32)deFloatRound(color.x()), (deInt32)deFloatRound(color.y()), in defaultClearColorInt()
55 return result; in defaultClearColorInt()
63 const tcu::UVec4 result ((deUint32)deFloatRound(color.x()), (deUint32)deFloatRound(color.y()), in defaultClearColorUint()
66 return result; in defaultClearColorUint()
/third_party/skia/third_party/externals/angle2/src/common/
H A Dsystem_utils_win.cpp57 DWORD result = GetCurrentDirectoryA(static_cast<DWORD>(pathBuf.size()), pathBuf.data()); in GetCWD() local
58 if (result == 0) in GetCWD()
121 BOOL result = GetFileAttributesExA(filename, GetFileExInfoStandard, &fileInformation); in IsDirectory() local
122 if (result) in IsDirectory()
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcShaderMacroTests.cpp76 int result = 0; in iterate() local
77 void* const outputs = &result; in iterate()
80 if (m_expectedOutput == result) in iterate()
87 << " but test returned: " << result << tcu::TestLog::EndMessage; in iterate()
/third_party/skia/third_party/externals/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/src/core/
H A DSkDrawShadowInfo.h47 float result = SkTPin(sk_ieee_float_divide(numer, denom), min, max); in divide_and_pin() local
49 SkASSERT(result >= min && result <= max); in divide_and_pin()
50 return result; in divide_and_pin()
/third_party/skia/src/gpu/d3d/
H A DGrD3DUtil.h18 HRESULT result = X; \
19 SkASSERT(SUCCEEDED(result)); \
20 if (!SUCCEEDED(result)) { \
21 SkDebugf("Failed Direct3D call. Error: 0x%08lx\n", result); \
/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);

Completed in 12 milliseconds

1...<<191192193194195196197198199200>>...479