Home
last modified time | relevance | path

Searched refs:Users (Results 1 – 25 of 118) sorted by relevance

12345

/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h48 SmallVector<VPUser *, 1> Users; variable
93 unsigned getNumUsers() const { return Users.size(); } in getNumUsers()
94 void addUser(VPUser &User) { Users.push_back(&User); } in addUser()
101 user_iterator user_begin() { return Users.begin(); } in user_begin()
102 const_user_iterator user_begin() const { return Users.begin(); } in user_begin()
103 user_iterator user_end() { return Users.end(); } in user_end()
104 const_user_iterator user_end() const { return Users.end(); } in user_end()
/freebsd-12.1/contrib/llvm/lib/MCA/
H A DInstruction.cpp47 for (const std::pair<ReadState *, int> &User : Users) { in onInstructionIssued()
68 if (llvm::find_if(Users, [&User](const std::pair<ReadState *, int> &Use) { in addUser()
70 }) == Users.end()) { in addUser()
71 Users.emplace_back(User, ReadAdvance); in addUser()
/freebsd-12.1/contrib/llvm/lib/MCA/HardwareUnits/
H A DResourceManager.cpp204 uint64_t Users = Resource2Groups[RSID]; in use() local
205 while (Users) { in use()
207 unsigned GroupIndex = getResourceStateIndex(Users & (-Users)); in use()
212 Users &= Users - 1; in use()
/freebsd-12.1/usr.sbin/ac/
H A Dac.c90 static SLIST_HEAD(, user_entry) Users = SLIST_HEAD_INITIALIZER(Users);
179 SLIST_FOREACH(up, &Users, next) { in update_user()
198 SLIST_INSERT_HEAD(&Users, up, next); in update_user()
274 SLIST_FOREACH(lp, &Users, next) in show_users()
303 SLIST_FOREACH(up, &Users, next) { in show_today()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIExtensions.txt30 …^done,start="0x0000000100000f80",end="0x0000000100000f94",file="/Users/IliaK/p/hello.cpp",line="15"
33 …^done,start="0x0000000100000f80",end="0x0000000100000f94",file="/Users/IliaK/p/hello.cpp",line="15"
93 …loaded,id="/Users/IliaK/p/hello",target-name="/Users/IliaK/p/hello",host-name="/Users/IliaK/p/hell…
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp149 const auto &Users = P->users(); in getPromotablePHINodes() local
151 if (!llvm::all_of(Users, IsValidUser) || in getPromotablePHINodes()
168 const auto &Users = P->users(); in getPromotablePHINodes() local
170 if (!llvm::all_of(Users, IsPromotable) || in getPromotablePHINodes()
/freebsd-12.1/contrib/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp47 SmallVectorImpl<CoroSubFnInst *> &Users) { in replaceWithConstant() argument
48 if (Users.empty()) in replaceWithConstant()
54 Type *IntrTy = Users.front()->getType(); in replaceWithConstant()
64 for (CoroSubFnInst *I : Users) in replaceWithConstant()
/freebsd-12.1/contrib/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp204 SmallVector<User *, 16> Users(GV->user_begin(), GV->user_end()); in lowerGlobal() local
205 for (unsigned I = 0, E = Users.size(); I != E; ++I) { in lowerGlobal()
206 User *U = Users[I]; in lowerGlobal()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp280 SmallVector<Instruction *, 16> Users; in lowerAcrossUnwindEdges() local
284 Users.push_back(UI); in lowerAcrossUnwindEdges()
290 while (!Users.empty()) { in lowerAcrossUnwindEdges()
291 Instruction *U = Users.pop_back_val(); in lowerAcrossUnwindEdges()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp414 DenseSet<Instruction *> &Users);
418 DenseSet<Instruction *> &Users);
687 DenseSet<Instruction *> &Users) { in collectInLoopUserSet() argument
691 if (!Users.insert(I).second) in collectInLoopUserSet()
725 DenseSet<Instruction *> &Users) { in collectInLoopUserSet() argument
727 collectInLoopUserSet(Root, Exclude, Final, Users); in collectInLoopUserSet()
1552 SmallInstructionVector Users; in replaceSelected() local
1554 Users.push_back(cast<Instruction>(U)); in replaceSelected()
1557 for (Instruction *User : Users) in replaceSelected()
/freebsd-12.1/contrib/llvm/include/llvm/MCA/
H A DInstruction.h136 SmallVector<std::pair<ReadState *, int>, 4> Users; variable
163 unsigned NumUsers = Users.size(); in getNumUsers()
185 assert(Users.empty() && "Write is in an inconsistent state."); in setEliminated()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DBuiltinsLe64.def10 // This file defines the Le64-specific builtin function database. Users of this
H A DBuiltinsNEON.def10 // This file defines the NEON-specific builtin function database. Users of
H A DBuiltinsXCore.def10 // This file defines the XCore-specific builtin function database. Users of
H A DSanitizers.def11 // enable. Users of this file must define the SANITIZER macro to make use of
12 // this information. Users of this file can also define the SANITIZER_GROUP
/freebsd-12.1/contrib/tzdata/
H A Dfactory7 # installation procedures. Users who run 'date' will get the
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp852 std::vector<User *> Users(inputs[i]->user_begin(), inputs[i]->user_end()); in constructFunction() local
853 for (User *use : Users) in constructFunction()
871 std::vector<User *> Users(header->user_begin(), header->user_end()); in constructFunction() local
872 for (unsigned i = 0, e = Users.size(); i != e; ++i) in constructFunction()
875 if (Instruction *I = dyn_cast<Instruction>(Users[i])) in constructFunction()
983 std::vector<User *> Users(outputs[i]->user_begin(), outputs[i]->user_end()); in emitCallAndSwitchStatement() local
984 for (unsigned u = 0, e = Users.size(); u != e; ++u) { in emitCallAndSwitchStatement()
985 Instruction *inst = cast<Instruction>(Users[u]); in emitCallAndSwitchStatement()
/freebsd-12.1/usr.bin/login/
H A Dlogin.conf84 russian|Russian Users Accounts:\
/freebsd-12.1/usr.sbin/pc-sysinstall/examples/
H A Dpcinstall.cfg.geli41 # Users
H A Dpcinstall.cfg.zfs50 # Users
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2204 Users.emplace_back(I); in isAllocSiteRemovable()
2218 Users.emplace_back(I); in isAllocSiteRemovable()
2242 Users.emplace_back(I); in isAllocSiteRemovable()
2248 Users.emplace_back(I); in isAllocSiteRemovable()
2257 Users.emplace_back(I); in isAllocSiteRemovable()
2278 SmallVector<WeakTrackingVH, 64> Users; in visitAllocSite() local
2289 if (isAllocSiteRemovable(&MI, Users, &TLI)) { in visitAllocSite()
2293 if (!Users[i]) in visitAllocSite()
2296 Instruction *I = cast<Instruction>(&*Users[i]); in visitAllocSite()
2309 if (!Users[i]) in visitAllocSite()
[all …]
/freebsd-12.1/contrib/apr-util/
H A DREADME43 Users of APR 0.9 should be aware that migrating to the APR 1.x
46 Users of APR 1.x can expect consistent interfaces and binary backwards
/freebsd-12.1/release/picobsd/mfs_tree/etc/
H A Dlogin.conf116 polish:Polish Users Accounts:\
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp1323 ValueSeq Users(Cycled.begin(), Cycled.end()); in convertShiftsToLeft() local
1324 for (unsigned i = 0; i < Users.size(); ++i) { in convertShiftsToLeft()
1325 Value *V = Users[i]; in convertShiftsToLeft()
1341 Users.insert(T); in convertShiftsToLeft()
1347 if (Users.empty()) in convertShiftsToLeft()
1351 ValueSeq Internal(Users.begin(), Users.end()); in convertShiftsToLeft()
1393 if (isa<PHINode>(I) || !Users.count(&*I)) in convertShiftsToLeft()
1408 if (Users.count(Op)) in convertShiftsToLeft()
1453 if (!Users.count(U)) in convertShiftsToLeft()
/freebsd-12.1/contrib/apr/
H A DREADME42 Users of APR 0.9 should be aware that migrating to the APR 1.x
45 Users of APR 1.x can expect consistent interfaces and binary backwards

12345