| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
| H A D | ResourceManager.cpp | 212 uint64_t Users = Resource2Groups[RSID]; in use() local 213 while (Users) { in use() 215 unsigned GroupIndex = getResourceStateIndex(Users & (-Users)); in use() 220 Users &= Users - 1; in use() 235 uint64_t Users = Resource2Groups[RSID]; in release() local 236 while (Users) { in release() 237 unsigned GroupIndex = getResourceStateIndex(Users & (-Users)); in release() 240 Users &= Users - 1; in release()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanValue.h | 57 SmallVector<VPUser *, 1> Users; variable 132 unsigned getNumUsers() const { return Users.size(); } in getNumUsers() 133 void addUser(VPUser &User) { Users.push_back(&User); } in addUser() 140 erase_if(Users, [&User, &Found](VPUser *Other) { in removeUser() 156 user_iterator user_begin() { return Users.begin(); } in user_begin() 157 const_user_iterator user_begin() const { return Users.begin(); } in user_begin() 158 user_iterator user_end() { return Users.end(); } in user_end() 159 const_user_iterator user_end() const { return Users.end(); } in user_end()
|
| H A D | VPlanTransforms.cpp | 238 SmallVector<VPUser *> Users(Phi1ToMoveV->user_begin(), in mergeReplicateRegions() local 240 for (VPUser *U : Users) { in mergeReplicateRegions()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinCFGuard.cpp | 49 SmallVector<const Value *, 4> Users{F}; in isPossibleIndirectCallTarget() local 50 while (!Users.empty()) { in isPossibleIndirectCallTarget() 51 const Value *FnOrCast = Users.pop_back_val(); in isPossibleIndirectCallTarget() 71 Users.push_back(FnUser); in isPossibleIndirectCallTarget()
|
| /freebsd-13.1/usr.sbin/ac/ |
| H A D | ac.c | 90 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-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | Localizer.cpp | 163 SmallPtrSet<MachineInstr *, 32> Users; in localizeIntraBlock() local 166 Users.insert(&UseMI); in localizeIntraBlock() 170 if (Users.empty()) in localizeIntraBlock() 175 while (II != MBB.end() && !Users.count(&*II)) in localizeIntraBlock()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCBoolRetToInt.cpp | 150 const auto &Users = P->users(); in getPromotablePHINodes() local 152 if (!llvm::all_of(Users, IsValidUser) || in getPromotablePHINodes() 169 const auto &Users = P->users(); in getPromotablePHINodes() local 171 if (!llvm::all_of(Users, IsPromotable) || in getPromotablePHINodes()
|
| /freebsd-13.1/contrib/unbound/contrib/ios/ |
| H A D | openssl.patch | 8 +/* Users should configure with -DNO_FORK */ 32 +/* Users should configure with -DNO_FORK */
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreLowerThreadLocal.cpp | 154 SmallVector<User *, 16> Users(GV->users()); in lowerGlobal() local 155 for (unsigned I = 0, E = Users.size(); I != E; ++I) { in lowerGlobal() 156 User *U = Users[I]; in lowerGlobal()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | BottleneckAnalysis.cpp | 49 SmallVectorImpl<User> &Users) const { in getResourceUsers() 56 Users.emplace_back(U); in getResourceUsers() 508 SmallVector<std::pair<unsigned, unsigned>, 4> Users; in onEvent() local 511 Tracker.getResourceUsers(Current, Users); in onEvent() 512 for (const std::pair<unsigned, unsigned> &U : Users) in onEvent() 514 Users.clear(); in onEvent()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroElide.cpp | 59 SmallVectorImpl<CoroSubFnInst *> &Users) { in replaceWithConstant() argument 60 if (Users.empty()) in replaceWithConstant() 66 Type *IntrTy = Users.front()->getType(); in replaceWithConstant() 76 for (CoroSubFnInst *I : Users) in replaceWithConstant()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/ |
| H A D | Instruction.cpp | 61 for (const std::pair<ReadState *, int> &User : Users) { in onInstructionIssued() 82 Users.emplace_back(User, ReadAdvance); in addUser()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopRerollPass.cpp | 424 DenseSet<Instruction *> &Users); 428 DenseSet<Instruction *> &Users); 697 DenseSet<Instruction *> &Users) { in collectInLoopUserSet() argument 701 if (!Users.insert(I).second) in collectInLoopUserSet() 734 DenseSet<Instruction *> &Users) { in collectInLoopUserSet() argument 736 collectInLoopUserSet(Root, Exclude, Final, Users); in collectInLoopUserSet() 1585 SmallInstructionVector Users; in replaceSelected() local 1587 Users.push_back(cast<Instruction>(U)); in replaceSelected() 1590 for (Instruction *User : Users) in replaceSelected()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SjLjEHPrepare.cpp | 291 SmallVector<Instruction *, 16> Users; in lowerAcrossUnwindEdges() local 295 Users.push_back(UI); in lowerAcrossUnwindEdges() 301 while (!Users.empty()) { in lowerAcrossUnwindEdges() 302 Instruction *U = Users.pop_back_val(); in lowerAcrossUnwindEdges()
|
| /freebsd-13.1/contrib/tzdata/ |
| H A D | factory | 7 # installation procedures. Users who run 'date' will get the
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | BuiltinsSVE.def | 9 // This file defines the SVE-specific builtin function database. Users of
|
| H A D | BuiltinsNEON.def | 9 // This file defines the NEON-specific builtin function database. Users of
|
| H A D | BuiltinsXCore.def | 9 // This file defines the XCore-specific builtin function database. Users of
|
| H A D | FPOptions.def | 9 // This file defines the Floating Point language options. Users of this file
|
| H A D | BuiltinsBPF.def | 9 // This file defines the BPF-specific builtin function database. Users of
|
| H A D | Sanitizers.def | 10 // enable. Users of this file must define the SANITIZER macro to make use of 11 // this information. Users of this file can also define the SANITIZER_GROUP
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/ |
| H A D | Instruction.h | 245 SmallVector<std::pair<ReadState *, int>, 4> Users; variable 281 unsigned NumUsers = Users.size(); in getNumUsers() 306 assert(Users.empty() && "Write is in an inconsistent state."); in setEliminated()
|
| /freebsd-13.1/usr.bin/login/ |
| H A D | login.conf | 93 russian|Russian Users Accounts:\
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPromoteAlloca.cpp | 447 SmallVector<User *, 8> Users(Alloca->users()); in tryPromoteAllocaToVector() local 448 SmallVector<User *, 8> UseUsers(Users.size(), Alloca); in tryPromoteAllocaToVector() 450 while (!Users.empty()) { in tryPromoteAllocaToVector() 451 User *AllocaUser = Users.pop_back_val(); in tryPromoteAllocaToVector() 470 Users.push_back(CastUser); in tryPromoteAllocaToVector() 492 Users.append(GEP->user_begin(), GEP->user_end()); in tryPromoteAllocaToVector()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/nds32/ |
| H A D | andestech-boards | 22 majority of embedded systems in variety of application domains. Users may
|