Home
last modified time | relevance | path

Searched refs:final_value (Results 1 – 6 of 6) sorted by relevance

/external/OpenCL-CTS/test_conformance/spirv_new/
Dtest_op_spec_constant.cpp23 T final_value, bool use_spec_constant) in run_case() argument
62 use_spec_constant ? reference = final_value : reference = init_buffer; in run_case()
75 T spec_constant_value, T final_value) in test_spec_constant() argument
97 spec_constant_value, final_value, false); in test_spec_constant()
99 spec_constant_value, final_value, true); in test_spec_constant()
116 type final_value = init_value + spec_constant_value; \
119 init_value, (type)spec_constant_value, final_value); \
141 cl_uchar final_value = value + 1; variable
144 init_value, 0, final_value);
153 cl_uchar final_value = value + 1; variable
[all …]
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_flags_test.cc28 static void TestFlag(T start_value, const char *env, T final_value) { in TestFlag() argument
36 EXPECT_EQ(final_value, flag); in TestFlag()
41 const char *final_value) { in TestFlag() argument
49 EXPECT_EQ(0, internal_strcmp(final_value, flag)); in TestFlag()
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_flags_test.cpp28 static void TestFlag(T start_value, const char *env, T final_value) { in TestFlag() argument
36 EXPECT_EQ(final_value, flag); in TestFlag()
44 const char *final_value) { in TestFlag() argument
52 EXPECT_EQ(0, internal_strcmp(final_value, flag)); in TestFlag()
/external/llvm-project/lldb/source/Core/
DValueObject.cpp2101 ValueObjectSP final_value = ret_val->Dereference(error); in GetValueForExpressionPath() local
2102 if (error.Fail() || !final_value.get()) { in GetValueForExpressionPath()
2112 return final_value; in GetValueForExpressionPath()
2118 ValueObjectSP final_value = ret_val->AddressOf(error); in GetValueForExpressionPath() local
2119 if (error.Fail() || !final_value.get()) { in GetValueForExpressionPath()
2129 return final_value; in GetValueForExpressionPath()
/external/rust/crates/rayon-core/src/sleep/
DREADME.md137 above, remembering the `final_value` of the JEC. It does one more search for work.
139 * Checks the JEC to see that it has not changed from `final_value`.
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis_test.cc139 Output final_value = ops::Const(root.WithOpName(prefix + "/final"), 10); in CreateInductionVariable() local
141 ops::Less(root.WithOpName(prefix + "/cond"), iv.output, final_value); in CreateInductionVariable()
155 root.graph()->AddControlEdge(iv.output.node(), final_value.node()); in CreateInductionVariable()