/freebsd/crypto/heimdal/lib/asn1/ |
H A D | krb5.asn1 | 10 AP-REP, 12 AS-REP, 40 KDC-REP, 70 TGS-REP, 129 KRB5-PADATA-PK-AS-REP-19(15), -- (PKINIT-19) 132 KRB5-PADATA-PK-AS-REP(17), -- (PKINIT-25) 159 -- PK-AS-REP 172 KRB5-PADATA-EPAK-AS-REP(146), 175 KRB5-PADATA-REQ-ENC-PA-REP(149), -- 493 KDC-REP ::= SEQUENCE { [all …]
|
H A D | pkinit.asn1 | 112 PA-PK-AS-REP ::= CHOICE { 162 PA-PK-AS-REP-Win2k ::= CHOICE { 178 PA-PK-AS-REP-BTMM ::= SEQUENCE {
|
H A D | ChangeLog | 768 client support the binding the PA-REP to the AS-REQ packet. This 769 is to fix the problem lack of binding the AS-REQ to the PK-AS-REP
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | regcomp.c | 1117 # define REP(f, t) ((f)*8 + (t)) in repeat() macro 1126 switch (REP(MAP(from), MAP(to))) { in repeat() 1127 case REP(0, 0): /* must be user doing this */ in repeat() 1130 case REP(0, 1): /* as x{1,1}? */ in repeat() 1131 case REP(0, N): /* as x{1,n}? */ in repeat() 1132 case REP(0, INF): /* as x{1,}? */ in repeat() 1142 case REP(1, 1): /* trivial case */ in repeat() 1145 case REP(1, N): /* as x?x{1,n-1} */ in repeat() 1157 case REP(1, INF): /* as x+ */ in repeat() 1161 case REP(N, N): /* as xx{m-1,n-1} */ in repeat() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrTSX.td | 54 // XACQUIRE and XRELEASE reuse REPNE and REP respectively. 55 // For now, just prefer the REP versions.
|
H A D | X86InstrSystem.td | 667 def XCRYPTECB : I<0xa7, MRM_C8, (outs), (ins), "xcryptecb", []>, TB, REP; 668 def XCRYPTCBC : I<0xa7, MRM_D0, (outs), (ins), "xcryptcbc", []>, TB, REP; 669 def XCRYPTCTR : I<0xa7, MRM_D8, (outs), (ins), "xcryptctr", []>, TB, REP; 670 def XCRYPTCFB : I<0xa7, MRM_E0, (outs), (ins), "xcryptcfb", []>, TB, REP; 671 def XCRYPTOFB : I<0xa7, MRM_E8, (outs), (ins), "xcryptofb", []>, TB, REP; 675 def XSHA1 : I<0xa6, MRM_C8, (outs), (ins), "xsha1", []>, TB, REP; 676 def XSHA256 : I<0xa6, MRM_D0, (outs), (ins), "xsha256", []>, TB, REP; 679 def MONTMUL : I<0xa6, MRM_C0, (outs), (ins), "montmul", []>, TB, REP;
|
H A D | X86InstrCompiler.td | 374 [(X86rep_movs i8)]>, REP, AdSize32, 378 [(X86rep_movs i16)]>, REP, AdSize32, OpSize16, 382 [(X86rep_movs i32)]>, REP, AdSize32, OpSize32, 386 [(X86rep_movs i64)]>, REP, AdSize32, 393 [(X86rep_movs i8)]>, REP, AdSize64, 397 [(X86rep_movs i16)]>, REP, AdSize64, OpSize16, 401 [(X86rep_movs i32)]>, REP, AdSize64, OpSize32, 405 [(X86rep_movs i64)]>, REP, AdSize64, 414 [(X86rep_stos i8)]>, REP, AdSize32, 419 [(X86rep_stos i16)]>, REP, AdSize32, OpSize16, [all …]
|
H A D | X86.td | 349 // Ivy Bridge and newer processors have enhanced REP MOVSB and STOSB (aka 350 // "string operations"). See "REP String Enhancement" in the Intel Software 351 // Development Manual. This feature essentially means that REP MOVSB will copy 357 "REP MOVS/STOS are fast">; 359 // Icelake and newer processors have Fast Short REP MOV. 363 "REP MOVSB of short lengths is faster">;
|
H A D | X86InstrFormats.td | 249 bit hasREPPrefix = 0; // Does this inst have a REP prefix?
|
H A D | X86InstrUtils.td | 26 class REP { bit hasREPPrefix = 1; }
|
/freebsd/contrib/nvi/regex/ |
H A D | regcomp.c | 1011 # define REP(f, t) ((f)*8 + (t)) in repeat() macro 1024 switch (REP(MAP(from), MAP(to))) { in repeat() 1025 case REP(0, 0): /* must be user doing this */ in repeat() 1028 case REP(0, 1): /* as x{1,1}? */ in repeat() 1029 case REP(0, N): /* as x{1,n}? */ in repeat() 1030 case REP(0, INF): /* as x{1,}? */ in repeat() 1040 case REP(1, 1): /* trivial case */ in repeat() 1043 case REP(1, N): /* as x?x{1,n-1} */ in repeat() 1055 case REP(1, INF): /* as x+ */ in repeat() 1059 case REP(N, N): /* as xx{m-1,n-1} */ in repeat() [all …]
|
/freebsd/lib/libc/regex/ |
H A D | regcomp.c | 1464 # define REP(f, t) ((f)*8 + (t)) macro 1473 switch (REP(MAP(from), MAP(to))) { 1474 case REP(0, 0): /* must be user doing this */ 1477 case REP(0, 1): /* as x{1,1}? */ 1478 case REP(0, N): /* as x{1,n}? */ 1479 case REP(0, INF): /* as x{1,}? */ 1489 case REP(1, 1): /* trivial case */ 1492 case REP(1, N): /* as x?x{1,n-1} */ 1504 case REP(1, INF): /* as x+ */ 1508 case REP(N, N): /* as xx{m-1,n-1} */ [all …]
|
/freebsd/sys/teken/ |
H A D | sequences | 118 REP Repeat last graphic char ^[ [ b n
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | games | 438 0 string v9.6\0\0 GTA2 replay file (REP), 492 0 string GtaSA29 GTA Replay data (REP), used in GTA SA
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86BaseInfo.h | 808 REP = 1 << REPShift, enumerator
|
H A D | X86MCCodeEmitter.cpp | 895 if (TSFlags & X86II::REP || Flags & X86::IP_HAS_REPEAT) in emitPrefixImpl()
|
/freebsd/crypto/heimdal/ |
H A D | ChangeLog.2005 | 1645 between PA-PK-AS-REP-19 and PA-PK-AS-REQ-Win2k, try harder to
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 2139 # supports REP (repeat). 3496 # * CHT, REP, SU, SD are buggy. 3669 # supports SD/SU, no REP, SL, SR 3995 # Added ANSI sc/rc and REP in 2019/12/17 4017 # REP has 11 +'s except for final 2 +'s, like PuTTY. 4078 # supports REP and SD, but not ECMA-48 SL, SR, SU 4431 # + implements ECMA-48 SD/SU, but not REP, SL/SR. 4700 # - REP, SL/SL work 4724 # - REP, SL/SL do not work, but SD/SU work. 7272 # SL/SR/REP do not work [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.in | 8607 note = "See also \cite{Boulton:1976:REP}.", 26642 @Article{Boulton:1976:REP,
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | UnicodeData.txt | 10374 A3D3;YI SYLLABLE REP;Lo;0;L;;;;;N;;;;;
|
H A D | NormalizationTest.txt | 5427 B822;B822;1105 1166 11C1;B822;1105 1166 11C1; # (렢; 렢; 렢; 렢; 렢; ) HANGUL SYLLABLE REP
|