/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/ |
D | any_of.pass.cpp | 34 return std::any_of(std::begin(ia), std::end(ia), test1()) in test_constexpr() 35 && !std::any_of(std::begin(ib), std::end(ib), test1()) in test_constexpr() 45 assert(std::any_of(input_iterator<const int*>(ia), in main() 47 assert(std::any_of(input_iterator<const int*>(ia), in main() 53 assert(std::any_of(input_iterator<const int*>(ia), in main() 55 assert(std::any_of(input_iterator<const int*>(ia), in main() 61 assert(std::any_of(input_iterator<const int*>(ia), in main() 63 assert(std::any_of(input_iterator<const int*>(ia), in main()
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | kernel.cpp | 208 any_of([&](const event &ev) { in validate_common() 213 if (any_of([](kernel::argument &arg) { in validate_common() 221 if (!any_of(type_equals(module::section::text_executable), m.secs)) in validate_common() 233 if (!d_grid_size || any_of(is_zero(), grid_size)) in validate_grid_size() 257 if (any_of(is_zero(), block_size) || in validate_block_size() 258 any_of(greater(), block_size, q.device().max_block_size())) in validate_block_size() 261 if (any_of(modulus(), grid_size, block_size)) in validate_block_size()
|
D | program.cpp | 43 if (any_of([&](const device &dev) { in validate_build_common() 58 any_of(is_zero(), range(strings, count))) in clCreateProgramWithSource() 88 if (any_of([&](const device &dev) { in clCreateProgramWithBinary() 116 if (any_of(key_equals(CL_INVALID_VALUE), result)) in clCreateProgramWithBinary() 119 if (any_of(key_equals(CL_INVALID_BINARY), result)) in clCreateProgramWithBinary() 139 if (any_of([&](const device &dev) { in clCreateProgramWithBuiltInKernels() 223 if (!any_of(key_equals(name), headers)) in clCompileProgram() 265 else if (any_of(has_binary, progs)) in validate_link_devices()
|
D | transfer.cpp | 57 if (any_of(is_zero(), region)) in size() 69 if (any_of([&](const event &ev) { in validate_common() 85 if (any_of(greater(), map(multiplies(), pitch, region), tail(pitch))) in validate_object() 92 if (any_of(is_zero(), region)) in validate_object() 110 if (any_of(greater(), orig + region, size)) in validate_object() 113 if (any_of(is_zero(), region)) in validate_object() 127 if (any_of(greater(), map(multiplies(), pitch, region), tail(pitch))) in validate_object()
|
D | sampler.cpp | 34 if (!any_of(std::mem_fn(&device::image_support), ctx.devices())) in clCreateSampler()
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
D | program.cpp | 113 if (any_of(type_equals(module::section::text_intermediate), binary.secs)) in binary_type() 115 else if (any_of(type_equals(module::section::text_library), binary.secs)) in binary_type() 117 else if (any_of(type_equals(module::section::text_executable), binary.secs)) in binary_type()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_function.cpp | 129 bool foundAliased = std::any_of( in ValidateFunctionParameter() 134 bool foundRestrict = std::any_of( in ValidateFunctionParameter() 161 bool foundAliased = std::any_of( in ValidateFunctionParameter() 166 bool foundRestrict = std::any_of( in ValidateFunctionParameter()
|
/external/llvm/lib/Analysis/ |
D | ModuleSummaryAnalysis.cpp | 215 llvm::any_of(Used, [](GlobalValue *V) { return V->hasLocalLinkage(); }); in moduleCanBeRenamedForThinLTO() 220 auto HasInlineAsm = llvm::any_of(M, [](const Function &F) { in moduleCanBeRenamedForThinLTO() 221 return llvm::any_of(instructions(F), [](const Instruction &I) { in moduleCanBeRenamedForThinLTO()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonRegisterInfo.cpp | 282 return !any_of(LIS.getInterval(DstReg), HasCall) && in shouldCoalesce() 283 !any_of(LIS.getInterval(SrcReg), HasCall); in shouldCoalesce() 291 return any_of(LIS.getInterval(LargeReg), HasCall) || in shouldCoalesce() 292 !any_of(LIS.getInterval(SmallReg), HasCall); in shouldCoalesce()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/ |
D | MCInstrDescView.cpp | 123 return llvm::any_of(Instr.Variables, [this](const Variable &Var) { in hasImmediateVariables() 179 return llvm::any_of(Defs, HasImplicit) && llvm::any_of(Uses, HasImplicit); in hasImplicitAliasing() 185 return llvm::any_of(Configurations, [](const AliasingRegisterOperands &ARO) { in hasImplicitAliasing()
|
D | Latency.cpp | 36 if (llvm::any_of(MCInstrDesc.operands(), hasUnknownOperand)) in isInfeasible() 39 if (llvm::any_of(MCInstrDesc.operands(), hasMemoryOperand)) in isInfeasible()
|
D | Uops.cpp | 94 if (llvm::any_of(MCInstrDesc.operands(), hasUnknownOperand)) in isInfeasible() 97 if (llvm::any_of(MCInstrDesc.operands(), hasMemoryOperand)) in isInfeasible()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/ |
D | Local.cpp | 539 EXPECT_TRUE(any_of(CDbgVals, [](DbgInfoIntrinsic *DII) { in TEST() 542 EXPECT_TRUE(any_of(CDbgVals, [](DbgInfoIntrinsic *DII) { in TEST() 551 EXPECT_TRUE(any_of(DDbgVals, [](DbgInfoIntrinsic *DII) { in TEST() 554 EXPECT_TRUE(any_of(DDbgVals, [](DbgInfoIntrinsic *DII) { in TEST() 585 return any_of(ADbgVals, [&](DbgValueInst *DVI) { in TEST()
|
/external/llvm/tools/llvm-pdbdump/ |
D | LinePrinter.cpp | 33 if (!IncludeFilters.empty() && !any_of(IncludeFilters, match_pred)) in IsItemExcluded() 36 if (any_of(ExcludeFilters, match_pred)) in IsItemExcluded()
|
/external/perfetto/src/trace_processor/ |
D | sched_slice_table.cc | 67 bool has_time_constraint = std::any_of(cs.begin(), cs.end(), has_ts_column); in EstimateQueryCost() 79 bool has_utid_eq = std::any_of(cs.begin(), cs.end(), has_utid_eq_cs); in EstimateQueryCost()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ValueLatticeUtils.cpp | 32 return !any_of(GV->users(), [&](User *U) { in canTrackGlobalVariableInterprocedurally()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | X86FoldTablesEmitter.cpp | 78 return any_of(ExplicitAlign, [Inst](const char *InstStr) { in isExplicitAlign() 84 return any_of(ExplicitUnalign, [Inst](const char *InstStr) { in isExplicitUnalign() 176 return any_of(Inst->Operands, [](const CGIOperandList::OperandInfo &OpIn) { in hasRSTRegClass() 183 return any_of(Inst->Operands, [](const CGIOperandList::OperandInfo &OpIn) { in hasPtrTailcallRegClass()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | Process.cpp | 52 if (any_of(IgnoreList, [&](StringRef S) { return fs::equivalent(S, Dir); })) in FindInEnvPath()
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | pass_utils.cpp | 76 return std::any_of(std::begin(kDebugOpcodes), std::end(kDebugOpcodes), in ContainsDebugOpcode()
|
D | eliminate_dead_const_test.cpp | 71 return std::any_of( in TEST_F()
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | pass_utils.cpp | 76 return std::any_of(std::begin(kDebugOpcodes), std::end(kDebugOpcodes), in ContainsDebugOpcode()
|
D | eliminate_dead_const_test.cpp | 71 return std::any_of( in TEST_F()
|
/external/mesa3d/src/gallium/state_trackers/clover/llvm/ |
D | metadata.hpp | 63 return clover::any_of(is_kernel_node_for(f), in is_kernel()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86CmovConversion.cpp | 196 if (!llvm::any_of(Group, [&](MachineInstr *I) { return I->mayLoad(); })) in runOnMachineFunction() 328 llvm::any_of( in collectCmovCandidates() 667 if (llvm::any_of(Group, [&](MachineInstr *I) { in convertCmovInstsToBranches()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | SIFixSGPRCopies.cpp | 508 return (llvm::any_of(Clobbers, interferes)) || in hoistAndMergeSGPRInits() 509 (llvm::any_of(Inits, [&](InitListMap::value_type &C) { in hoistAndMergeSGPRInits() 511 llvm::any_of(C.second, interferes); in hoistAndMergeSGPRInits()
|