/external/openssl/crypto/sha/asm/ |
sha512-ia64.pl | 68 $SZ=8; 69 $BITS=8*$SZ; 82 $SZ=4; 83 $BITS=8*$SZ; 147 { .mib; add r8=0*$SZ,ctx 148 add r9=1*$SZ,ctx 150 { .mib; add r10=2*$SZ,ctx 151 add r11=3*$SZ,ctx 156 { .mmi; $LDW A_=[r8],4*$SZ 157 $LDW B_=[r9],4*$SZ [all...] |
sha512-s390x.pl | 52 $SZ=8; 66 $SZ=4; 81 $frame=160+16*$SZ; 87 $LD $T1,`$i*$SZ`($inp) ### $i 96 $ST $T1,`160+$SZ*($i%16)`($sp) 104 $ADD $T1,`$i*$SZ`($len,$tbl) # T1+=K[i] 125 $LD $T1,`160+$SZ*(($i+1)%16)`($sp) ### $i 126 $LD $t1,`160+$SZ*(($i+14)%16)`($sp) 134 $ADD $T1,`160+$SZ*($i%16)`($sp) # +=X[i] 137 $ADD $T1,`160+$SZ*(($i+9)%16)`($sp) # +=X[i+9 [all...] |
sha512-sparcv9.pl | 55 $SZ=8; 68 $locals=16*$SZ; # X[16] 81 $SZ=4; 158 } if ($SZ==4); 185 $ST $tmp2,[%sp+`$bias+$frame+$i*$SZ`] 192 ld [%sp+`$bias+$frame+(($i+1+1)%16)*$SZ+0`],%l2 195 ld [%sp+`$bias+$frame+(($i+1+1)%16)*$SZ+4`],%l3 197 ld [%sp+`$bias+$frame+(($i+1+9)%16)*$SZ+0`],%l4 200 ld [%sp+`$bias+$frame+(($i+1+9)%16)*$SZ+4`],%l5 202 ld [%sp+`$bias+$frame+(($i+1+14)%16)*$SZ+0`],%l [all...] |
sha512-x86_64.pl | 59 $SZ=8; 71 $SZ=4; 87 $_ctx="16*$SZ+0*8(%rsp)"; 88 $_inp="16*$SZ+1*8(%rsp)"; 89 $_end="16*$SZ+2*8(%rsp)"; 90 $_rsp="16*$SZ+3*8(%rsp)"; 91 $framesz="16*$SZ+4*8"; 109 mov $T1,`$SZ*($i&0xf)`(%rsp) 125 add ($Tbl,$round,$SZ),$T1 # T1+=K[round] 149 mov `$SZ*(($i+1)&0xf)`(%rsp),$a [all...] |
sha512-ppc.pl | 66 $SZ=8; 78 $SZ=4; 123 $LD $T,`$i*$SZ`($Tbl) 183 $STU $sp,`-($FRAME+16*$SZ)`($sp) 184 $SHL $num,$num,`log(16*$SZ)/log(2)` 210 $LD $A,`0*$SZ`($ctx) 212 $LD $B,`1*$SZ`($ctx) 213 $LD $C,`2*$SZ`($ctx) 214 $LD $D,`3*$SZ`($ctx) 215 $LD $E,`4*$SZ`($ctx [all...] |
/external/qemu/ |
elf_ops.h | 1 static void glue(bswap_ehdr, SZ)(struct elfhdr *ehdr) 18 static void glue(bswap_phdr, SZ)(struct elf_phdr *phdr) 30 static void glue(bswap_shdr, SZ)(struct elf_shdr *shdr) 44 static void glue(bswap_sym, SZ)(struct elf_sym *sym) 52 static struct elf_shdr *glue(find_section, SZ)(struct elf_shdr *shdr_table, 63 static int glue(symfind, SZ)(const void *s0, const void *s1) 76 static const char *glue(lookup_symbol, SZ)(struct syminfo *s, target_ulong orig_addr) 78 struct elf_sym *syms = glue(s->disas_symtab.elf, SZ); 84 sym = bsearch(&key, syms, s->disas_num_syms, sizeof(*syms), glue(symfind, SZ)); 92 static int glue(symcmp, SZ)(const void *s0, const void *s1 [all...] |
loader.c | 280 #define SZ 32 294 #undef SZ 303 #define SZ 64
|
/hardware/ti/omap3/dspbridge/inc/ |
dbtype.h | 122 typedef CHAR SZ[]; /* sz */
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
dbtype.h | 122 typedef CHAR SZ[]; /* sz */
|
/external/mesa3d/src/mesa/main/ |
macros.h | 251 /** Copy \p SZ elements into a 4-element vector */ 252 #define COPY_SZ_4V(DST, SZ, SRC) \ 254 switch (SZ) { \ 262 /** Copy \p SZ elements into a homegeneous (4-element) vector, giving 264 #define COPY_CLEAN_4V(DST, SZ, SRC) \ 267 COPY_SZ_4V( DST, SZ, SRC ); \ 650 #define INTERP_SZ( t, vec, to, out, in, sz ) \ 652 switch (sz) { \
|
/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | 822 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op)) 823 return getTruncateOrZeroExtend(SZ->getOperand(), Ty); [all...] |