/external/clang/test/Preprocessor/ |
extension-warning.c | 5 #define TY typeof 10 TY(1) x; // FIXME: And we should warn here
|
/external/openssl/crypto/rc4/asm/ |
rc4-s390x.pl | 58 $TY="%r11"; 92 llgc $acc,2($TY,$key) 96 ic $acc,2($TY,$key) 99 llgc $TY,2($YY,$key) 102 stc $TY,2($XX[0],$key) 107 la $TY,0($TY,$TX[0]) 108 nill $TY,255 117 ic $acc,2($TY,$key) 133 llgc $TY,2($YY,$key [all...] |
rc4-x86_64.pl | 150 my $TY="%rdx"; 177 movl ($dat,$YY,4),$TY#d 179 movl $TY#d,($dat,$XX[0],4) 180 add $TY#b,$TX[0]#b 182 movl ($dat,$TX[0],4),$TY#d 184 xorb ($inp),$TY#b 185 movb $TY#b,($out,$inp) 201 movl ($dat,$YY,4),$TY#d 205 movl $TY#d,4*$i($dat,$XX[0],4) 206 add $TX[0]#b,$TY# [all...] |
rc4-parisc.pl | 80 $TY="%r29"; 94 `sprintf("$LDX %$TY(%$key),%$dat1") if ($i>0)` 96 $LDX $YY($key),$TY 104 $ST $TY,0($iy) 105 addl $TX[0],$TY,$TY 107 and $mask,$TY,$TY 118 $LDX $YY($key),$TY 122 $ST $TY,0($ix [all...] |
rc4-md5-x86_64.pl | 103 my $TY="%rdx"; 161 movl ($dat,$YY,4),$TY#d 163 movl $TY#d,($dat,$XX[0],4) 164 add $TY#b,$TX[0]#b 166 movl ($dat,$TX[0],4),$TY#d 168 xorb ($in0),$TY#b 169 movb $TY#b,($out,$in0) 225 #rc4# movl ($dat,$YY,4),$TY#d 230 #rc4# add $TY#b,$TX[0]#b 235 #rc4# movl $TY#d,4*$k($XX[1] [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Execution.cpp | 48 #define IMPLEMENT_BINARY_OPERATOR(OP, TY) \ 49 case Type::TY##TyID: \ 50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \ 54 GenericValue Src2, Type *Ty) { 55 switch (Ty->getTypeID()) { 59 dbgs() << "Unhandled type for FAdd instruction: " << *Ty << "\n"; 65 GenericValue Src2, Type *Ty) { 66 switch (Ty->getTypeID()) [all...] |
/external/llvm/tools/opt/ |
opt.cpp | 377 DIType TY(Context); 378 if (!TY.getName().empty()) { 379 getContextName(TY.getContext(), N); 380 N = N + TY.getName().str() + "::";
|