| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/usr.sbin/ac/ |
| H A D | ac.c | 72 static struct user_list *Users = NULL; variable 235 Users = update_user(Users, argv[optind], 0L); in main() 293 Users = update_user(Users, lp->usr.ut_name, secs); in show_today() 320 Users = update_user(Users, lp->usr.ut_name, secs); in log_out() 423 show_today(Users, head, secs); in ac() 475 show_today(Users, head, secs); in ac() 484 show_today(Users, head, time(NULL)); in ac() 487 show_users(Users); in ac()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| H A D | Localizer.cpp | 162 SmallPtrSet<MachineInstr *, 32> Users; in localizeIntraBlock() local 165 Users.insert(&UseMI); in localizeIntraBlock() 169 if (Users.empty()) in localizeIntraBlock() 174 while (II != MBB.end() && !Users.count(&*II)) in localizeIntraBlock() 187 if (Users.size() == 1) { in localizeIntraBlock() 189 const auto &UserDL = (*Users.begin())->getDebugLoc(); in localizeIntraBlock()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinCFGuard.cpp | 46 SmallVector<const Value *, 4> Users{F}; in isPossibleIndirectCallTarget() local 47 while (!Users.empty()) { in isPossibleIndirectCallTarget() 48 const Value *FnOrCast = Users.pop_back_val(); in isPossibleIndirectCallTarget() 68 Users.push_back(FnUser); in isPossibleIndirectCallTarget()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanValue.h | 57 SmallVector<VPUser *, 1> Users; variable 119 unsigned getNumUsers() const { return Users.size(); } in getNumUsers() 120 void addUser(VPUser &User) { Users.push_back(&User); } in addUser() 127 erase_if(Users, [&User, &Found](VPUser *Other) { in removeUser() 143 user_iterator user_begin() { return Users.begin(); } in user_begin() 144 const_user_iterator user_begin() const { return Users.begin(); } in user_begin() 145 user_iterator user_end() { return Users.end(); } in user_end() 146 const_user_iterator user_end() const { return Users.end(); } in user_end()
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | ClangCheck.rst | 16 Processing: /Users/danieljasper/clang/llvm/tools/clang/docs/snippet.cc. 17 /Users/danieljasper/clang/llvm/tools/clang/docs/snippet.cc:2:12: error: expected ';' at end of 26 …(FunctionDecl 0x7ff3a302a8d0 </Users/danieljasper/clang/llvm/tools/clang/docs/snippet.cc:1:1, line…
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/ |
| H A D | ReduceArguments.cpp | 29 const auto &Users = OldF.users(); in replaceFunctionCalls() local 30 for (auto I = Users.begin(), E = Users.end(); I != E; ) in replaceFunctionCalls()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | TLSVariableHoist.cpp | 151 if (Cand.Users.size() != 1) in oneUseOutsideLoop() 154 BasicBlock *BB = Cand.Users[0].Inst->getParent(); in oneUseOutsideLoop() 201 for (auto &User : Cand.Users) { in findInsertPos() 242 for (auto &User : Cand.Users) in tryReplaceTLSCandidate()
|
| H A D | LoopRerollPass.cpp | 420 DenseSet<Instruction *> &Users); 424 DenseSet<Instruction *> &Users); 688 DenseSet<Instruction *> &Users) { in collectInLoopUserSet() argument 692 if (!Users.insert(I).second) in collectInLoopUserSet() 725 DenseSet<Instruction *> &Users) { in collectInLoopUserSet() argument 727 collectInLoopUserSet(Root, Exclude, Final, Users); in collectInLoopUserSet() 1574 SmallInstructionVector Users; in replaceSelected() local 1576 Users.push_back(cast<Instruction>(U)); in replaceSelected() 1579 for (Instruction *User : Users) in replaceSelected()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Comdat.h | 51 const SmallPtrSetImpl<GlobalObject *> &getUsers() const { return Users; } in getUsers() 65 SmallPtrSet<GlobalObject *, 2> Users; variable
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Scalar/ |
| H A D | TLSVariableHoist.h | 93 SmallVector<TLSUser, 8> Users; member 97 Users.push_back(TLSUser(Inst, Idx)); in addUser()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Comdat.cpp | 30 void Comdat::addUser(GlobalObject *GO) { Users.insert(GO); } in addUser() 32 void Comdat::removeUser(GlobalObject *GO) { Users.erase(GO); } in removeUser()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | DemoteRegToStack.cpp | 154 SmallVector<Instruction *, 4> Users; in DemotePHIToStack() local 157 Users.push_back(User); in DemotePHIToStack() 159 for (Instruction *User : Users) { in DemotePHIToStack()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/XCore/ |
| H A D | XCoreLowerThreadLocal.cpp | 153 SmallVector<User *, 16> Users(GV->users()); in lowerGlobal() local 154 for (unsigned I = 0, E = Users.size(); I != E; ++I) { in lowerGlobal() 155 User *U = Users[I]; in lowerGlobal()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroElide.cpp | 58 SmallVectorImpl<CoroSubFnInst *> &Users) { in replaceWithConstant() argument 59 if (Users.empty()) in replaceWithConstant() 65 Type *IntrTy = Users.front()->getType(); in replaceWithConstant() 75 for (CoroSubFnInst *I : Users) in replaceWithConstant()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVRegularizer.cpp | 88 std::vector<Instruction *> Users; in runLowerConstExpr() local 95 Users.push_back(InstUser); in runLowerConstExpr() 97 for (auto &User : Users) { in runLowerConstExpr()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/games/phantasia/ |
| H A D | phantglobs.c | 27 int Users; /* number of users currently playing */ variable
|
| /openbsd-src/share/zoneinfo/datfiles/ |
| H A D | factory | 8 # installation procedures. Users who run 'date' will get the
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | BuiltinsNEON.def | 9 // This file defines the NEON-specific builtin function database. Users of
|
| H A D | BuiltinsRISCVVector.def | 9 // This file defines the RISC-V-specific builtin function database. Users of
|
| H A D | BuiltinsSVE.def | 9 // This file defines the SVE-specific builtin function database. Users of
|