/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Threading.inc | 170 std::vector<USHORT> Groups; 171 Groups.resize(Count); 172 if (!::GetProcessGroupAffinity(GetCurrentProcess(), &Count, Groups.data())) 175 return Groups; 180 SmallVector<ProcessorGroup, 4> Groups; 186 G.ID = Groups.size(); 191 Groups.push_back(G); 206 Groups[I].ThreadsPerCore = NumHyperThreads; 226 return std::vector<ProcessorGroup>(Groups.begin(), Groups.end()); 234 ProcessorGroup NewG{Groups[CurrentGroupID]}; [all …]
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | ClangOptionDocEmitter.cpp | 32 std::vector<DocumentedGroup> Groups; member 36 return Groups.empty() && Options.empty(); in empty() 147 auto &Groups = GroupsInGroup[R]; in extractDocumentation() local 148 llvm::sort(Groups, CompareByLocation); in extractDocumentation() 149 for (Record *G : Groups) { in extractDocumentation() 150 D.Groups.emplace_back(); in extractDocumentation() 151 D.Groups.back().Group = G; in extractDocumentation() 152 Documentation &Base = D.Groups.back(); in extractDocumentation() 155 D.Groups.pop_back(); in extractDocumentation() 441 for (auto &G : Doc.Groups) in emitDocumentation()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
H A D | LSUnit.h | 218 DenseMap<unsigned, std::unique_ptr<MemoryGroup>> Groups; variable 269 return Index && Groups.contains(Index); in isValidGroupID() 303 return *Groups.find(Index)->second; in getGroup() 308 return *Groups.find(Index)->second; in getGroup() 312 Groups.insert( in createMemoryGroup() 327 Groups[GroupID]->onInstructionIssued(IR); in onInstructionIssued()
|
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
H A D | LSUnit.cpp | 45 for (const std::pair<unsigned, std::unique_ptr<MemoryGroup>> &G : Groups) in cycleEvent() 56 for (const auto &GroupIt : Groups) { in dump() 207 auto It = Groups.find(GroupID); in onInstructionExecuted() 208 assert(It != Groups.end() && "Instruction not dispatched to the LS unit"); in onInstructionExecuted() 211 Groups.erase(It); in onInstructionExecuted()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | OptRSTEmitter.cpp | 28 const std::vector<Record *> &Groups = in EmitOptRST() local 30 for (unsigned i = 0, e = Groups.size(); i != e; ++i) { in EmitOptRST() 31 const Record &R = *Groups[i]; in EmitOptRST()
|
H A D | OptParserEmitter.cpp | 255 const std::vector<Record *> &Groups = in EmitOptParser() local 337 for (const Record &R : llvm::make_pointee_range(Groups)) { in EmitOptParser()
|
/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | 20-cert-select.cnf.in | 88 "Groups" => "P-384" 93 "Groups" => "P-256:P-384", 110 "Groups" => "P-256:P-384" 117 "Groups" => "P-384", 398 "Groups" => "brainpoolP256r1", 404 "Groups" => "brainpoolP256r1", 829 name => "TLS 1.3 Ed25519 CipherString and Groups Selection", 836 "Groups" => "X25519" 845 name => "TLS 1.3 Ed448 CipherString and Groups Selection", 852 "Groups" [all...] |
H A D | 20-cert-select.cnf | 53 test-48 = 48-TLS 1.3 Ed25519 CipherString and Groups Selection 54 test-49 = 49-TLS 1.3 Ed448 CipherString and Groups Selection 111 Groups = P-384 117 Groups = P-256:P-384 144 Groups = P-256:P-384 150 Groups = P-384 711 Groups = brainpoolP256r1 716 Groups = brainpoolP256r1 1578 [48-TLS 1.3 Ed25519 CipherString and Groups Selection] 1579 ssl_conf = 48-TLS 1.3 Ed25519 CipherString and Groups Selectio [all...] |
H A D | 28-seclevel.cnf.in | 68 "Groups" => "X25519" },
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenSchedule.h | 385 std::vector<OpcodeGroup> Groups; variable 400 if (Groups.empty() || in addOpcode() 401 Groups.back().getOpcodeInfo().getPredicates() != Info.getPredicates()) in addOpcode() 402 Groups.emplace_back(std::move(Info)); in addOpcode() 403 Groups.back().addOpcode(OpcodeRec); in addOpcode() 415 ArrayRef<OpcodeGroup> getGroups() const { return Groups; } in getGroups()
|
/freebsd/usr.sbin/bsdconfig/usermgmt/include/ |
H A D | messages.subr | 58 msg_enter_groups_manually="Enter Groups manually" 77 msg_groups="Groups" 89 msg_member_of_groups="Member of Groups" 108 msg_select_groups_from_list="Select Groups from a list"
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrFMA3Info.cpp | 73 static const X86InstrFMA3Group Groups[] = { variable 131 assert(llvm::is_sorted(Groups) && llvm::is_sorted(RoundGroups) && in verifyTables() 165 Table = ArrayRef(Groups); in getFMA3Group()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | OptionsBase.td | 10 // - `Groups`: Sets a given list of group numbers. 11 // Example: def foo : Option<"foo", "f">, Groups<[1,4,6]>; 114 class Groups<list<int> groups> { 115 list<int> Groups = groups;
|
H A D | Options.td | 117 Completion<"Module">, Groups<[1,2,3,4,5,6,7,8,9,11,12]>, // *not* in group 10 123 Completion<"SourceFile">, Groups<[1,3,4,5,6,7,8,9,11]>, 198 Arg<"Boolean">, Groups<[1,3,4,5,6,7,8,12]>, 205 Arg<"Address">, Groups<[1,3,4,5,6,7,8,12]>, 210 Groups<[1,9,12]>, Arg<"Boolean">, 330 Groups<[1,2]>, Arg<"AddressOrExpression">, Required, 334 def disassemble_options_count : Option<"count", "c">, Groups<[2,3,4,5,7]>, 349 def disassemble_options_force : Option<"force", "\\x01">, Groups<[2,3,4,5,7]>, 360 Groups<[1,2]>, Arg<"Boolean">, Desc<"Should we run all threads if the " 363 Groups<[1,2]>, Arg<"Boolean">, [all …]
|
/freebsd/contrib/llvm-project/lldb/utils/TableGen/ |
H A D | LLDBOptionDefEmitter.cpp | 39 if (Option->getValue("Groups")) { in CommandOption() 41 auto Groups = Option->getValueAsListOfInts("Groups"); in CommandOption() local 42 for (int Group : Groups) in CommandOption()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | XCOFFObjectWriter.cpp | 173 CsectGroups Groups; member 176 CsectGroups Groups) in CsectSectionEntry() 177 : SectionEntry(N, Flags), IsVirtual(IsVirtual), Groups(Groups) { in CsectSectionEntry() 185 for (auto *Group : Groups) in reset() 1144 for (const auto *Group : Section->Groups) { in writeRelocations() 1219 for (const auto *Group : Section->Groups) { in writeSymbolTable() 1306 for (const auto *Group : Section->Groups) { in finalizeSectionInfo() 1443 llvm::all_of(Section->Groups, in assignAddressesAndIndices() 1464 for (auto *Group : Section->Groups) { in assignAddressesAndIndices() 1617 for (const auto &Group : CsectEntry.Groups) { in writeSectionForControlSectionEntry()
|
H A D | ELFObjectWriter.cpp | 972 SmallVector<std::pair<MCSectionELF *, SmallVector<unsigned>>, 0> Groups; in writeObject() local 1004 GroupMap[*GroupIdxEntry] = Groups.size(); in writeObject() 1005 Groups.emplace_back(Group, SmallVector<unsigned>{}); in writeObject() 1016 auto &Members = Groups[GroupMap[*GroupIdxEntry]]; in writeObject() 1025 for (auto &[Group, Members] : Groups) { in writeObject()
|
/freebsd/stand/efi/include/ |
H A D | efiudp.h | 151 EFI_UDP4_GROUPS Groups; member 265 EFI_UDP6_GROUPS Groups; member
|
H A D | efiip.h | 202 EFI_IP4_GROUPS Groups; member 450 EFI_IP6_GROUPS Groups; member
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/opal/ |
H A D | sensor-groups.txt | 1 IBM OPAL Sensor Groups Binding
|
/freebsd/crypto/openssl/ |
H A D | AUTHORS.md | 10 Groups section in Authors
|
/freebsd/sys/contrib/device-tree/Bindings/regulator/ |
H A D | samsung,s2mpa01.txt | 37 Groups sharing ramp rate:
|
H A D | samsung,s2mps11.txt | 46 Groups sharing ramp rate:
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | UnsafeBufferUsage.cpp | 3000 const std::vector<VarGrpTy> Groups; member in VariableGroupsManagerImpl 3006 const std::vector<VarGrpTy> &Groups, in VariableGroupsManagerImpl() argument 3009 : Groups(Groups), VarGrpMap(VarGrpMap), in VariableGroupsManagerImpl() 3025 return Groups[It->second]; in getGroupOfVar() 3225 std::vector<VarGrpTy> Groups; in checkUnsafeBufferUsage() local 3239 VarGrpTy &VarGroup = Groups.emplace_back(); in checkUnsafeBufferUsage() 3257 unsigned GrpIdx = Groups.size() - 1; in checkUnsafeBufferUsage() 3304 VariableGroupsManagerImpl VarGrpMgr(Groups, VarGrpMap, GrpsUnionForParms); in checkUnsafeBufferUsage()
|
/freebsd/contrib/unbound/contrib/ |
H A D | unbound.service.in | 17 ; - `ProtectControlGroups=yes` makes the Linux Control Groups hierarchies
|