| /freebsd/bin/pax/ |
| H A D | options.h | 54 #define AF 0x00000001 macro 97 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF) 98 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF)) 106 #define BDEXTR (AF|BF|LF|TF|WF|XF|CBF|CHF|CLF|CPF|CXF) 108 #define BDCOPY (AF|BF|FF|OF|XF|CBF|CEF) 109 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | RetainSummaryManager.cpp | 299 ArgEffects ScratchArgs(AF.getEmptyMap()); in getSummaryForObjCOrCFObject() 336 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject() 344 ScratchArgs = AF.add(ScratchArgs, 2, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject() 355 ScratchArgs = AF.add(ScratchArgs, 7, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 364 ScratchArgs = AF.add(ScratchArgs, 8, ArgEffect(ArgEffect(StopTracking))); in getSummaryForObjCOrCFObject() 369 ScratchArgs = AF.add(ScratchArgs, 12, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 380 ScratchArgs = AF.add(ScratchArgs, 5, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 390 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 399 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 400 ScratchArgs = AF.add(ScratchArgs, 2, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() [all …]
|
| /freebsd/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/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()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 232 const MCAlignFragment &AF = cast<MCAlignFragment>(F); in computeFragmentSize() local 233 unsigned Offset = getFragmentOffset(AF); in computeFragmentSize() 234 unsigned Size = offsetToAlignment(Offset, AF.getAlignment()); in computeFragmentSize() 238 if (AF.getParent()->useCodeAlign() && AF.hasEmitNops() && in computeFragmentSize() 239 getBackend().shouldInsertExtraNopBytesForCodeAlign(AF, Size)) in computeFragmentSize() 244 if (Size > 0 && AF.hasEmitNops()) { in computeFragmentSize() 246 Size += AF.getAlignment().value(); in computeFragmentSize() 248 if (Size > AF.getMaxBytesToEmit()) in computeFragmentSize() 555 const MCAlignFragment &AF = cast<MCAlignFragment>(F); in writeFragment() local 556 assert(AF.getFillLen() && "Invalid virtual align in concrete fragment!"); in writeFragment() [all …]
|
| H A D | MCFragment.cpp | 80 const auto *AF = cast<MCAlignFragment>(this); in dump() local 81 OS << " Align:" << AF->getAlignment().value() << " Fill:" << AF->getFill() in dump() 82 << " FillLen:" << unsigned(AF->getFillLen()) in dump() 83 << " MaxBytesToEmit:" << AF->getMaxBytesToEmit(); in dump() 84 if (AF->hasEmitNops()) in dump()
|
| H A D | MCExpr.cpp | 385 } else if (auto *AF = dyn_cast<MCAlignFragment>(F); in attemptToFoldSymbolOffsetDifference() local 386 AF && Layout && AF->hasEmitNops() && in attemptToFoldSymbolOffsetDifference() 388 *AF, Count)) { in attemptToFoldSymbolOffsetDifference() 389 Displacement += Asm->computeFragmentSize(*AF); in attemptToFoldSymbolOffsetDifference()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
| H A D | LoongArchAsmBackend.cpp | 185 const MCAlignFragment &AF, unsigned &Size) { in shouldInsertExtraNopBytesForCodeAlign() argument 187 if (!AF.getSubtargetInfo()->hasFeature(LoongArch::FeatureRelax)) in shouldInsertExtraNopBytesForCodeAlign() 192 if (AF.getMaxBytesToEmit() < MinNopLen) in shouldInsertExtraNopBytesForCodeAlign() 194 Size = AF.getAlignment().value() - MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 195 return AF.getAlignment() > MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 208 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument 210 if (!AF.getSubtargetInfo()->hasFeature(LoongArch::FeatureRelax)) in shouldInsertFixupForCodeAlign() 216 if (!shouldInsertExtraNopBytesForCodeAlign(AF, InsertedNopBytes)) in shouldInsertFixupForCodeAlign() 219 MCSection *Sec = AF.getParent(); in shouldInsertFixupForCodeAlign() 223 unsigned MaxBytesToEmit = AF.getMaxBytesToEmit(); in shouldInsertFixupForCodeAlign() [all …]
|
| H A D | LoongArchAsmBackend.h | 49 bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, 54 MCAlignFragment &AF) override;
|
| /freebsd/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() 851 switch (AF(&ep->sin)) { in add_interface() 945 SET_HOSTMASK(&resmask, AF(&ep->sin)); in remove_interface() 1002 AF(&wildaddr) = AF_INET6; in create_wildcards() 1017 AF(&wildif->mask) = AF_INET6; in create_wildcards() 1047 AF(&wildaddr) = AF_INET; in create_wildcards() 1061 AF(&wildif->mask) = AF_INET; in create_wildcards() 1070 AF(&wildif->bcast) = AF_INET; in create_wildcards() 1317 AF(&itf->sin) = itf->family; in convert_isc_if() [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() 1329 AF(&peeraddr) = AF_INET6; in do_conf() 1332 AF(&peeraddr) = AF_INET; in do_conf() 1442 AF(&peeraddr) = AF_INET6; in do_unconf() 1445 AF(&peeraddr) = AF_INET; in do_unconf() 1862 AF(&matchaddr) = AF_INET6; in do_restrict() 1863 AF( in do_restrict() [all...] |
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | var-scope-local-legacy.mk | 29 : AF=${AF:Uundef}_
|
| /freebsd/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/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVAsmBackend.h | 42 bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, 47 MCAlignFragment &AF) override;
|
| H A D | RISCVAsmBackend.cpp | 920 const MCAlignFragment &AF, unsigned &Size) { in shouldInsertExtraNopBytesForCodeAlign() argument 922 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertExtraNopBytesForCodeAlign() 928 if (AF.getAlignment() <= MinNopLen) { in shouldInsertExtraNopBytesForCodeAlign() 931 Size = AF.getAlignment().value() - MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 942 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument 944 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertFixupForCodeAlign() 951 if (!shouldInsertExtraNopBytesForCodeAlign(AF, Count) || (Count == 0)) in shouldInsertFixupForCodeAlign() 960 Asm.getWriter().recordRelocation(AF, Fixup, NopBytes, FixedValue); in shouldInsertFixupForCodeAlign()
|
| /freebsd/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 956 1F77;03AF;03B9 0301;03AF;03B9 0301; # (ί; ί; ι◌́; ί; ι◌́; ) GREEK SMALL LETTER IOTA WITH OXIA 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… 1687 30B0;30B0;30AF 3099;30B0;30AF 3099; # (グ; グ; ク◌゙; グ; ク◌゙; ) KATAKANA LETTER GU 1985 32AF;32AF;32AF;5354;5354; # (㊯; ㊯; ㊯; 協; 協; ) CIRCLED IDEOGRAPH ALLIANCE 2025 32D7;32D7;32D7;30AF;30AF; # (㋗; ㋗; ㋗; ク; ク; ) CIRCLED KATAKANA KU [all …]
|
| /freebsd/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/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmBackend.h | 114 virtual bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, in shouldInsertExtraNopBytesForCodeAlign() argument 122 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument
|
| /freebsd/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/secure/caroot/trusted/ |
| H A D | e-Szigno_Root_CA_2017.pem | 39 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0 41 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0
|
| /freebsd/secure/caroot/untrusted/ |
| H A D | DIGITALSIGN_GLOBAL_ROOT_ECDSA_CA.pem | 39 CE:AF:4A:8B:1A:75:E2:F1:38:E7:02:F0:16:AD:5E:EA:64:D5:7B:B4 41 CE:AF:4A:8B:1A:75:E2:F1:38:E7:02:F0:16:AD:5E:EA:64:D5:7B:B4
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/aes/ |
| H A D | kresults.expected | 49 39 09 53 55 67 0E 07 DD A6 F8 7C 7F 78 AF E7 E1 118 39 09 53 55 67 0E 07 DD A6 F8 7C 7F 78 AF E7 E1 134 65 DE 01 93 8B 51 17 F8 32 6F 4B 05 AF 02 E2 3D 191 39 09 53 55 67 0E 07 DD A6 F8 7C 7F 78 AF E7 E1 208 65 DE 01 93 8B 51 17 F8 32 6F 4B 05 AF 02 E2 3D
|