| /src/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)
|
| /src/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCFragment.cpp | 93 raw_ostream &operator<<(raw_ostream &OS, const MCFixup &AF) { in operator <<() argument 94 OS << "<MCFixup" << " Offset:" << AF.getOffset() in operator <<() 95 << " Value:" << *AF.getValue() in operator <<() 96 << " Kind:" << AF.getKind() << ">"; in operator <<() 139 const auto *AF = cast<MCAlignFragment>(this); in dump() local 140 if (AF->hasEmitNops()) in dump() 143 OS << " Alignment:" << AF->getAlignment().value() in dump() 144 << " Value:" << AF->getValue() << " ValueSize:" << AF->getValueSize() in dump() 145 << " MaxBytesToEmit:" << AF->getMaxBytesToEmit() << ">"; in dump()
|
| H A D | MCAssembler.cpp | 287 const MCAlignFragment &AF = cast<MCAlignFragment>(F); in computeFragmentSize() local 288 unsigned Offset = getFragmentOffset(AF); in computeFragmentSize() 289 unsigned Size = offsetToAlignment(Offset, AF.getAlignment()); in computeFragmentSize() 293 if (AF.getParent()->useCodeAlign() && AF.hasEmitNops() && in computeFragmentSize() 294 getBackend().shouldInsertExtraNopBytesForCodeAlign(AF, Size)) in computeFragmentSize() 299 if (Size > 0 && AF.hasEmitNops()) { in computeFragmentSize() 301 Size += AF.getAlignment().value(); in computeFragmentSize() 303 if (Size > AF.getMaxBytesToEmit()) in computeFragmentSize() 633 const MCAlignFragment &AF = cast<MCAlignFragment>(F); in writeFragment() local 634 assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!"); in writeFragment() [all …]
|
| /src/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | RetainSummaryManager.cpp | 300 ArgEffects ScratchArgs(AF.getEmptyMap()); in getSummaryForObjCOrCFObject() 337 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject() 345 ScratchArgs = AF.add(ScratchArgs, 2, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject() 356 ScratchArgs = AF.add(ScratchArgs, 7, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 365 ScratchArgs = AF.add(ScratchArgs, 8, ArgEffect(ArgEffect(StopTracking))); in getSummaryForObjCOrCFObject() 370 ScratchArgs = AF.add(ScratchArgs, 12, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 381 ScratchArgs = AF.add(ScratchArgs, 5, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 391 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 400 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() 401 ScratchArgs = AF.add(ScratchArgs, 2, ArgEffect(StopTracking)); in getSummaryForObjCOrCFObject() [all …]
|
| /src/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))
|
| /src/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()
|
| /src/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
| H A D | LoongArchAsmBackend.cpp | 186 const MCAlignFragment &AF, unsigned &Size) { in shouldInsertExtraNopBytesForCodeAlign() argument 188 if (!AF.getSubtargetInfo()->hasFeature(LoongArch::FeatureRelax)) in shouldInsertExtraNopBytesForCodeAlign() 193 if (AF.getMaxBytesToEmit() < MinNopLen) in shouldInsertExtraNopBytesForCodeAlign() 195 Size = AF.getAlignment().value() - MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 196 return AF.getAlignment() > MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 209 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument 211 if (!AF.getSubtargetInfo()->hasFeature(LoongArch::FeatureRelax)) in shouldInsertFixupForCodeAlign() 217 if (!shouldInsertExtraNopBytesForCodeAlign(AF, InsertedNopBytes)) in shouldInsertFixupForCodeAlign() 220 MCSection *Sec = AF.getParent(); in shouldInsertFixupForCodeAlign() 226 unsigned MaxBytesToEmit = AF.getMaxBytesToEmit(); in shouldInsertFixupForCodeAlign() [all …]
|
| H A D | LoongArchAsmBackend.h | 52 bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, 57 MCAlignFragment &AF) override;
|
| /src/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(&matchmask) = AF_INET6; in do_restrict() [all …]
|
| H A D | ntp_config.c | 1058 AF(&mask) = AF_UNSPEC; in dump_config_tree() 1062 SET_HOSTMASK(&onesmask, AF(&mask)); in dump_config_tree() 2000 AF(&addr_sock) = addr_node->type; in config_other_modes() 2015 AF(&addr_sock) = addr_node->type; in config_other_modes() 2911 AF(&addr) = (u_short)my_node->addr->type; in config_access() 2951 INSIST(AF_INET == AF(&addr) || in config_access() 2952 AF_INET6 == AF(&addr)); in config_access() 2956 SET_HOSTMASK(&mask, AF(&addr)); in config_access() 2961 AF(&mask) = my_node->mask->type; in config_access() 2977 AF(&addr) = AF_INET; in config_access() [all …]
|
| /src/contrib/bmake/unit-tests/ |
| H A D | var-scope-local-legacy.mk | 29 : AF=${AF:Uundef}_
|
| /src/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVAsmBackend.cpp | 660 const MCAlignFragment &AF, unsigned &Size) { in shouldInsertExtraNopBytesForCodeAlign() argument 662 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertExtraNopBytesForCodeAlign() 670 if (AF.getAlignment() <= MinNopLen) { in shouldInsertExtraNopBytesForCodeAlign() 673 Size = AF.getAlignment().value() - MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 684 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument 686 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertFixupForCodeAlign() 693 if (!shouldInsertExtraNopBytesForCodeAlign(AF, Count) || (Count == 0)) in shouldInsertFixupForCodeAlign() 705 Asm.getWriter().recordRelocation(Asm, &AF, Fixup, NopBytes, FixedValue); in shouldInsertFixupForCodeAlign()
|
| H A D | RISCVAsmBackend.h | 43 bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, 48 MCAlignFragment &AF) override;
|
| /src/contrib/netbsd-tests/ipf/expected/ |
| 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
|
| 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
|
| /src/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 …]
|
| /src/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:
|
| /src/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmBackend.h | 104 virtual bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, in shouldInsertExtraNopBytesForCodeAlign() argument 112 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument
|
| /src/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),
|
| /src/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
|
| /src/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
|