Home
last modified time | relevance | path

Searched refs:AH (Results 1 – 25 of 42) sorted by relevance

12

/NextBSD/crypto/openssl/crypto/sha/asm/
HDsha256-586.pl364 my @AH=($A,$K256);
369 &mov ($AH[0],&DWP(0,"esi"));
370 &mov ($AH[1],&DWP(4,"esi"));
374 &mov (&DWP(4,"esp"),$AH[1]);
375 &xor ($AH[1],"ecx"); # magic
447 &mov ($t1,$AH[0]);
451 &mov ($t2,$AH[0]);
453 &xor ($t1,$AH[0]);
454 &mov (&off($a),$AH[0]); # save $A, modulo-scheduled
455 &xor ($AH[0],"edi"); # a ^= b, (b^c) in next round
[all …]
/NextBSD/share/examples/IPv6/
HDUSAGE397 complicated example. From HOST A to HOST B, only old AH is used.
398 From HOST B to HOST A, new AH and new ESP are combined.
400 Now we should choose algorithm to be used corresponding to "AH"/"new
401 AH"/"ESP"/"new ESP". Please refer to the "setkey" man page to know
402 algorithm names. Our choice is MD5 for AH, new-HMAC-SHA1 for new AH,
420 (1)PROTO=AH
431 PROTO=AH
432 ALG=new-HMAC-SHA1(new AH)
470 the "ping" command has the -P option with parameter to enable AH and/or ESP.
478 to be AH transport mode inner ESP tunnel mode like below.
[all …]
/NextBSD/sbin/setkey/
HDsample.cf33 # security protocol (AH or ESP) identifier. You must take care of these
63 # Security protocol is old AH tunnel mode, i.e. RFC1826, with keyed-md5
67 # ======= AH =======
101 # AH transport mode followed by ESP tunnel mode is required between
104 # is hmac-sha1. Authentication algorithm for AH is hmac-md5.
106 # ========== AH =========
/NextBSD/contrib/llvm/lib/Target/X86/
HDX86RegisterInfo.td55 def AH : X86Reg<"ah", 4>;
78 def AX : X86Reg<"ax", 0, [AL,AH]>;
323 // FIXME: Allow AH, CH, DH, BH to be used as general-purpose registers in
329 (add AL, CL, DL, AH, CH, DH, BL, BH, SIL, DIL, BPL, SPL,
331 let AltOrders = [(sub GR8, AH, BH, CH, DH)];
370 def GR8_ABCD_H : RegisterClass<"X86", [i8], 8, (add AH, CH, DH, BH)>;
382 (add AL, CL, DL, AH, CH, DH, BL, BH)> {
383 let AltOrders = [(sub GR8_NOREX, AH, BH, CH, DH)];
HDX86RegisterInfo.cpp616 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX: in getX86SubSuperRegisterOrZero()
617 return X86::AH; in getX86SubSuperRegisterOrZero()
628 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX: in getX86SubSuperRegisterOrZero()
665 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX: in getX86SubSuperRegisterOrZero()
701 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX: in getX86SubSuperRegisterOrZero()
737 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX: in getX86SubSuperRegisterOrZero()
HDX86InstrArithmetic.td59 // AL,AH = AL*GR8
84 // AL,AH = AL*[mem8]
111 // AL,AH = AL*GR8
129 // AL,AH = AL*[mem8]
297 let Defs = [AL,AH,EFLAGS], Uses = [AX] in
298 def DIV8r : I<0xF6, MRM6r, (outs), (ins GR8:$src), // AX/r8 = AL,AH
313 let Defs = [AL,AH,EFLAGS], Uses = [AX] in
314 def DIV8m : I<0xF6, MRM6m, (outs), (ins i8mem:$src), // AX/[mem8] = AL,AH
334 let Defs = [AL,AH,EFLAGS], Uses = [AX] in
335 def IDIV8r : I<0xF6, MRM7r, (outs), (ins GR8:$src), // AX/r8 = AL,AH
[all …]
HDX86CallingConv.td28 // requires the values to be in AL and AH, however this code uses AL and DL
29 // instead. This is because using AH for the second register conflicts with
31 // up in AX and AH, which overlap. Front-ends wishing to conform to the ABI
33 // values into an i16 (which uses AX, and thus AL:AH).
HDX86ISelDAGToDAG.cpp2384 SrcReg = LoReg = X86::AL; HiReg = X86::AH; in Select()
2455 if (HiReg == X86::AH && Subtarget->is64Bit() && in Select()
2533 LoReg = X86::AL; ClrReg = HiReg = X86::AH; in Select()
2634 if (HiReg == X86::AH && !SDValue(Node, 1).use_empty()) { in Select()
2635 SDValue AHCopy = CurDAG->getRegister(X86::AH, MVT::i8); in Select()
HDX86InstrInfo.td1458 let Defs = [EFLAGS], Uses = [AH] in
1460 [(set EFLAGS, (X86sahf AH))], IIC_AHF>;
1461 let Defs = [AH], Uses = [EFLAGS], hasSideEffects = 0 in
1463 IIC_AHF>; // AH = flags
1902 // sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1907 // sets AL, AH and EFLAGS and uses AL and AH
1912 // sets AL, AH and EFLAGS and uses AL
1917 // sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
/NextBSD/release/picobsd/mfs_tree/etc/
HDprotocols10 ah 51 AH # authentication header
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDLookup.h225 void setAllowHidden(bool AH) { in setAllowHidden() argument
226 AllowHidden = AH; in setAllowHidden()
/NextBSD/share/doc/IPv6/
HDIMPLEMENTATION73 4.3 AH and ESP handling
939 in supporting AH with jumbograms (AH header size influences payload length,
941 option as well as AH).
1798 (3) AH, ESP and IPComp handling in kernel
1831 IP AH ESP IP payload
1832 some implementation proposes it as "AH transport and ESP tunnel", since
1834 implementation proposes it as "AH tunnel and ESP tunnel".
1842 4.3 AH and ESP handling
1845 processing. When sending a packet, ip{,6}_output() checks if ESP/AH
1847 Policy Database) is found. If ESP/AH is needed,
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDRewriteStatepointsForGC.cpp2290 static void RemoveDerefAttrAtIndex(LLVMContext &Ctx, AttrHolder &AH, in RemoveDerefAttrAtIndex() argument
2293 if (AH.getDereferenceableBytes(Index)) in RemoveDerefAttrAtIndex()
2295 AH.getDereferenceableBytes(Index))); in RemoveDerefAttrAtIndex()
2296 if (AH.getDereferenceableOrNullBytes(Index)) in RemoveDerefAttrAtIndex()
2298 AH.getDereferenceableOrNullBytes(Index))); in RemoveDerefAttrAtIndex()
2301 AH.setAttributes(AH.getAttributes().removeAttributes( in RemoveDerefAttrAtIndex()
/NextBSD/contrib/ofed/libibverbs/fixes/
HDverbs_man_page.patch52 …eues (CQ), Queue-Pairs (QP), Shared Receive Queues (SRQ), Address Handles (AH), Memory Regions (MR…
57 …t group under IB), where a resource managed through IB verbs such as QP or AH would be eventually …
/NextBSD/contrib/libpcap/
HDgrammar.y301 %token IPV6 ICMPV6 AH ESP
495 | AH { $$ = Q_AH; }
HDscanner.l207 ah return AH;
/NextBSD/contrib/ofed/libibverbs/
HDChangeLog496 create AH and destroy AH operations in the kernel.
500 post SRQ receive, create AH and destroy AH commands. These will
HDREADME163 * Implement the query address handle (AH) verb.
/NextBSD/share/syscons/fonts/
HDiso02-8x16.fnt74 M/`P&?`!L.``\9L+`P,#"9CP`````#!@`_F9B8'A@8F;^````````_F9B:'AH
HDcp1251-8x16.fnt67 M```````&?GY@8&!@````````````A,S\S,;`P,```````'SHZ.AH*"@H*"@`
/NextBSD/contrib/llvm/include/llvm/DebugInfo/PDB/
HDPDBTypes.h376 AH = 5, enumerator
/NextBSD/etc/
HDprotocols61 ah 51 AH # authentication header
/NextBSD/contrib/llvm/lib/Target/X86/Disassembler/
HDX86DisassemblerDecoder.h81 ENTRY(AH) \
/NextBSD/contrib/llvm/lib/DebugInfo/PDB/
HDPDBExtras.cpp100 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_RegisterId, AH, OS) in operator <<()
/NextBSD/contrib/llvm/lib/CodeGen/
HDWinEHPrepare.cpp2541 void createUnwindMapEntry(int ToState, ActionHandler *AH);
2552 void WinEHNumbering::createUnwindMapEntry(int ToState, ActionHandler *AH) { in createUnwindMapEntry() argument
2555 if (auto *CH = dyn_cast_or_null<CleanupHandler>(AH)) in createUnwindMapEntry()

12