/external/boringssl/src/crypto/modes/asm/ |
ghash-armv4.pl | 102 $nlo="r12"; 177 ldrb $nlo,[$inp,#15] 180 eor $nlo,$nlo,$nhi 181 and $nhi,$nlo,#0xf0 182 and $nlo,$nlo,#0x0f 185 add $Zhh,$Htbl,$nlo,lsl#4 186 ldmia $Zhh,{$Zll-$Zhh} @ load Htbl[nlo] 188 ldrb $nlo,[$inp,#14 [all...] |
ghash-x86.pl | 370 my $nlo = $Zlh; 375 &xor ($nlo,$nlo); # avoid partial register stalls on PIII 377 &mov (&LB($nlo),&LB($nhi)); 378 &shl (&LB($nlo),4); 380 &movq ($Zlo,&QWP(8,$Htbl,$nlo)); 381 &movq ($Zhi,&QWP(0,$Htbl,$nlo)); 386 my $nix = $odd ? $nlo : $nhi; 388 &shl (&LB($nlo),4) if ($odd); 393 &mov (&LB($nlo),&BP($cnt/2,$inp)) if (!$odd && $cnt>=0) [all...] |
ghash-x86_64.pl | 106 $nlo="%rax"; 139 xor $nlo,$nlo 141 mov `&LB("$Zlo")`,`&LB("$nlo")` 143 shl \$4,`&LB("$nlo")` 145 mov 8($Htbl,$nlo),$Zlo 146 mov ($Htbl,$nlo),$Zhi 156 mov ($inp,$cnt),`&LB("$nlo")` 161 mov `&LB("$nlo")`,`&LB("$nhi")` 164 shl \$4,`&LB("$nlo")` [all...] |
/external/boringssl/src/crypto/bn/asm/ |
armv4-mont.pl | 68 $nlo="r12"; # ip 144 mov $nlo,#0 145 umlal $alo,$nlo,$nj,$n0 @ np[0]*n0+"t[0]" 155 umlal $nlo,$nhi,$nj,$n0 @ np[j]*n0 156 adds $nlo,$nlo,$alo 157 str $nlo,[$tp],#4 @ tp[j-1]=,tp++ 158 adc $nlo,$nhi,#0 162 adds $nlo,$nlo,$ah [all...] |
armv8-mont.pl | 48 $lo1,$hi1,$nj,$m1,$nlo,$nhi, 96 mul $nlo,$nj,$m1 // np[1]*m1 119 adds $lo1,$nlo,$hi1 125 mul $nlo,$nj,$m1 // np[j]*m1 136 adds $lo1,$nlo,$hi1 167 mul $nlo,$nj,$m1 // np[1]*m1 181 adds $lo1,$nlo,$hi1 190 mul $nlo,$nj,$m1 // np[j]*m1 203 adds $lo1,$nlo,$hi1 [all...] |
/external/boringssl/src/crypto/modes/ |
gcm.c | 157 size_t rem, nlo, nhi; local 163 nlo = ((const uint8_t *)Xi)[15]; 164 nhi = nlo >> 4; 165 nlo &= 0xf; 167 Z.hi = Htable[nlo].hi; 168 Z.lo = Htable[nlo].lo; 187 nlo = ((const uint8_t *)Xi)[cnt]; 188 nhi = nlo >> 4; 189 nlo &= 0xf; 200 Z.hi ^= Htable[nlo].hi 235 size_t rem, nlo, nhi; local [all...] |
/external/boringssl/linux-arm/crypto/modes/ |
ghash-armv4.S | 52 ldmia r7,{r4,r5,r6,r7} @ load Htbl[nlo] 78 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nlo] 198 ldmia r7,{r4,r5,r6,r7} @ load Htbl[nlo] 222 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nlo]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
PhoneStatusBar.java | 1889 final View nlo = mStatusBarView.findViewById(R.id.notification_lights_out); local [all...] |