| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenHwModes.cpp | 32 std::vector<Record*> Modes = R->getValueAsListOfDefs("Modes"); in HwModeSelect() local 34 if (Modes.size() != Objects.size()) { in HwModeSelect() 40 for (unsigned i = 0, e = Modes.size(); i != e; ++i) { in HwModeSelect() 41 unsigned ModeId = CGH.getHwModeId(Modes[i]->getName()); in HwModeSelect() 66 Modes.emplace_back(R); in CodeGenHwModes() 67 unsigned NewId = Modes.size(); in CodeGenHwModes() 68 ModeIds.insert(std::make_pair(Modes[NewId-1].Name, NewId)); in CodeGenHwModes() 96 for (const HwMode &M : Modes) { in dump()
|
| H A D | CodeGenHwModes.h | 50 return Modes[Id-1]; in getMode() 53 unsigned getNumModeIds() const { return Modes.size()+1; } in getNumModeIds() 59 std::vector<HwMode> Modes; member
|
| H A D | InfoByHwMode.h | 42 SmallVectorImpl<unsigned> &Modes) { in union_modes() argument 52 Modes.push_back(M); in union_modes() 56 Modes.push_back(DefaultMode); in union_modes()
|
| H A D | CodeGenDAGPatterns.cpp | 182 Modes.reserve(Map.size()); in writeToStream() 185 Modes.push_back(I.first); in writeToStream() 186 if (Modes.empty()) { in writeToStream() 190 array_pod_sort(Modes.begin(), Modes.end()); in writeToStream() 193 for (unsigned M : Modes) { in writeToStream() 226 Modes.insert(I.first); in operator ==() 228 Modes.insert(I.first); in operator ==() 475 for (unsigned M : Modes) { in EnforceSmallerThan() 525 for (unsigned M : Modes) { in EnforceSmallerThan() 706 union_modes(V, W, Modes); in EnforceSameNumElts() [all …]
|
| H A D | CodeGenRegisters.cpp | 1106 const CodeGenHwModes &Modes) : CGH(Modes) { in CodeGenRegBank() argument
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ |
| H A D | XRayArgs.cpp | 174 llvm::copy(XRaySupportedModes, std::back_inserter(Modes)); in XRayArgs() 182 Modes.clear(); in XRayArgs() 184 llvm::copy(XRaySupportedModes, std::back_inserter(Modes)); in XRayArgs() 186 Modes.push_back(std::string(M)); in XRayArgs() 205 llvm::sort(Modes); in XRayArgs() 206 Modes.erase(std::unique(Modes.begin(), Modes.end()), Modes.end()); in XRayArgs() 266 for (const auto &Mode : Modes) { in addArgs()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | XRayArgs.h | 26 std::vector<std::string> Modes; variable 45 llvm::ArrayRef<std::string> modeList() const { return Modes; } in modeList()
|
| /freebsd-13.1/usr.sbin/pw/ |
| H A D | pw.c | 43 const char *Modes[] = { variable 170 else if (mode == -1 && (tmp = getindex(Modes, argv[1])) != -1) in main()
|
| H A D | pw_log.c | 111 "[%s:%s%s] %s\n", sname, Which[which], Modes[mode], in pw_log()
|
| H A D | pw.h | 112 extern const char *Modes[];
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/soc/fsl/cpm_qe/qe/ |
| H A D | firmware.txt | 13 - extended-modes: The Extended Modes bitfield, taken from the
|
| /freebsd-13.1/contrib/ntp/html/scripts/ |
| H A D | special.txt | 6 <li class='inline'><a href='xleave.html'>NTP Interleaved Modes</a></li>\
|
| /freebsd-13.1/sys/contrib/dev/acpica/include/ |
| H A D | acclib.h | 385 const char *Modes);
|
| /freebsd-13.1/usr.bin/compress/doc/ |
| H A D | revision.log | 90 * (-D -d -v -b 12), or combination thereof. Modes and other status is
|
| /freebsd-13.1/lib/libc/softfloat/ |
| H A D | softfloat.txt | 50 Rounding Modes 134 Rounding Modes
|
| /freebsd-13.1/sys/dev/aic7xxx/ |
| H A D | aic79xx.reg | 50 /* Register window Modes */ 1911 field WIDE_RES 0x04 /* Modes 0 and 1 only */ 1912 field SDONE 0x02 /* Modes 0 and 1 only */ 1913 field DMADONE 0x01 /* Modes 0 and 1 only */ 1924 field CLRWIDE_RES 0x04 /* Modes 0 and 1 only */ 1925 field CLRSDONE 0x02 /* Modes 0 and 1 only */ 1926 field CLRDMADONE 0x01 /* Modes 0 and 1 only */
|
| /freebsd-13.1/crypto/openssl/doc/man7/ |
| H A D | des_modes.pod | 242 Part 5.2: Modes of operation for an n-bit block cipher algorithm
|
| /freebsd-13.1/contrib/tcsh/ |
| H A D | NewThings | 99 Modes that should be set are specified as +<mode>, modes that should
|
| /freebsd-13.1/contrib/ntp/ntpd/ |
| H A D | ntpd-opts.def | 332 .Ss "Operating Modes"
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | EVP_EncryptInit.pod | 358 =head2 GCM and OCB Modes
|
| /freebsd-13.1/contrib/ntp/ntpq/ |
| H A D | ntpq.texi | 753 interleave delay (see @url{xleave.html, NTP Interleaved Modes})
|
| H A D | ntpq-opts.def | 949 .Lk xleave.html "NTP Interleaved Modes" )
|
| H A D | invoke-ntpq.texi | 839 .Lk xleave.html "NTP Interleaved Modes" )
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | Target.td | 40 // element on the Modes list. 42 list<HwMode> Modes = Ms;
|
| /freebsd-13.1/contrib/ncurses/misc/ |
| H A D | terminfo.src | 13979 # Set Terminal Modes (SM): \E[Pnh
|