Home
last modified time | relevance | path

Searched refs:TY (Results 1 – 19 of 19) sorted by relevance

/freebsd-13.1/crypto/openssl/crypto/rc4/asm/
H A Drc4-x86_64.pl165 my $TY="%rdx";
195 add $TY#b,$TX[0]#b
199 xorb ($inp),$TY#b
221 add $TX[0]#b,$TY#b
253 add $TY#b,$TX[0]#b
257 xorb ($inp),$TY#b
335 xorb ($inp),$TY#b
416 movzb $TY#b,$TY#d
418 movzb ($dat,$TY),$TY#d
420 xorb ($inp),$TY#b
[all …]
H A Drc4-s390x.pl65 $TY="%r11";
103 ic $acc,2($TY,$key)
106 llgc $TY,2($YY,$key)
114 la $TY,0($TY,$TX[0])
115 nill $TY,255
124 ic $acc,2($TY,$key)
140 llgc $TY,2($YY,$key)
143 ar $TY,$TX[0]
145 nill $TY,255
149 llgc $TY,2($TY,$key)
[all …]
H A Drc4-parisc.pl87 $TY="%r29";
103 $LDX $YY($key),$TY
111 $ST $TY,0($iy)
112 addl $TX[0],$TY,$TY
114 and $mask,$TY,$TY
125 $LDX $YY($key),$TY
129 $ST $TY,0($ix)
130 addl $TX[0],$TY,$TY
132 and $mask,$TY,$TY
200 $LDX $TY($key),$ix
[all …]
H A Drc4-md5-x86_64.pl116 my $TY="%rdx";
182 movl ($dat,$YY,4),$TY#d
185 add $TY#b,$TX[0]#b
189 xorb ($in0),$TY#b
190 movb $TY#b,($out,$in0)
251 #rc4# add $TY#b,$TX[0]#b
291 #rc4# add $TY#b,$TX[0]#b
331 #rc4# add $TY#b,$TX[0]#b
437 add $TY#b,$TX[0]#b
441 xorb ($in0),$TY#b
[all …]
H A Drc4-c64xplus.pl30 ($KEYA,$XX,$TY,$xx,$ONE,$ret)=map("A$_",(5,7,8,9,1,2));
67 LDBU *${KEYB}[$YY],$TY
75 STB $TY,*${KEYA}[$xx]
78 ADD4 $TY,$TX,$SUM ; [0,0] $TX is not replaced by $tx yet!
141 LDBU *${KEYB}[$YY],$TY
151 STB $TY,*${KEYA}[$xx]
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCTargetOptionsCommandFlags.cpp21 #define MCOPT(TY, NAME) \ argument
22 static cl::opt<TY> *NAME##View; \
23 TY llvm::mc::get##NAME() { \
28 #define MCOPT_EXP(TY, NAME) \ argument
29 MCOPT(TY, NAME) \
30 Optional<TY> llvm::mc::getExplicit##NAME() { \
32 TY res = *NAME##View; \
/freebsd-13.1/contrib/llvm-project/llvm/tools/opt/
H A DBreakpointPrinter.cpp36 } else if (auto *TY = dyn_cast<DIType>(Context)) { in getContextName() local
37 if (!TY->getName().empty()) { in getContextName()
38 getContextName(TY->getScope(), N); in getContextName()
39 N = N + TY->getName().str() + "::"; in getContextName()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCommandFlags.cpp24 #define CGOPT(TY, NAME) \ argument
25 static cl::opt<TY> *NAME##View; \
26 TY codegen::get##NAME() { \
31 #define CGLIST(TY, NAME) \ argument
32 static cl::list<TY> *NAME##View; \
33 std::vector<TY> codegen::get##NAME() { \
38 #define CGOPT_EXP(TY, NAME) \ argument
39 CGOPT(TY, NAME) \
40 Optional<TY> codegen::getExplicit##NAME() { \
42 TY res = *NAME##View; \
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp103 #define IMPLEMENT_BINARY_OPERATOR(OP, TY) \ argument
104 case Type::TY##TyID: \
105 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
167 #define IMPLEMENT_INTEGER_ICMP(OP, TY) \ argument
358 #define IMPLEMENT_FCMP(OP, TY) \ argument
359 case Type::TY##TyID: \
360 Dest.IntVal = APInt(1,Src1.TY##Val OP Src2.TY##Val); \
368 Src1.AggregateVal[_i].TY##Val OP Src2.AggregateVal[_i].TY##Val);\
766 Src1.AggregateVal[i].TY OP Src2.AggregateVal[i].TY; in visitBinaryOperator()
1762 #define IMPLEMENT_VAARG(TY) \ argument
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1535 APInt TY = Y * TC; in exactSIVtest() local
1538 LLVM_DEBUG(dbgs() << "\t TY = " << TY << "\n"); in exactSIVtest()
1567 TLVec.push_back(ceilingOfQuotient(-TY, TA)); in exactSIVtest()
1575 TUVec.push_back(floorOfQuotient(-TY, TA)); in exactSIVtest()
1599 LowerDistance = (TY - TX) + (TA - TB) * TL; in exactSIVtest()
1600 UpperDistance = (TY - TX) + (TA - TB) * TU; in exactSIVtest()
1602 LowerDistance = (TY - TX) + (TA - TB) * TU; in exactSIVtest()
1603 UpperDistance = (TY - TX) + (TA - TB) * TL; in exactSIVtest()
1927 APInt TY = Y * TC; in exactRDIVtest() local
1952 TLVec.push_back(ceilingOfQuotient(-TY, TA)); in exactRDIVtest()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp2918 const auto *TY = cast<TemplateTypeParmDecl>(Y); in isSameTemplateParameter() local
2919 if (TX->isParameterPack() != TY->isParameterPack()) in isSameTemplateParameter()
2921 if (TX->hasTypeConstraint() != TY->hasTypeConstraint()) in isSameTemplateParameter()
2924 const TypeConstraint *TYTC = TY->getTypeConstraint(); in isSameTemplateParameter()
2950 const auto *TY = cast<NonTypeTemplateParmDecl>(Y); in isSameTemplateParameter() local
2951 return TX->isParameterPack() == TY->isParameterPack() && in isSameTemplateParameter()
2952 TX->getASTContext().hasSameType(TX->getType(), TY->getType()); in isSameTemplateParameter()
2956 const auto *TY = cast<TemplateTemplateParmDecl>(Y); in isSameTemplateParameter() local
2957 return TX->isParameterPack() == TY->isParameterPack() && in isSameTemplateParameter()
2960 TY->getTemplateParameters()); in isSameTemplateParameter()
/freebsd-13.1/usr.bin/vi/catalog/
H A Dpolish.UTF-8.base244 254 "%s: OSTRZEŻENIE: PLIK ZOSTAŁ OBCIĘTY"
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEInstrInfo.td1797 multiclass SXATMLDm<SDPatternOperator from, ValueType TY,
1800 def : Pat<(i64 (sext_inreg (i64 (anyext (from ADDRrri:$addr))), TY)),
1802 def : Pat<(i64 (sext_inreg (i64 (anyext (from ADDRrii:$addr))), TY)),
1804 def : Pat<(i64 (sext_inreg (i64 (anyext (from ADDRzri:$addr))), TY)),
1806 def : Pat<(i64 (sext_inreg (i64 (anyext (from ADDRzii:$addr))), TY)),
/freebsd-13.1/contrib/sendmail/contrib/
H A Dmail.local.linux74 MX(SZ.#,X!7.V$9WJA#H"VRF%=\;3"?/$53WO^<4V#F&?4?TY"K7HQX%*H:#!
/freebsd-13.1/contrib/ncurses/misc/
H A Demx.src587 # (kterm: this had extension capabilities ":KJ:TY=ascii:" -- esr)
H A Dterminfo.src8011 # (news-29: this had :TY=ascii: --esr)
8014 # (news-29-euc: this had :TY=euc: --esr)
8017 # (news-29-sjis: this had :TY=sjis: --esr)
8021 # (news-33: this had :TY=ascii: --esr)
8024 # (news-33-euc: this had :TY=euc: --esr)
8027 # (news-33-sjis: this had :TY=sjis: --esr)
8031 # (news-42: this had :TY=ascii: --esr)
8034 # (news-42-euc: this had :TY=euc: --esr)
8119 # (news511: this had :TY=sjis: --esr)
8133 # (news517: this had :TY=sjis:. --esr)
[all …]
/freebsd-13.1/contrib/tzdata/
H A Deurope2944 # 17 RU-TY Tuva Republic
/freebsd-13.1/sys/dev/usb/
H A Dusbdevs3644 product PANASONIC TYTP50P6S 0x3900 TY-TP50P6-S 50in Touch Panel
/freebsd-13.1/share/termcap/
H A Dtermcap3067 :KJ:sc=\E7:rc=\E8:cs=\E[%i%d;%dr:TY=ascii:\