| /freebsd/crypto/openssl/crypto/sha/asm/ |
| H A D | sha256-586.pl | 376 my @AH=($A,$K256); 381 &mov ($AH[0],&DWP(0,"esi")); 382 &mov ($AH[1],&DWP(4,"esi")); 386 &mov (&DWP(4,"esp"),$AH[1]); 387 &xor ($AH[1],"ecx"); # magic 459 &mov ($t1,$AH[0]); 463 &mov ($t2,$AH[0]); 465 &xor ($t1,$AH[0]); 466 &mov (&off($a),$AH[0]); # save $A, modulo-scheduled 467 &xor ($AH[0],"edi"); # a ^= b, (b^c) in next round [all …]
|
| /freebsd/tests/sys/netpfil/pf/ |
| H A D | header.py | 88 pkt = pkt / sp.AH(nh=51, payloadlen=1) 89 pkt = pkt / sp.AH(nh=1, payloadlen=1) / sp.ICMP(type='echo-request') 98 ah = r.getlayer(sp.AH) 108 pkt = pkt / sp.AH(nh=51, payloadlen=1) 109 pkt = pkt / sp.AH(nh=1, payloadlen=1) / sp.ICMP(type='echo-request') 119 ah = r.getlayer(sp.AH) 182 pkt = pkt / sp.AH(nh=51, payloadlen=1) 183 pkt = pkt / sp.AH(nh=58, payloadlen=1) / sp.ICMPv6EchoRequest() 192 ah = r.getlayer(sp.AH) 202 pkt = pkt / sp.AH(nh=51, payloadlen=1) [all …]
|
| H A D | CVE-2019-5597.py | 51 pkt1_opts = sp.AH(nh=AH_PROTO, payloadlen=200) \ 53 / sp.AH(nh=FRAG_PROTO, payloadlen=1) \
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/ |
| H A D | dfdiv.S | 12 #define AH r1 macro 81 EXPBA = combine(BH,AH) 82 SIGN = xor(AH,BH) 85 #undef AH 208 #define AH r1 macro 218 AH += asl(EXPA,#DF_MANTBITS-32) 224 AH += asl(EXPA,#DF_MANTBITS-32) 225 EXPB = extractu(AH,#DF_EXPBITS,#DF_MANTBITS-32) 283 AH += asl(TMP,#DF_MANTBITS-32) 329 AH = mux(Q_POSITIVE,#0,#-1) define [all …]
|
| H A D | dfmul.S | 11 #define AH r1 macro 113 EXP0 = extractu(AH,#EXPBITS,#HI_MANTBITS) 119 TMP = xor(AH,BH) 133 AH += asl(EXP0,#HI_MANTBITS) 150 p0 = bitsclr(AH,BTMPL) 177 AH += asl(EXP1,#HI_MANTBITS) 178 EXP1 = extractu(AH,#EXPBITS,#HI_MANTBITS) 232 AH = insert(S_ZERO,#EXPBITS,#HI_MANTBITS) define 253 AH = insert(S_ZERO,#EXPBITS-1,#HI_MANTBITS+1) // Insert correct exponent define 271 PP_LL_L ^= lsr(AH,#31) // Does sign match rounding? [all …]
|
| H A D | dfaddsub.S | 12 #define AH r1 macro 79 EXPA = extractu(AH,#EXPBITS,#HI_MANTBITS) 111 A_POS = cmp.gt(AH,#-1) 148 AH += asl(EXPB,#HI_MANTBITS) 174 if (p0.new) AH = xor(AH,BH) 199 TMP = extractu(AH,#EXPBITS,#HI_MANTBITS) 200 AH += asl(EXPB,#HI_MANTBITS) 241 EXPB ^= lsr(AH,#31) // Does sign match rounding? 292 EXPA = extractu(AH,#EXPBITS,#HI_MANTBITS) 315 p0 = cmp.gt(AH,#-1) [all …]
|
| H A D | dffma.S | 16 #define AH r1 macro 147 TMP = xor(AH,BH) 150 EXPA = extractu(AH,#EXPBITS,#HI_MANTBITS) 317 AH += asl(EXPA,#HI_MANTBITS) 334 if (p0.new) AH = ##0x80000000 358 AH += asl(EXPA,#HI_MANTBITS) 359 NEW_EXPB = extractu(AH,#EXPBITS,#HI_MANTBITS) 406 AH = USR define 426 if (!p1.new) AH = or(AH,AL) 431 USR = AH [all …]
|
| H A D | dfsqrt.S | 14 #define AH r1 macro 81 EXP = extractu(AH,#DF_EXPBITS,#DF_MANTBITS-32) 86 NORMAL = cmp.gt(AH,#-1) // and positive? 99 #undef AH 339 #define AH r1 macro 361 P_TMP = cmp.gt(AH,#-1) 382 AH = insert(EXP,#1,#DF_MANTBITS-32) // insert lsb of exponent define
|
| /freebsd/crypto/krb5/src/ |
| H A D | Makefile.in | 313 AH = util/et/et_h.awk 349 $(INC)asn1_err.h: $(AH) $(ET)asn1_err.et 350 $(AWK) -f $(AH) outfile=$@ $(ET)asn1_err.et 351 $(INC)kdb5_err.h: $(AH) $(ET)kdb5_err.et 352 $(AWK) -f $(AH) outfile=$@ $(ET)kdb5_err.et 353 $(INC)krb5_err.h: $(AH) $(ET)krb5_err.et 354 $(AWK) -f $(AH) outfile=$@ $(ET)krb5_err.et 355 $(INC)k5e1_err.h: $(AH) $(ET)k5e1_err.et 356 $(AWK) -f $(AH) outfile=$@ $(ET)k5e1_err.et 357 $(INC)kv5m_err.h: $(AH) $(ET)kv5m_err.et [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | RISCVAttributeParser.cpp | 68 for (const auto &AH : displayRoutines) { in handler() local 69 if (uint64_t(AH.attribute) == tag) { in handler() 70 if (Error e = (this->*AH.routine)(tag)) in handler()
|
| H A D | CSKYAttributeParser.cpp | 72 for (const auto &AH : displayRoutines) { in handler() local 73 if (uint64_t(AH.attribute) == tag) { in handler() 74 if (Error e = (this->*AH.routine)(tag)) in handler()
|
| H A D | ARMAttributeParser.cpp | 491 for (const auto &AH : displayRoutines) { in handler() local 492 if (uint64_t(AH.attribute) == tag) { in handler() 493 if (Error e = (this->*AH.routine)(static_cast<AttrType>(tag))) in handler()
|
| /freebsd/sbin/setkey/ |
| H A D | sample.cf | 32 # security protocol (AH or ESP) identifier. You must take care of these 62 # Security protocol is old AH tunnel mode, i.e. RFC1826, with hmac-sha2-256 66 # ======= AH ======= 100 # AH transport mode followed by ESP tunnel mode is required between 103 # is hmac-sha2-512. Authentication algorithm for AH is hmac-sha2-256. 105 # ========== AH =========
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86RegisterInfo.td | 60 def AH : X86Reg<"ah", 4>; 189 def AX : X86Reg<"ax", 0, [AL,AH]>; 546 // FIXME: Allow AH, CH, DH, BH to be used as general-purpose registers in 552 (add AL, CL, DL, AH, CH, DH, BL, BH, SIL, DIL, BPL, SPL, 556 let AltOrders = [(sub GR8, AH, BH, CH, DH)]; 632 def GR8_ABCD_H : RegisterClass<"X86", [i8], 8, (add AH, CH, DH, BH)>; 645 (add AL, CL, DL, AH, CH, DH, BL, BH)> { 646 let AltOrders = [(sub GR8_NOREX, AH, BH, CH, DH)]; 666 let AltOrders = [(sub GR8_NOREX2, AH, BH, CH, DH)];
|
| H A D | X86InstructionSelector.cpp | |
| H A D | X86CallingConv.td | 241 // requires the values to be in AL and AH, however this code uses AL and DL 242 // instead. This is because using AH for the second register conflicts with 244 // up in AX and AH, which overlap. Front-ends wishing to conform to the ABI 246 // values into an i16 (which uses AX, and thus AL:AH).
|
| H A D | X86InstrArithmetic.td | 152 let Defs = [AL, AH, EFLAGS], Uses = [AX] in 160 let Defs = [AL, AH, EFLAGS], Uses = [AX] in 170 let Defs = [AL, AH], Uses = [AX] in 178 let Defs = [AL, AH], Uses = [AX] in 187 let Defs = [AL, AH, EFLAGS], Uses = [AX] in 195 let Defs = [AL, AH, EFLAGS], Uses = [AX] in
|
| /freebsd/share/doc/IPv6/ |
| H A D | IMPLEMENTATION | 72 4.3 AH and ESP handling 938 in supporting AH with jumbograms (AH header size influences payload length, 940 option as well as AH). 1783 (3) AH, ESP and IPComp handling in kernel 1816 IP AH ESP IP payload 1817 some implementation proposes it as "AH transport and ESP tunnel", since 1819 implementation proposes it as "AH tunnel and ESP tunnel". 1827 4.3 AH and ESP handling 1830 processing. When sending a packet, ip{,6}_output() checks if ESP/AH 1832 Policy Database) is found. If ESP/AH is needed, [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Lookup.h | 298 void setAllowHidden(bool AH) { in setAllowHidden() argument 299 AllowHidden = AH; in setAllowHidden()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86MCTargetDesc.cpp | 184 {codeview::RegisterId::AH, X86::AH}, in initLLVMToSEHAndCVRegMapping() 772 case X86::AH: \ in getX86SubSuperRegister() 800 A_SUB_SUPER(AH) in getX86SubSuperRegister()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/GISel/ |
| H A D | X86InstructionSelector.cpp | 1704 {X86::IDIV8r, 0, X86::MOVSX16rr8, X86::AH, S}, // SRem in selectMulDivRem() 1706 {X86::DIV8r, 0, X86::MOVZX16rr8, X86::AH, U}, // URem in selectMulDivRem() 1708 {X86::IMUL8r, 0, X86::MOVSX16rr8, X86::AH, S}, // SMulH in selectMulDivRem() 1709 {X86::MUL8r, 0, X86::MOVZX16rr8, X86::AH, U}, // UMulH in selectMulDivRem() 1843 if (OpEntry.ResultReg == X86::AH && STI.is64Bit()) { in selectMulDivRem()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64CallingConvention.td | 314 // requires the values to be in AL and AH, however this code uses AL and DL 315 // instead. This is because using AH for the second register conflicts with 317 // up in AX and AH, which overlap. Front-ends wishing to conform to the ABI 319 // values into an i16 (which uses AX, and thus AL:AH).
|
| /freebsd/lib/libc/net/ |
| H A D | protocols | 57 ah 51 AH # authentication header
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | CodeViewRegisterMapping.cpp | 660 case llvm::codeview::RegisterId::AH: in GetRegisterSize()
|
| /freebsd/contrib/libpcap/ |
| H A D | grammar.y.in | 389 %token IPV6 ICMPV6 AH ESP 653 | AH { $$ = Q_AH; }
|