/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/detail/ |
D | func_vector_relational.hpp | 4 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 6 /// @defgroup core_func_vector_relational Vector Relational Functions 9 /// Relational and equality operators (<, <=, >, >=, ==, !=) are defined to 31 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 40 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 49 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 58 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 67 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 76 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 85 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> [all …]
|
/aosp_15_r20/external/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | func_vector_relational.hpp | 4 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 6 /// @defgroup core_func_vector_relational Vector Relational Functions 9 /// Relational and equality operators (<, <=, >, >=, ==, !=) are defined to 31 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 40 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 49 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 58 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 67 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 76 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> 85 …/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a> [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/SPIRV/ |
H A D | SPIRVBuiltins.td | 38 def Relational : BuiltinGroup; 462 // Relational builtin records: 463 defm : DemangledNativeBuiltin<"isequal", OpenCL_std, Relational, 2, 2, OpFOrdEqual>; 464 defm : DemangledNativeBuiltin<"__spirv_FOrdEqual", OpenCL_std, Relational, 2, 2, OpFOrdEqual>; 465 defm : DemangledNativeBuiltin<"isnotequal", OpenCL_std, Relational, 2, 2, OpFUnordNotEqual>; 466 defm : DemangledNativeBuiltin<"__spirv_FUnordNotEqual", OpenCL_std, Relational, 2, 2, OpFUnordNotEq… 467 defm : DemangledNativeBuiltin<"isgreater", OpenCL_std, Relational, 2, 2, OpFOrdGreaterThan>; 468 defm : DemangledNativeBuiltin<"__spirv_FOrdGreaterThan", OpenCL_std, Relational, 2, 2, OpFOrdGreate… 469 defm : DemangledNativeBuiltin<"isgreaterequal", OpenCL_std, Relational, 2, 2, OpFOrdGreaterThanEqua… 470 defm : DemangledNativeBuiltin<"__spirv_FOrdGreaterThanEqual", OpenCL_std, Relational, 2, 2, OpFOrdG… [all …]
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | warn-unused-comparison.cpp | 22 x < 7; // expected-warning {{relational comparison result unused}} in test() 23 x > 7; // expected-warning {{relational comparison result unused}} in test() 24 x <= 7; // expected-warning {{relational comparison result unused}} in test() 25 x >= 7; // expected-warning {{relational comparison result unused}} in test() 37 a < b; // expected-warning {{relational comparison result unused}} in test() 38 a > b; // expected-warning {{relational comparison result unused}} in test() 39 a <= b; // expected-warning {{relational comparison result unused}} in test() 40 a >= b; // expected-warning {{relational comparison result unused}} in test() 121 cout < cin; // expected-warning {{relational comparison result unused}} in test()
|
/aosp_15_r20/external/clang/test/Sema/ |
H A D | unused-expr.c | 10 VP < P; // expected-warning {{relational comparison result unused}} in bar() 14 A < foo(1, 2); // expected-warning {{relational comparison result unused}} in bar() 57 b < 1; // expected-warning{{relational comparison result unused}} in t4() 59 b < 2; // expected-warning{{relational comparison result unused}} in t4() 62 b < 3; // expected-warning{{relational comparison result unused}} in t4() 65 b < 4; // expected-warning{{relational comparison result unused}} in t4() 69 b < 5; // expected-warning{{relational comparison result unused}} in t4() 71 for (b < 1;;) {} // expected-warning{{relational comparison result unused}} in t4() 73 for (;;b < 1) {} // expected-warning{{relational comparison result unused}} in t4()
|
/aosp_15_r20/art/compiler/linker/ |
H A D | linker_patch.h | 335 uint32_t cmp1_; // Used for relational operators. 344 static_assert(sizeof(method_idx_) == sizeof(cmp1_), "needed by relational operators"); 345 static_assert(sizeof(type_idx_) == sizeof(cmp1_), "needed by relational operators"); 346 static_assert(sizeof(string_idx_) == sizeof(cmp1_), "needed by relational operators"); 347 static_assert(sizeof(proto_idx_) == sizeof(cmp1_), "needed by relational operators"); 348 static_assert(sizeof(intrinsic_data_) == sizeof(cmp1_), "needed by relational operators"); 349 static_assert(sizeof(baker_custom_value1_) == sizeof(cmp1_), "needed by relational operators"); 354 size_t cmp2_; // Used for relational operators. 359 static_assert(sizeof(pc_insn_offset_) <= sizeof(cmp2_), "needed by relational operators"); 360 static_assert(sizeof(baker_custom_value2_) <= sizeof(cmp2_), "needed by relational operators");
|
/aosp_15_r20/external/turbine/java/com/google/turbine/tree/ |
H A D | TurbineOperatorKind.java | 40 LESS_THAN("<", Precedence.RELATIONAL), 41 GREATER_THAN(">", Precedence.RELATIONAL), 42 GREATER_THAN_EQ(">=", Precedence.RELATIONAL), 43 LESS_THAN_EQ("<=", Precedence.RELATIONAL), 44 INSTANCE_OF("instanceof", Precedence.RELATIONAL), 80 RELATIONAL(8), enumConstant
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/optional/doc/ |
D | 11_development.qbk | 75 * [*deep-relational] semantics: comparisons between variants matches both 88 * [*deep-relational] semantics: comparisons between containers compare container 130 * [*Deep Relational Operations (when supported by the type T):] To compare 164 copy-construction, assignment, swap and relational operations. 240 particularly because the semantics of relational operators are different: 241 since `optional<T>` is a value-wrapper, relational operators are deep: they 242 compare optional values; but relational operators for pointers are shallow: 246 you cannot use relational operators directly, and must use the template
|
D | 92_acknowledgments.qbk | 39 relational operators. 41 focused on the relational semantics of optional (originally undefined); 43 pointer so it shall have deep relational operators. 44 * Augustus Saunders also explored the different relational semantics between
|
/aosp_15_r20/external/clang/test/OpenMP/ |
H A D | simd_loop_messages.cpp | 84 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 89 …// expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 95 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 100 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 105 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 156 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 405 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_with_random_access_iterator() 409 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_with_random_access_iterator() 413 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_with_random_access_iterator()
|
H A D | target_parallel_for_loop_messages.cpp | 93 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 98 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 104 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 109 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 114 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 165 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 417 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 421 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 425 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | target_parallel_for_simd_loop_messages.cpp | 93 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 98 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 104 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 109 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 114 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 165 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 417 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 421 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 425 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | parallel_for_loop_messages.cpp | 93 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 98 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 104 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 109 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 114 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 165 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 417 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 421 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 425 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | taskloop_simd_loop_messages.cpp | 114 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 120 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 127 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 133 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 139 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 200 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 503 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 508 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 513 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | parallel_for_simd_loop_messages.cpp | 93 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 98 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 104 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 109 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 114 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 165 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 418 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 422 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 426 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | distribute_simd_loop_messages.cpp | 116 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 123 …// expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 131 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 138 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 145 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_iteration_spaces() 216 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 535 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_with_random_access_iterator() 541 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_with_random_access_iterator() 547 …// expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>… in test_with_random_access_iterator()
|
H A D | for_simd_loop_messages.cpp | 109 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 115 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 122 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 128 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 134 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 195 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 483 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 488 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 493 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | taskloop_loop_messages.cpp | 114 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 120 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 127 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 133 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 139 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 200 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 502 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 507 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 512 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | for_loop_messages.cpp | 114 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 120 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 127 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 133 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 139 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 200 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 514 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 519 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 524 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
H A D | distribute_parallel_for_simd_loop_messages.cpp | 125 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 132 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 140 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 147 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 154 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_iteration_spaces() 225 // expected-warning@+3 {{relational comparison result unused}} in test_iteration_spaces() 544 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 550 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator() 556 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>'… in test_with_random_access_iterator()
|
/aosp_15_r20/external/google-cloud-java/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ |
H A D | ExamplePayload.java | 279 * Example relational table row. 294 * Example relational table row. 312 * Example relational table row. 1441 * Example relational table row. 1456 * Example relational table row. 1481 * Example relational table row. 1503 * Example relational table row. 1522 * Example relational table row. 1554 * Example relational table row. 1579 * Example relational table row. [all …]
|
/aosp_15_r20/external/one-true-awk/ |
H A D | awk.1 | 379 relational expressions. 387 relational expressions, using the operators 402 A relational expression is one of the following: 414 is any of the six relational operators in C, 424 a relational expression,
|
/aosp_15_r20/external/aws-sdk-java-v2/changelogs/ |
H A D | 2.18.x-CHANGELOG.md | 148 ## __Amazon Relational Database Service__ 185 ## __Amazon Relational Database Service__ 285 ## __Amazon Relational Database Service__ 312 ## __Amazon Relational Database Service__ 576 ## __Amazon Relational Database Service__ 845 ## __Amazon Relational Database Service__ 903 ## __Amazon Relational Database Service__ 1145 ## __Amazon Relational Database Service__ 1147 …- Relational Database Service - This release adds support for configuring Storage Throughput on RD… 1302 ## __Amazon Relational Database Service__ [all …]
|
H A D | 2.20.x-CHANGELOG.md | 39 ## __Amazon Relational Database Service__ 139 ## __Amazon Relational Database Service__ 661 ## __Amazon Relational Database Service__ 902 ## __Amazon Relational Database Service__ 952 ## __Amazon Relational Database Service__ 973 ## __Amazon Relational Database Service__ 1309 ## __Amazon Relational Database Service__ 1346 ## __Amazon Relational Database Service__ 1511 ## __Amazon Relational Database Service__ 1569 ## __Amazon Relational Database Service__ [all …]
|
/aosp_15_r20/external/llvm/include/llvm/ADT/ |
H A D | iterator.h | 119 "Relational operators are only defined for random access iterators."); 126 "Relational operators are only defined for random access iterators."); 132 "Relational operators are only defined for random access iterators."); 228 "Relational operators are only defined for random access iterators.");
|