/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | ArgumentPromotion.cpp | 505 /// that is greater than or equal to the size of prefix, and each of the 508 /// This means it also returns true when Prefix and Longer are equal! 512 return std::equal(Prefix.begin(), Prefix.end(), Longer.begin()); in isPrefix() 522 // Low is now the last element smaller than or equal to Indices. This means in prefixIn() 542 // Low is now the last element smaller than or equal to Indices. This in markIndicesSafe() 783 // If the alloc size is not equal to the storage size, then there are padding in isDenselyPacked()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | SmallVector.h | 292 // invalid for memcpy if they are equal. in uninitialized_copy() 655 return std::equal(this->begin(), this->end(), RHS.begin()); in operator ==()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | btree_container.h | 154 // (i.e. not equal to end()). Return an iterator pointing to the node after 191 return std::equal(x.begin(), x.end(), y.begin()); in operator ==()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | span_test.cc | 194 EXPECT_TRUE(absl::equal(s.begin(), s.end(), v.begin(), v.end())); in TestInitializerList() 470 // have the same elements (right now). They should compare equal. Test both in TEST() 480 // considered not equal. Test both == and !=. in TEST() 485 // Comparison between a vector and its slice should be equal. And vice-versa. in TEST() 501 // Comparison between a vector and its slice should be equal for mutable in TEST() 523 // With a different size, the array slices should not be equal. in TEST() 526 // With different contents, the array slices should not be equal. in TEST()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderStructTests.cpp | 1983 UNIFORM_STRUCT_CASE(equal, "Struct equality", false, in init()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
H A D | vktShaderRenderStructTests.cpp | 1970 UNIFORM_STRUCT_CASE(equal, "Struct equality", in init()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCommandLine.cpp | 722 std::equal(ending.rbegin(), ending.rend(), line.rbegin()); in parseCaseList()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fShaderStructTests.cpp | 2031 UNIFORM_STRUCT_CASE(equal, "Struct equality", 0, in init()
|
/third_party/skia/third_party/externals/angle2/src/common/spirv/ |
H A D | spirv_instruction_builder_autogen.h | 692 IdMemorySemantics equal,
|
H A D | spirv_instruction_parser_autogen.h | 823 IdMemorySemantics *equal,
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/pm/powerplay/ |
H A D | si_dpm.c | 7939 bool *equal) in si_check_state_equal() 7948 if (adev == NULL || cps == NULL || rps == NULL || equal == NULL) in si_check_state_equal() 7956 *equal = false; in si_check_state_equal() 7961 *equal = false; in si_check_state_equal() 7968 *equal = false; in si_check_state_equal() 7974 *equal = ((cps->vclk == rps->vclk) && (cps->dclk == rps->dclk)); in si_check_state_equal() 7975 *equal &= ((cps->evclk == rps->evclk) && (cps->ecclk == rps->ecclk)); in si_check_state_equal() 7936 si_check_state_equal(void *handle, void *current_ps, void *request_ps, bool *equal) si_check_state_equal() argument
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/pm/legacy-dpm/ |
H A D | si_dpm.c | 7965 bool *equal) in si_check_state_equal() 7974 if (adev == NULL || cps == NULL || rps == NULL || equal == NULL) in si_check_state_equal() 7982 *equal = false; in si_check_state_equal() 7987 *equal = false; in si_check_state_equal() 7994 *equal = false; in si_check_state_equal() 8000 *equal = ((cps->vclk == rps->vclk) && (cps->dclk == rps->dclk)); in si_check_state_equal() 8001 *equal &= ((cps->evclk == rps->evclk) && (cps->ecclk == rps->ecclk)); in si_check_state_equal() 7962 si_check_state_equal(void *handle, void *current_ps, void *request_ps, bool *equal) si_check_state_equal() argument
|
/test/xts/acts/arkui/ace_napi_test/entry/src/main/cpp/napi/ |
H A D | napi_test.cpp | 449 "refValue expect equal to 666."); in getAndDeleteReference() 467 "resultRefCount expect equal to 2"); in referenceRefAndUnref() 470 "resultRefCount expect equal to 1."); in referenceRefAndUnref() 528 NAPI_ASSERT(env, array_length == 2, "array_length expect equal to 2"); in getArrayWithLength() 551 NAPI_ASSERT(env, tempExternal != nullptr, "tempExternal expect not equal to nullptr"); in createExternal() 552 NAPI_ASSERT(env, tempExternal == testStr, "tempExternal expect equal to testStr"); in createExternal() 2633 NAPI_ASSERT(env, valueType == napi_function, "valueType expect equal to napi_function"); in ThreadSafeTest() 3609 bool equal = false; in CreateObjectWithProperties() 3610 napi_strict_equals(env, result, expect, &equal); in CreateObjectWithProperties() 3611 return equal; in CreateObjectWithProperties() [all...] |
/third_party/node/deps/ada/ |
H A D | ada.h | 1060 // std::equal is constexpr in C++20 in begins_with() 1062 std::equal(prefix.begin(), prefix.end(), view.begin()); in begins_with() 5002 * - its length is greater than or equal to 2 6886 auto equal = current.find('='); in initialize() 6888 if (equal == std::string_view::npos) { in initialize() 6893 auto name = std::string(current.substr(0, equal)); in initialize() 6894 auto value = std::string(current.substr(equal + 1)); in initialize()
|
/third_party/node/deps/v8/src/wasm/baseline/ia32/ |
H A D | liftoff-assembler-ia32.h | 30 return equal; in ToCondition() 1388 assm->j(equal, trap_div_unrepresentable); in EmitInt32DivOrRem() 2266 // equal. in EmitTruncateFloatToInt() 2314 __ j(equal, &done); in EmitSatTruncateFloatToInt() 2523 liftoff::setcc_32(this, equal, dst); in emit_i32_eqz() 2536 // register. Then check whether the result is equal to zero. in emit_i64_eqz() 2543 liftoff::setcc_32(this, equal, dst); in emit_i64_eqz() 2580 // equal, compare the low word and use that for setcc. in emit_i64_set_cond()
|
/third_party/node/deps/v8/src/wasm/baseline/x64/ |
H A D | liftoff-assembler-x64.h | 31 return equal; in ToCondition() 1865 // equal. in EmitTruncateFloatToInt() 1909 __ j(equal, &done); in EmitSatTruncateFloatToInt() 2180 setcc(equal, dst); in emit_i32_eqz() 2195 setcc(equal, dst); in emit_i64_eqz() 2382 assm->setcc(equal, dst.gp()); in EmitAllTrue()
|
/third_party/mesa3d/src/imgui/ |
H A D | imstb_truetype.h | 961 // is greater than or equal to 180/255. (You'll actually want to antialias, 4292 static int equal(float *a, float *b) 4341 if (equal(q0,q1) || equal(q1,q2)) {
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | OutputASM.cpp | 853 Temporary equal(this); in visitBinary() 854 emit(sw::Shader::OPCODE_EQ, &equal, 0, left, index, right, index); in visitBinary() 855 emit(sw::Shader::OPCODE_AND, result, result, &equal); in visitBinary() 3260 mContext.error(fragmentOutput->getLine(), "Fragment output location larger or equal to MAX_DRAW_BUFFERS", "fragment shader"); in declareFragmentOutput()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imstb_truetype.h | 961 // is greater than or equal to 180/255. (You'll actually want to antialias, 4292 static int equal(float *a, float *b) 4341 if (equal(q0,q1) || equal(q1,q2)) {
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cGPUShaderFP64Tests.cpp | 1493 /* Major is equal to required one */ in isGLVersionAtLeast() 1494 /* Minor is higher than or equal to required one */ in isGLVersionAtLeast() 1499 /* Major is equal to required one */ in isGLVersionAtLeast() 2202 * equal to -1. in iterate() 11914 m_testCtx.getLog() << tcu::TestLog::Message << "Values reported for lower-than-or-equal operator used for " in verifyXFBData() 11953 << "Values reported for greater-than-or-equal operator used for " in verifyXFBData() 12167 static tcu::Vector<glw::GLuint, Size> equal(const tcu::Vector<glw::GLdouble, Size>& left, 12397 static tcu::Vector<glw::GLuint, Size> equal(const tcu::Vector<glw::GLdouble, Size>& left, in equal() function 12400 return convertBvecToUvec(tcu::equal(left, right)); in equal() 12770 * - equal(); [all...] |
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_data_mgr_test/ |
H A D | bms_data_mgr_test.cpp | 965 bool equal = (element2 == element1); in HWTEST_F() local 966 EXPECT_TRUE(equal); in HWTEST_F() 1581 * @tc.desc: 1. ModifyLauncherAbilityInfo, labelId is equal 0 1603 * @tc.desc: 1. ModifyLauncherAbilityInfo, labelId is not equal 0 1625 * @tc.desc: 1. ModifyLauncherAbilityInfo, labelId is equal 0 1648 * @tc.desc: 1. ModifyLauncherAbilityInfo, labelId is not equal 0 1670 * @tc.desc: 1. ModifyLauncherAbilityInfo, iconId is equal 0 1690 * @tc.desc: 1. ModifyLauncherAbilityInfo, iconId is not equal 0 1708 * @tc.desc: 1. ModifyLauncherAbilityInfo, iconId is equal 0 1731 * @tc.desc: 1. ModifyLauncherAbilityInfo, iconId is not equal [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | sort.c | 1927 hse->hpp.equal = __sort__hpp_equal; in __sort_dimension__alloc_hpp() 2276 hde->hpp.equal = __sort__hde_equal; in __alloc_dynamic_entry()
|
/kernel/linux/linux-5.10/drivers/media/v4l2-core/ |
H A D | v4l2-ctrls.c | 2022 .equal = std_equal, 2255 ctrl_changed = !ctrl->type_ops->equal(ctrl, idx, in cluster_changed() 3499 of struct v4l2_ext_controls: if that is equal to the count field then no
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | sort.c | 2432 hse->hpp.equal = __sort__hpp_equal; in __sort_dimension__alloc_hpp() 2801 hde->hpp.equal = __sort__hde_equal; in __alloc_dynamic_entry()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.h | 66 equal = 4, enumerator 82 zero = equal,
|