| /freebsd-14.2/bin/pax/ |
| H A D | options.h | 56 #define AF 0x00000001 macro 99 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF) 100 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF)) 108 #define BDEXTR (AF|BF|LF|TF|WF|XF|CBF|CHF|CLF|CPF|CXF) 110 #define BDCOPY (AF|BF|FF|OF|XF|CBF|CEF) 111 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | RetainSummaryManager.cpp | 300 ArgEffects ScratchArgs(AF.getEmptyMap()); in getSummaryForObjCOrCFObject() 592 ArgEffects ScratchArgs(AF.getEmptyMap()); in updateSummaryForNonZeroCallbackArg() 656 Template->addArg(AF, parm_idx, in updateSummaryForArgumentTypes() 789 ArgEffects ScratchArgs(AF.getEmptyMap()); in getUnarySummary() 799 ScratchArgs = AF.add(ScratchArgs, 0, Effect); in getUnarySummary() 808 AF.getEmptyMap(), in getOSSummaryRetainRule() 817 AF.getEmptyMap(), in getOSSummaryReleaseRule() 826 AF.getEmptyMap(), in getOSSummaryFreeRule() 835 AF.getEmptyMap()); in getOSSummaryCreateRule() 1182 ArgEffects ScratchArgs = AF.getEmptyMap(); in InitializeClassMethodSummaries() [all …]
|
| /freebsd-14.2/contrib/ntp/include/ |
| H A D | ntp_net.h | 43 #define AF(psau) ((psau)->sa.sa_family) macro 45 #define IS_IPV4(psau) (AF_INET == AF(psau)) 46 #define IS_IPV6(psau) (AF_INET6 == AF(psau)) 146 AF(psau) = (family); \ 175 ((AF(psau1) != AF(psau2)) \ 206 ANY_INTERFACE_BYFAM(AF(psau))
|
| /freebsd-14.2/contrib/ntp/libntp/ |
| H A D | socktoa.c | 46 switch(AF(sock)) { in socktoa() 70 AF(sock)); in socktoa() 123 pch = (const void *)&AF(addr); in sock_hash() 125 if (sizeof(AF(addr)) > 1) { in sock_hash() 129 switch(AF(addr)) { in sock_hash()
|
| H A D | is_ip_address.c | 56 AF(addr) = AF_INET; in is_ip_address() 76 AF(addr) = AF_INET6; in is_ip_address()
|
| H A D | authkeys.c | 214 if ( !a1 || (AF_UNSPEC == AF(a1)) || in keyacc_amatch() 215 !a2 || (AF_UNSPEC == AF(a2)) ) in keyacc_amatch() 224 if (AF(a1) != AF(a2)) in keyacc_amatch() 228 switch (AF(a1)) { in keyacc_amatch()
|
| H A D | netof.c | 47 msyslog(LOG_ERR, "netof unknown AF %d", AF(netaddr)); in netof()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 341 unsigned Offset = Layout.getFragmentOffset(&AF); in computeFragmentSize() 346 if (AF.getParent()->useCodeAlign() && AF.hasEmitNops() && in computeFragmentSize() 352 if (Size > 0 && AF.hasEmitNops()) { in computeFragmentSize() 354 Size += AF.getAlignment().value(); in computeFragmentSize() 356 if (Size > AF.getMaxBytesToEmit()) in computeFragmentSize() 548 if (Count * AF.getValueSize() != FragmentSize) in writeFragment() 550 Twine(AF.getValueSize()) + in writeFragment() 558 if (AF.hasEmitNops()) { in writeFragment() 567 switch (AF.getValueSize()) { in writeFragment() 569 case 1: OS << char(AF.getValue()); break; in writeFragment() [all …]
|
| H A D | MCFragment.cpp | 329 raw_ostream &operator<<(raw_ostream &OS, const MCFixup &AF) { in operator <<() argument 330 OS << "<MCFixup" << " Offset:" << AF.getOffset() in operator <<() 331 << " Value:" << *AF.getValue() in operator <<() 332 << " Kind:" << AF.getKind() << ">"; in operator <<() 375 const auto *AF = cast<MCAlignFragment>(this); in dump() local 376 if (AF->hasEmitNops()) in dump() 379 OS << " Alignment:" << AF->getAlignment().value() in dump() 380 << " Value:" << AF->getValue() << " ValueSize:" << AF->getValueSize() in dump() 381 << " MaxBytesToEmit:" << AF->getMaxBytesToEmit() << ">"; in dump()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
| H A D | LoongArchAsmBackend.cpp | 187 const MCAlignFragment &AF, unsigned &Size) { in shouldInsertExtraNopBytesForCodeAlign() argument 189 if (!AF.getSubtargetInfo()->hasFeature(LoongArch::FeatureRelax)) in shouldInsertExtraNopBytesForCodeAlign() 194 if (AF.getMaxBytesToEmit() < MinNopLen) in shouldInsertExtraNopBytesForCodeAlign() 196 Size = AF.getAlignment().value() - MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 197 return AF.getAlignment() > MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 210 MCAssembler &Asm, const MCAsmLayout &Layout, MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument 212 if (!AF.getSubtargetInfo()->hasFeature(LoongArch::FeatureRelax)) in shouldInsertFixupForCodeAlign() 218 if (!shouldInsertExtraNopBytesForCodeAlign(AF, Count)) in shouldInsertFixupForCodeAlign() 221 MCSection *Sec = AF.getParent(); in shouldInsertFixupForCodeAlign() 239 unsigned Hi = AF.getMaxBytesToEmit() >= Count ? 0 : AF.getMaxBytesToEmit(); in shouldInsertFixupForCodeAlign() [all …]
|
| H A D | LoongArchAsmBackend.h | 52 bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, 58 MCAlignFragment &AF) override;
|
| /freebsd-14.2/contrib/ntp/ntpd/ |
| H A D | ntp_io.c | 682 REQUIRE(AF(a) == AF(a_mask)); in addr_samesubnet() 683 REQUIRE(AF(b) == AF(b_mask)); in addr_samesubnet() 2133 if (AF(&iface->sin) != AF(&entry->addr) || in create_interface() 2438 REQUIRE(AF(maddr) == AF(&iface->sin)); in enable_multicast_if() 2501 switch (AF(maddr)) { in socket_multicast_enable() 2586 switch (AF(maddr)) { in socket_multicast_disable() 2864 if (ep->ignore_packets || AF(&ep->sin) != AF(addr) || 4220 REQUIRE(AF(a1) == AF(a2)); 4223 AF(dist) = AF(a1); 4263 REQUIRE(AF(d1) == AF(d2)); [all …]
|
| H A D | ntp_request.c | 830 AF(&addr) = AF_INET6; in peer_info() 833 AF(&addr) = AF_INET; in peer_info() 972 AF(&addr) = AF_INET6; in peer_stats() 975 AF(&addr) = AF_INET; in peer_stats() 1332 AF(&peeraddr) = AF_INET; in do_conf() 2000 AF(&peeraddr) = AF_INET; in reset_peer() 2033 AF(&peeraddr) = AF_INET; in reset_peer() 2271 AF(&laddr) = AF(srcadr); in do_setclr_trap() 2510 AF(&addr) = AF_INET; in get_clock_info() 2589 AF(&addr) = AF_INET; in set_clock_fudge() [all …]
|
| H A D | ntp_config.c | 1058 AF(&mask) = AF_UNSPEC; in dump_config_tree() 2952 AF_INET6 == AF(&addr)); in config_access() 2977 AF(&addr) = AF_INET; in config_access() 2978 AF(&mask) = AF_INET; in config_access() 2993 AF(&addr) = AF_INET6; in config_access() 2994 AF(&mask) = AF_INET6; in config_access() 3769 AF(&addr_sock) = AF_UNSPEC; in config_trap() 3863 AF(&peeraddr) = AF(&addr_sock); in config_trap() 4786 af = AF(&peeraddr); in unpeer_name_resolved() 5615 AF_INET == AF(addr) || in getnetnum() [all …]
|
| /freebsd-14.2/contrib/bmake/unit-tests/ |
| H A D | var-scope-local-legacy.mk | 12 : AF=${AF:Uundef}_
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVAsmBackend.cpp | 669 const MCAlignFragment &AF, unsigned &Size) { in shouldInsertExtraNopBytesForCodeAlign() argument 671 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertExtraNopBytesForCodeAlign() 679 if (AF.getAlignment() <= MinNopLen) { in shouldInsertExtraNopBytesForCodeAlign() 682 Size = AF.getAlignment().value() - MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 694 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument 696 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertFixupForCodeAlign() 703 if (!shouldInsertExtraNopBytesForCodeAlign(AF, Count) || (Count == 0)) in shouldInsertFixupForCodeAlign() 715 Asm.getWriter().recordRelocation(Asm, Layout, &AF, Fixup, NopBytes, in shouldInsertFixupForCodeAlign()
|
| H A D | RISCVAsmBackend.h | 43 bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, 49 MCAlignFragment &AF) override;
|
| /freebsd-14.2/contrib/netbsd-tests/ipf/expected/ |
| H A D | l1 | 6 01/01/1970 00:00:00.000000 anon0 @-1:-1 L 1.1.1.1,1025 -> 2.2.2.2,25 PR tcp len 20 40 -AF IN 32 01/01/1970 00:00:00.000000 anon0 @0:1 p 1.1.1.1,1025 -> 2.2.2.2,25 PR tcp len 20 40 -AF K-S IN 44 01/01/1970 00:00:00.000000 anon0 @0:4 p 1.1.1.1,1025 -> 2.2.2.2,25 PR tcp len 20 40 -AF K-S IN
|
| H A D | l1.b | 5 01/01/1970 00:00:00.000000 anon0 @-1:-1 L 1.1.1.1,1025 -> 2.2.2.2,25 PR tcp len 20 40 -AF IN 30 01/01/1970 00:00:00.000000 anon0 @0:1 p 1.1.1.1,1025 -> 2.2.2.2,25 PR tcp len 20 40 -AF K-S IN 41 01/01/1970 00:00:00.000000 anon0 @0:4 p 1.1.1.1,1025 -> 2.2.2.2,25 PR tcp len 20 40 -AF K-S IN
|
| /freebsd-14.2/crypto/heimdal/lib/wind/ |
| H A D | NormalizationTest.txt | 65 00AF;00AF;00AF;0020 0304;0020 0304; # (¯; ¯; ¯; ◌̄; ◌̄; ) MACRON 245 01AF;01AF;0055 031B;01AF;0055 031B; # (Ư; Ư; U◌̛; Ư; U◌̛; ) LATIN CAPITAL LETTER U WITH HORN 389 03AF;03AF;03B9 0301;03AF;03B9 0301; # (ί; ί; ι◌́; ί; ι◌́; ) GREEK SMALL LETTER IOTA WITH TONOS 489 09DF;09AF 09BC;09AF 09BC;09AF 09BC;09AF 09BC; # (য়; য◌়; য◌়; য◌়; য◌়; ) BENGALI LETTER YYA 1279 22AF;22AF;22AB 0338;22AF;22AB 0338; # (⊯; ⊯; ⊫◌̸; ⊯; ⊫◌̸; ) NEGATED DOUBLE VERTICAL BAR DOUBLE RIGH… 1369 24AF;24AF;24AF;0028 0074 0029;0028 0074 0029; # (⒯; ⒯; ⒯; (t); (t); ) PARENTHESIZED LATIN SMALL LET… 1985 32AF;32AF;32AF;5354;5354; # (㊯; ㊯; ㊯; 協; 協; ) CIRCLED IDEOGRAPH ALLIANCE 2025 32D7;32D7;32D7;30AF;30AF; # (㋗; ㋗; ㋗; ク; ク; ) CIRCLED KATAKANA KU 13966 FB93;FB93;FB93;06AF;06AF; # (ﮓ; ﮓ; ﮓ; گ; گ; ) ARABIC LETTER GAF FINAL FORM 14805 FF78;FF78;FF78;30AF;30AF; # (ク; ク; ク; ク; ク; ) HALFWIDTH KATAKANA LETTER KU [all …]
|
| /freebsd-14.2/crypto/openssl/test/certs/ |
| H A D | embeddedSCTs3.sct | 9 21:C5:6A:16:79:DF:33:85:8A:D3:F3:1D:71:AF:75:30: 35 D9:2D:37:53:4A:3B:F0:AE:03:E4:21:76:37:EF:AF:B4:
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | RetainSummaryManager.h | 485 ArgEffects::Factory AF; 534 ArgEffects(AF.getEmptyMap()), 540 ArgEffects(AF.getEmptyMap()), 546 RetEffect::MakeNoRet(), ArgEffects(AF.getEmptyMap()), 629 TrackOSObjects(trackOSObjects), AF(BPAlloc),
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmBackend.h | 112 virtual bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, in shouldInsertExtraNopBytesForCodeAlign() argument 121 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument
|
| /freebsd-14.2/secure/caroot/trusted/ |
| H A D | e-Szigno_Root_CA_2017.pem | 42 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0 44 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0
|
| H A D | FIRMAPROFESIONAL_CA_ROOT-A_WEB.pem | 42 93:E1:43:63:5C:3C:9D:D6:27:F3:52:EC:17:B2:A9:AF:2C:F7:76:F8 44 93:E1:43:63:5C:3C:9D:D6:27:F3:52:EC:17:B2:A9:AF:2C:F7:76:F8
|