Home
last modified time | relevance | path

Searched refs:WF (Results 1 – 12 of 12) sorted by relevance

/freebsd/bin/pax/
H A Doptions.h70 #define WF 0x00010000 macro
95 #define ISLIST(x) (((x) & (RF|WF)) == 0)
96 #define ISEXTRACT(x) (((x) & (RF|WF)) == RF)
97 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF)
98 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF))
99 #define ISCOPY(x) (((x) & (RF|WF)) == (RF|WF))
100 #define ISWRITE(x) (((x) & (RF|WF)) == WF)
106 #define BDEXTR (AF|BF|LF|TF|WF|XF|CBF|CHF|CLF|CPF|CXF)
109 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
H A Doptions.c356 flg |= WF; in pax_options()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZScheduleZ16.td1427 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "WF(MAX|MIN)DB$")>;
1429 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "WF(MAX|MIN)SB$")>;
1430 def : InstRW<[WLat2, VecDFX, NormalGr], (instregex "WF(MAX|MIN)XB$")>;
1441 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(A|S)DB$")>;
1443 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(A|S)SB$")>;
1444 def : InstRW<[WLat10, VecDF2, NormalGr], (instregex "WF(A|S)XB$")>;
1453 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(N)?M(A|S)DB$")>;
1455 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(N)?M(A|S)SB$")>;
1456 def : InstRW<[WLat20, VecDF2, NormalGr], (instregex "WF(N)?M(A|S)XB$")>;
1486 (instregex "WF(C|K)(E|H|HE)DBS$")>;
[all …]
H A DSystemZScheduleZ15.td1421 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "WF(MAX|MIN)DB$")>;
1423 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "WF(MAX|MIN)SB$")>;
1424 def : InstRW<[WLat2, VecDFX, NormalGr], (instregex "WF(MAX|MIN)XB$")>;
1435 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(A|S)DB$")>;
1437 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(A|S)SB$")>;
1438 def : InstRW<[WLat10, VecDF2, NormalGr], (instregex "WF(A|S)XB$")>;
1447 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(N)?M(A|S)DB$")>;
1449 def : InstRW<[WLat6, VecBF, NormalGr], (instregex "WF(N)?M(A|S)SB$")>;
1450 def : InstRW<[WLat30, VecDF2, NormalGr], (instregex "WF(N)?M(A|S)XB$")>;
1478 (instregex "WF(C|K)(E|H|HE)DBS$")>;
[all …]
H A DSystemZScheduleZ14.td1377 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "WF(MAX|MIN)DB$")>;
1379 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "WF(MAX|MIN)SB$")>;
1380 def : InstRW<[WLat2, VecDFX, NormalGr], (instregex "WF(MAX|MIN)XB$")>;
1391 def : InstRW<[WLat7, VecBF, NormalGr], (instregex "WF(A|S)DB$")>;
1393 def : InstRW<[WLat7, VecBF, NormalGr], (instregex "WF(A|S)SB$")>;
1394 def : InstRW<[WLat10, VecDF2, NormalGr], (instregex "WF(A|S)XB$")>;
1404 def : InstRW<[WLat7, VecBF, NormalGr], (instregex "WF(N)?M(A|S)DB$")>;
1406 def : InstRW<[WLat7, VecBF, NormalGr], (instregex "WF(N)?M(A|S)SB$")>;
1407 def : InstRW<[WLat30, VecDF2, NormalGr], (instregex "WF(N)?M(A|S)XB$")>;
1435 (instregex "WF(C|K)(E|H|HE)DBS$")>;
[all …]
H A DSystemZScheduleZ13.td1347 def : InstRW<[WLat7, VecBF, NormalGr], (instregex "WF(A|S)DB$")>;
1372 def : InstRW<[WLat3, VecXsPm, NormalGr], (instregex "WF(C|K)$")>;
1373 def : InstRW<[WLat3, VecXsPm, NormalGr], (instregex "WF(C|K)DB$")>;
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1618 static void addWeightedInput(WeightedFileVector &WNI, const WeightedFile &WF) { in addWeightedInput() argument
1619 StringRef Filename = WF.Filename; in addWeightedInput()
1620 uint64_t Weight = WF.Weight; in addWeightedInput()
1689 for (auto &WF : WeightedInputs) in merge_main() local
1690 outs() << WF.Weight << "," << WF.Filename << "\n"; in merge_main()
/freebsd/share/misc/
H A Diso3166265 WF WLF 876 Wallis and Futuna
347 # GF, GP, MQ, NC, PF, PM, RE, TF, WF, YT)
H A Dusb_vendors4914 1168 Workforce WF-7820/7840 Series
7069 0ce0 WF-1000XM3 [Wireless Noise-Canceling Headphones]
/freebsd/usr.sbin/tzsetup/
H A Dbaseline659 WF:Wallis and Futuna
/freebsd/contrib/tzdata/
H A Dzone1970.tab190 KI,MH,TV,UM,WF +0125+17300 Pacific/Tarawa Gilberts, Marshalls, Wake
H A Dzone.tab441 WF -1318-17610 Pacific/Wallis