Searched refs:Users (Results 1 - 24 of 24) sorted by relevance

/external/cblas/
H A DMakefile.in25 BLLIB = /Users/julie/Documents/Boulot/lapack-dev/lapack/trunk/blas_LINUX.a
/external/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp132 const auto &Users = P->users(); local
134 if (!std::all_of(Users.begin(), Users.end(), IsValidUser) ||
151 const auto &Users = P->users(); local
153 if (!std::all_of(Users.begin(), Users.end(), IsPromotable) ||
/external/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp132 std::vector<User *> Users(duplicateFunction->user_begin(),
134 for (std::vector<User*>::iterator UI = Users.begin(), UE = Users.end();
H A DGlobalOpt.cpp1832 SmallVector<ConstantExpr*,4> Users; local
1835 Users.push_back(cast<ConstantExpr>(U));
1845 for (auto *U : Users) {
/external/icu/icu4c/source/config/
H A Dtest-icu-config.sh47 icu-config --prefix=/Users/srl/II --cflags
/external/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp205 SmallVector<User *, 16> Users(GV->user_begin(), GV->user_end());
206 for (unsigned I = 0, E = Users.size(); I != E; ++I) {
207 User *U = Users[I];
/external/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp374 std::vector<User*> Users(inputs[i]->user_begin(), inputs[i]->user_end());
375 for (std::vector<User*>::iterator use = Users.begin(), useE = Users.end();
394 std::vector<User*> Users(header->user_begin(), header->user_end());
395 for (unsigned i = 0, e = Users.size(); i != e; ++i)
398 if (TerminatorInst *TI = dyn_cast<TerminatorInst>(Users[i]))
504 std::vector<User*> Users(outputs[i]->user_begin(), outputs[i]->user_end());
505 for (unsigned u = 0, e = Users.size(); u != e; ++u) {
506 Instruction *inst = cast<Instruction>(Users[u]);
H A DLoopUtils.cpp234 // No Users.
720 auto Users = Inst.users(); local
721 if (std::any_of(Users.begin(), Users.end(), [&](User *U) {
/external/llvm/lib/Target/AArch64/
H A DAArch64CollectLOH.cpp749 const SetOfMachineInstr *Users = local
752 if (Users->size() > 1) {
836 const SetOfMachineInstr *Users = local
839 if (Users->size() > 1) {
844 for (const MachineInstr *MI : *Users) {
864 const SetOfMachineInstr *Users = local
867 if (Users->size() > 1) {
881 for (auto &Use : *Users) {
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp298 SmallVector<Instruction *, 16> Users; local
302 Users.push_back(UI);
308 while (!Users.empty()) {
309 Instruction *U = Users.back();
310 Users.pop_back();
/external/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp385 DenseSet<Instruction *> &Users);
389 DenseSet<Instruction *> &Users);
575 DenseSet<Instruction *> &Users) {
579 if (!Users.insert(I).second)
613 DenseSet<Instruction *> &Users) {
616 collectInLoopUserSet(*I, Exclude, Final, Users);
1394 SmallInstructionVector Users; local
1396 Users.push_back(cast<Instruction>(U));
1399 for (SmallInstructionVector::iterator J = Users.begin(),
1400 JE = Users
572 collectInLoopUserSet( Instruction *Root, const SmallInstructionSet &Exclude, const SmallInstructionSet &Final, DenseSet<Instruction *> &Users) argument
609 collectInLoopUserSet( const SmallInstructionVector &Roots, const SmallInstructionSet &Exclude, const SmallInstructionSet &Final, DenseSet<Instruction *> &Users) argument
[all...]
H A DRewriteStatepointsForGC.cpp2024 SmallVector<Instruction *, 16> Users; local
2026 Users.push_back(cast<Instruction>(U));
2028 for (Instruction *I : Users) {
H A DLoopStrengthReduce.cpp2528 /// any IV users that keep the IV live across increments (the Users set should
2537 isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users, argument
2545 if (!Users.empty()) {
2547 for (Instruction *Inst : Users) {
2765 // consider leaf IV Users. This effectively rediscovers a portion of
4799 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n");
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp300 std::vector<User*> Users(V->use_begin(), V->use_end());
302 for (int i = 0; i < int(Users.size()); i++) {
303 Value* V2 = dyn_cast<Value>(Users[i]);
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp289 bool trackUsesOfI(DenseSet<Value *> &Users,
1177 // structures associated with I. Specifically, Users represents the set of
1180 // and J uses I, then Users is updated to contain J and WriteSet is updated
1191 bool BBVectorize::trackUsesOfI(DenseSet<Value *> &Users, argument
1199 if (Users.count(J))
1206 if (I == V || Users.count(V)) {
1227 Users.insert(J);
1254 DenseSet<Value *> Users; local
1266 bool UsesI = trackUsesOfI(Users, WriteSet, &*I, &*J, !Config.FastDep);
1486 DenseSet<Value *> Users; local
2877 DenseSet<Value *> Users; local
2899 DenseSet<Value *> Users; local
2930 DenseSet<Value *> Users; local
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp647 SmallVector<const Value *, 2> Users; local
648 Users.push_back(Ptr);
650 Ptr = Users.pop_back_val();
655 Users.push_back(U);
657 } while (!Users.empty());
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1861 isAllocSiteRemovable(Instruction *AI, SmallVectorImpl<WeakVH> &Users, argument
1877 Users.emplace_back(I);
1886 Users.emplace_back(I);
1912 Users.emplace_back(I);
1918 Users.emplace_back(I);
1927 Users.emplace_back(I);
1941 SmallVector<WeakVH, 64> Users; local
1942 if (isAllocSiteRemovable(&MI, Users, TLI)) {
1943 for (unsigned i = 0, e = Users.size(); i != e; ++i) {
1944 Instruction *I = cast_or_null<Instruction>(&*Users[
[all...]
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex388 Label S Owner Users Linger Expires Dst Opt
397 \item \verb|Users| is number of applications using the label now.
/external/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp2203 SDNode *Users[4] = { }; local
2232 if (Users[Lane])
2235 Users[Lane] = *I;
2255 SDLoc(), Users[Lane]->getValueType(0),
2257 DAG.ReplaceAllUsesWith(Users[Lane], Copy);
2264 SDNode *User = Users[i];
/external/blktrace/btt/doc/
H A Dbtt.tex33 tool called blktrace. As noted in its Users Guide, blktrace
/external/llvm/test/Bindings/OCaml/
H A Dcore.ml600 (*===-- Users -------------------------------------------------------------===*)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8602 SetVector<SDNode *> Users;
8608 Users.insert(U);
8614 if (Users.size() < MinUses)
8623 for (auto *U : Users) {
13961 // Users of the select now use the result of the load.
13964 // Users of the old loads now use the new load's chain. We know the
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli734 (** {6 Users} *)
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas344 /// return ''; Users should not access $ruleLabel.text in

Completed in 691 milliseconds