Home
last modified time | relevance | path

Searched refs:all_of (Results 1 – 25 of 194) sorted by relevance

12345678

/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/
Dall_of.pass.cpp34 return std::all_of(std::begin(ia), std::end(ia), test1()) in test_constexpr()
35 && !std::all_of(std::begin(ib), std::end(ib), test1()) in test_constexpr()
45 assert(std::all_of(input_iterator<const int*>(ia), in main()
47 assert(std::all_of(input_iterator<const int*>(ia), in main()
53 assert(std::all_of(input_iterator<const int*>(ia), in main()
55 assert(std::all_of(input_iterator<const int*>(ia), in main()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_mode_setting.cpp248 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
258 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
289 if (!std::all_of( in ValidateExecutionMode()
301 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
318 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
349 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
362 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
373 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_mode_setting.cpp248 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
258 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
289 if (!std::all_of( in ValidateExecutionMode()
301 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
318 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
349 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
362 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
373 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/
Dpartition_copy.pass.cpp39 return std::all_of(std::begin(r1), p.first, is_odd()) in test_constexpr()
40 && std::all_of(p.first, std::end(r1), [](int a){return a == 0;}) in test_constexpr()
42 && std::all_of(p.second, std::end(r2), [](int a){return a == 0;}) in test_constexpr()
/external/llvm/lib/Target/PowerPC/
DPPCBoolRetToInt.cpp134 if (!std::all_of(Users.begin(), Users.end(), IsValidUser) || in getPromotablePHINodes()
135 !std::all_of(Operands.begin(), Operands.end(), IsValidOperand)) in getPromotablePHINodes()
153 if (!std::all_of(Users.begin(), Users.end(), IsPromotable) || in getPromotablePHINodes()
154 !std::all_of(Operands.begin(), Operands.end(), IsPromotable)) in getPromotablePHINodes()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCBoolRetToInt.cpp151 if (!llvm::all_of(Users, IsValidUser) || in getPromotablePHINodes()
152 !llvm::all_of(Operands, IsValidOperand)) in getPromotablePHINodes()
170 if (!llvm::all_of(Users, IsPromotable) || in getPromotablePHINodes()
171 !llvm::all_of(Operands, IsPromotable)) in getPromotablePHINodes()
/external/libcxx/fuzzing/
Dfuzzing.cpp202 if (!std::all_of (working.begin(), iter, is_even<uint8_t>())) return 1; in partition()
221 if (!std::all_of (v1.begin(), v1.end(), is_even<uint8_t>())) return 2; in partition_copy()
256 if (!std::all_of (working.begin(), iter, is_even<stable_test>())) return 1; in stable_partition()
282 if (!std::all_of(working.begin(), partition_iter, [=](uint8_t v) { return v <= nth; })) in nth_element()
284 if (!std::all_of(partition_iter, working.end(), [=](uint8_t v) { return v >= nth; })) in nth_element()
305 if (!std::all_of(working.begin(), sort_iter, [=](uint8_t v) { return v <= nth; })) in partial_sort()
307 if (!std::all_of(sort_iter, working.end(), [=](uint8_t v) { return v >= nth; })) in partial_sort()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
DInstruction.cpp136 if (!llvm::all_of(Uses, [](const UniqueUse &Use) { return Use->isReady(); })) in update()
150 if (llvm::all_of(Defs, IsDefReady)) in update()
DCodeRegion.h122 return std::all_of(Regions.begin(), Regions.end(), in empty()
DScheduler.cpp152 return std::all_of(Desc.Resources.begin(), Desc.Resources.end(), in canBeIssued()
165 bool AllInOrderResources = all_of(Desc.Buffers, [&](uint64_t BufferMask) { in mustIssueImmediately()
/external/clang/lib/Sema/
DSemaCUDA.cpp378 if (!llvm::all_of(CD->inits(), [&](const CXXCtorInitializer *CI) { in isEmptyCudaConstructor()
417 if (!llvm::all_of(ClassDecl->bases(), [&](const CXXBaseSpecifier &BS) { in isEmptyCudaDestructor()
425 if (!llvm::all_of(ClassDecl->fields(), [&](const FieldDecl *Field) { in isEmptyCudaDestructor()
/external/libcxx/test/std/containers/sequences/vector/vector.cons/
Dassign_size_value.pass.cpp30 assert(std::all_of(v.begin(), v.end(), is6)); in test()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/
Dgenerate.pass.cpp36 return std::all_of(std::begin(ia), std::end(ia), [](int x) { return x == 1; }) in test_constexpr()
Dgenerate_n.pass.cpp44 && std::all_of(std::begin(ib), it, [](int x) { return x == 2; }) in test_constexpr()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/
Dfill.pass.cpp29 return std::all_of(std::begin(ia), std::end(ia), [](int a) {return a == 5; }) in test_constexpr()
/external/v8/src/interpreter/
Dbytecode-label.h72 std::all_of(labels_.begin(), labels_.end(), in is_bound()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/
Dremove_copy.pass.cpp32 && std::all_of (it, std::end(ib), [](int a) {return a == 0;}) in test_constexpr()
Dremove_copy_if.pass.cpp36 && std::all_of (it, std::end(ib), [](int a) {return a == 0;}) in test_constexpr()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DLoopInfo.cpp64 return all_of(I->operands(), [this](Value *V) { return isLoopInvariant(V); }); in hasLoopInvariantOperands()
178 return all_of(this->blocks(), [&](const BasicBlock *BB) { in isLCSSAForm()
187 return all_of(this->blocks(), [&](const BasicBlock *BB) { in isRecursivelyLCSSAForm()
/external/llvm/lib/CodeGen/
DImplicitNullChecks.cpp271 if (!all_of(MI->operands(), IsMIOperandSafe)) in isSafeToHoist()
463 all_of(Dependency->operands(), DependencyOperandIsOk); in analyzeBlockForNullChecks()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h351 bool all_of(R &&range, UnaryPredicate P);
387 return all_of(std::initializer_list<bool>{std::get<Ns>(this->iterators) != in test()
590 bool all_of(R &&Range, UnaryPredicate P) {
591 return std::all_of(std::begin(Range), std::end(Range), P);
/external/mesa3d/src/gallium/state_trackers/clover/api/
Dmemory.cpp173 if (all_of([=](const device &dev) { in clCreateImage()
188 if (all_of([=](const device &dev) { in clCreateImage()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dconstants.cpp217 if (!std::all_of(components.begin(), components.end(), in CreateConstant()
229 if (!std::all_of(components.begin(), components.end(), in CreateConstant()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dconstants.cpp217 if (!std::all_of(components.begin(), components.end(), in CreateConstant()
229 if (!std::all_of(components.begin(), components.end(), in CreateConstant()
/external/llvm/lib/Analysis/
DCodeMetrics.cpp48 if (!std::all_of(V->user_begin(), V->user_end(), in completeEphemeralValues()

12345678