/external/chromium/base/threading/ |
D | thread_local_unittest.cc | 70 base::DelegateSimpleThreadPool tp2("ThreadLocalTest tp1", 1); in TEST() local 72 tp2.Start(); in TEST() 94 tp2.AddWork(&getter); in TEST() 116 tp2.AddWork(&getter); in TEST() 124 tp2.AddWork(&setter); in TEST() 129 tp2.AddWork(&getter); in TEST() 141 tp2.JoinAll(); in TEST()
|
/external/openssl/crypto/aes/ |
D | aes_x86core.c | 597 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; in AES_set_decrypt_key() local 601 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^ in AES_set_decrypt_key() 603 m = tp2 & 0x80808080; in AES_set_decrypt_key() 604 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^ in AES_set_decrypt_key() 610 tpb = tp9 ^ tp2; in AES_set_decrypt_key() 612 tpe = tp8 ^ tp4 ^ tp2; in AES_set_decrypt_key() 905 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; in AES_decrypt() local 910 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^ in AES_decrypt() 912 m = tp2 & 0x80808080; in AES_decrypt() 913 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^ in AES_decrypt() [all …]
|
D | aes_core.c | 1329 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; in private_AES_set_decrypt_key() local 1333 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^ in private_AES_set_decrypt_key() 1335 m = tp2 & 0x80808080; in private_AES_set_decrypt_key() 1336 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^ in private_AES_set_decrypt_key() 1342 tpb = tp9 ^ tp2; in private_AES_set_decrypt_key() 1344 tpe = tp8 ^ tp4 ^ tp2; in private_AES_set_decrypt_key()
|
/external/openssl/crypto/aes/asm/ |
D | aes-mips.pl | 1090 my ($tp1,$tp2,$tp4,$tp8,$tp9,$tpb,$tpd,$tpe)=($a4,$a5,$a6,$a7,$s0,$s1,$s2,$s3); 1165 and $tp2,$tp1,$x7f7f7f7f 1167 addu $tp2,$tp2 # tp2<<1 1170 xor $tp2,$m 1172 and $m,$tp2,$x80808080 1173 and $tp4,$tp2,$x7f7f7f7f 1190 xor $tpb,$tp9,$tp2 1194 xor $tpe,$tp2 1195 _ror $tp2,$tpd,-16 1198 xor $tpe,$tp2 [all …]
|
D | aes-586.pl | 1269 my $tp2 = @s[($i+2)%4]; $tp2 = @s[2] if ($i==1); 1277 &lea ($tp2,&DWP(0,$s[$i],$s[$i])); 1279 &and ($tp2,0xfefefefe); 1281 &xor ($acc,$tp2); 1282 &mov ($tp2,$acc); 1287 &lea ($tp4,&DWP(0,$tp2,$tp2)); 1291 &xor ($tp2,$s[$i]); # tp2^tp1 1306 &xor ($s[$i],$tp2); 1307 &xor ($tp2,$tp8); 1308 &rotl ($tp2,24); [all …]
|
D | aes-x86_64.pl | 1504 my ($tp1,$tp2,$tp4,$tp8,$acc)=("%eax","%ebx","%edi","%edx","%r8d"); 1511 lea 0($tp1,$tp1),$tp2 1513 and \$0xfefefefe,$tp2 1515 xor $tp2,$acc 1516 mov $acc,$tp2 1521 lea 0($tp2,$tp2),$tp4 1525 xor $tp1,$tp2 # tp2^tp1 1541 xor $tp8,$tp2 # tp2^tp1^tp8 1543 xor $tp2,$tp8 1547 rol \$24,$tp2 # ROTATE(tp2^tp1^tp8,24) [all …]
|
D | aes-mips.s | 954 addu $9,$9 # tp2<<1
|
D | aes-armv4.s | 681 eor r1,r4,r1,lsl#1 @ tp2 699 eor r4,r4,r5,ror#24 @ ^= ROTATE(tpb=tp9^tp2,8)
|
/external/tcpdump/ |
D | print-atalk.c | 541 register struct hnamemem *tp, *tp2; in ataddr_string() local 586 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt) in ataddr_string() 587 if (tp2->addr == i) { in ataddr_string() 591 tp2->name, athost); in ataddr_string()
|
/external/opencv/cv/src/ |
D | cvcontourtree.cpp | 75 CvPoint t, tp1, tp2, tp3, tn1, tn2, tn3; in icvCreateContourTree() local 191 tp2 = pt1[i - 2]; in icvCreateContourTree() 206 icvCalcTriAttr( contour, tp1, tp2, nmp2, t, nm, &sp1, &sp1_c, &hp1, in icvCreateContourTree() 209 icvCalcTriAttr( contour, tp2, tp3, nmp3, tp1, nmp1, &sp2, &sp2_c, &hp2, in icvCreateContourTree() 333 tp3 = tp2; in icvCreateContourTree() 334 tp2 = tp1; in icvCreateContourTree()
|