Home
last modified time | relevance | path

Searched refs:bool2 (Results 1 – 16 of 16) sorted by relevance

/external/eigen/unsupported/test/
Dcxx11_tensor_expr.cpp209 Tensor<bool, 1> bool2 = vec.cast<bool>() && vec < vec.constant(4); in test_boolean() local
210 VERIFY_IS_EQUAL(bool2[0], false); in test_boolean()
211 VERIFY_IS_EQUAL(bool2[1], true); in test_boolean()
212 VERIFY_IS_EQUAL(bool2[2], true); in test_boolean()
213 VERIFY_IS_EQUAL(bool2[3], true); in test_boolean()
214 VERIFY_IS_EQUAL(bool2[4], false); in test_boolean()
215 VERIFY_IS_EQUAL(bool2[5], false); in test_boolean()
221 Tensor<bool, 1> bool3 = vec.cast<bool>() && bool2; in test_boolean()
222 bool3 = vec < vec.constant(4) && bool2; in test_boolean()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/micromips-sizereduction/
Dmicromips-xor16.ll12 %bool2 = icmp eq i32 %bool1.ext, %reg2
13 ret i1 %bool2
/external/deqp-deps/glslang/Test/
Dhlsl.conditional.frag21 float2 fbSelect(bool2 cnd, float2 src0, float2 src1)
41 float4(fbSelect(bool2(true, false), float2(1.0, 2.0), float2(3.0, 4.0)), 10.0, 10.0);
Dhlsl.intrinsics.promote.down.frag12 bool2 b2;
Dhlsl.intrinsics.promote.outputs.frag12 bool2 b2;
Dhlsl.templatetypes.frag13 vector<bool, 2> r20 = bool2(false, true);
Dremap.hlsl.templatetypes.none.frag13 vector<bool, 2> r20 = bool2(false, true);
Dremap.hlsl.templatetypes.everything.frag13 vector<bool, 2> r20 = bool2(false, true);
Dhlsl.intrinsics.promote.frag12 bool2 b2;
Dhlsl.intrinsics.frag142 bool2 r039 = isinf(inF0);
143 bool2 r040 = isnan(inF0);
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dtail-dup-analyzable-fallthrough.ll16 define void @__fmax_double3_3D_exec(<2 x double>* %input6, i1 %bool1, i1 %bool2) #0 {
25 br i1 %bool2, label %if.then, label %do.end
/external/libchrome/ipc/
Dipc_sync_message_unittest.cc251 bool bool2 = true; in TEST() local
252 Send(new Msg_C_3_4(true, 3, "3_4", &int1, &bool1, &string1, &bool2)); in TEST()
256 DCHECK(!bool2); in TEST()
/external/libbrillo/brillo/
Dflag_helper_unittest.cc28 DEFINE_bool(bool2, false, "Test bool flag"); in TEST_F()
71 DEFINE_bool(bool2, true, "Test bool flag"); in TEST_F()
135 DEFINE_bool(bool2, true, "Test bool flag"); in TEST_F()
/external/shflags/src/
Dshflags_test_parsing.sh59 DEFINE_boolean bool2 true '2nd boolean' B
/external/libchrome/base/
Dvalues_unittest.cc1242 Value bool2(true); in TEST() local
1243 EXPECT_FALSE(bool1 == bool2); in TEST()
1244 EXPECT_NE(bool1, bool2); in TEST()
1245 EXPECT_LT(bool1, bool2); in TEST()
1246 EXPECT_FALSE(bool1 > bool2); in TEST()
1247 EXPECT_LE(bool1, bool2); in TEST()
1248 EXPECT_FALSE(bool1 >= bool2); in TEST()
/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/issue_samples/
Dissue1003.java.txt303 boolean bool2;
309 bool2 = false;
314 bool2 = true;
323 return bool2;
328 label313: if (bool2)