Searched defs:ap (Results 126 - 150 of 555) sorted by last modified time

1234567891011>>

/external/openssl/crypto/bn/
H A Dbn_asm.c71 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) argument
81 mul_add(rp[0],ap[0],w,c1);
82 mul_add(rp[1],ap[1],w,c1);
83 mul_add(rp[2],ap[2],w,c1);
84 mul_add(rp[3],ap[3],w,c1);
85 ap+=4; rp+=4; num-=4;
90 mul_add(rp[0],ap[0],w,c1);
91 ap++; rp++; num--;
97 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) argument
107 mul(rp[0],ap[
146 bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) argument
175 bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) argument
847 bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0p, int num) argument
941 bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num) argument
986 bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0p, int num) argument
1025 bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num) argument
[all...]
H A Dbn_lib.c649 BN_ULONG t1,t2,*ap,*bp; local
656 ap=a->d;
660 t1= ap[i];
H A Dbn_mont.c180 BN_ULONG *ap,*np,*rp,n0,v,carry; local
237 ap=&(r->d[nl]);
245 v=bn_sub_words(rp,ap,np,nl)-carry;
250 nrp=(BN_ULONG *)(((PTR_SIZE_INT)rp&~m)|((PTR_SIZE_INT)ap&m));
258 t3=nrp[i+2]; ap[i+0]=0;
259 t4=nrp[i+3]; ap[i+1]=0;
260 rp[i+0]=t1; ap[i+2]=0;
261 rp[i+1]=t2; ap[i+3]=0;
266 rp[i]=nrp[i], ap[i]=0;
269 if (bn_sub_words (rp,ap,n
[all...]
H A Dbn_nist.c762 register BN_ULONG *ap,t,c; local
763 ap = t_d;
767 t= *ap;
768 *(ap++)=((t<<1)|c)&BN_MASK2;
979 register BN_ULONG *ap,t,c; local
980 ap = t_d;
984 t= *ap;
985 *(ap++)=((t<<1)|c)&BN_MASK2;
988 *ap=c;
H A Dbn_shift.c65 register BN_ULONG *ap,*rp,t,c; local
81 ap=a->d;
86 t= *(ap++);
101 BN_ULONG *ap,*rp,t,c; local
113 ap= a->d;
114 j = i-(ap[i-1]==1);
121 t=ap[--i];
126 t=ap[--i];
H A Dbn_sqr.c162 const BN_ULONG *ap; local
166 ap=a;
174 ap++;
175 rp[j]=bn_mul_words(rp,ap,j,ap[-1]);
182 ap++;
183 rp[j]=bn_mul_add_words(rp,ap,j,ap[-1]);
/external/openssl/crypto/
H A Dcryptlib.c836 { va_list ap; local
845 va_start (ap,fmta);
846 vfprintf (stderr,fmta,ap);
847 va_end (ap);
885 va_start (ap,fmta);
886 _vsntprintf (buf,sizeof(buf)/sizeof(TCHAR)-1,fmt,ap);
888 va_end (ap);
904 { va_list ap; local
906 va_start (ap,fmta);
907 vfprintf (stderr,fmta,ap);
[all...]
H A Dmem_dbg.c318 const char *ap=(const char *)a->addr, local
320 if (ap==bp) return 0;
321 else if (ap>bp) return 1;
H A Dsparcv9cap.c17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num) argument
19 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
20 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
25 return bn_mul_mont_fpu(rp,ap,bp,np,n0,num);
27 return bn_mul_mont_int(rp,ap,bp,np,n0,num);
/external/openssl/crypto/objects/
H A Dobj_dat.c385 static int obj_cmp(const ASN1_OBJECT * const *ap, const unsigned int *bp) argument
388 const ASN1_OBJECT *a= *ap;
/external/openssl/ssl/
H A Dssl_lib.c1259 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap, argument
1264 l=(*ap)->id-(*bp)->id;
/external/mksh/src/
H A Dedit.c2361 x_mapin(const char *cp, Area *ap) argument
2365 strdupx(news, cp, ap);
4078 struct tbl *ap; local
4084 ap = ktsearch(&aliases, alias, hash(alias));
4085 if (!cmd[1] || !ap || !(ap->flag & ISSET))
4093 nlen = strlen(ap->val.s) + 1;
4101 memcpy(nbuf, ap->val.s, nlen);
H A Deval.c132 eval(const char **ap, int f) argument
136 if (*ap == NULL) {
139 vap.ro = ap;
145 while (*ap != NULL)
146 expand(*ap++, &w, f);
1729 struct tbl *ap; local
1731 ap = ktenter(&homedirs, name, hash(name));
1732 if (!(ap->flag & ISSET)) {
1738 strdupx(ap->val.s, pw->pw_dir, APERM);
1739 ap
1827 valsub(struct op *t, Area *ap) argument
[all...]
H A Dexec.c59 const char ** volatile ap = NULL; local
140 ap = (const char **)up;
141 if (ap[0])
142 tp = findcom(ap[0], FC_BI|FC_FUNC);
174 rv = comexec(t, tp, (const char **)ap, flags, xerrok);
333 ap = (t->vars == NULL) ? e->loc->argv + 1 :
350 while (*ap != NULL) {
351 setstr(global(t->str), *ap++, KSH_UNWIND_ERROR);
357 if (!(ccp = do_selectargs(ap, is_first))) {
403 for (ap
493 comexec(struct op *t, struct tbl * volatile tp, const char **ap, volatile int flags, volatile int *xerrok) argument
848 scriptexec(struct op *tp, const char **ap) argument
1542 do_selectargs(const char **ap, bool print_menu) argument
1592 pr_menu(const char * const *ap) argument
1639 pr_list(char * const *ap) argument
[all...]
H A Dfuncs.c1082 struct tbl *ap, **p; local
1084 for (p = ktsort(t); (ap = *p++) != NULL; )
1085 if ((ap->flag & (ISSET|xflag)) == (ISSET|xflag)) {
1088 shf_puts(ap->name, shl_stdout);
1091 print_value_quoted(shl_stdout, ap->val.s);
1100 struct tbl *ap; local
1109 ap = ktsearch(t, alias, h);
1110 if (ap != NULL && (ap->flag&ISSET)) {
1113 shf_puts(ap
1159 struct tbl *ap; local
[all...]
H A Dlalloc.c37 ainit(Area *ap) argument
40 ap->next = NULL;
44 findptr(ALLOC_ITEM **lpp, char *ptr, Area *ap) argument
59 while (ap->next != lp)
60 if ((ap = ap->next) == NULL) {
65 internal_warningf("rogue pointer %zX in ap %zX",
66 (size_t)ptr, (size_t)ap);
73 return (ap);
77 aresize2(void *ptr, size_t fac1, size_t fac2, Area *ap) argument
85 aresize(void *ptr, size_t numb, Area *ap) argument
112 afree(void *ptr, Area *ap) argument
126 afreeall(Area *ap) argument
[all...]
H A Dmain.c1162 vwarningf(unsigned int flags, const char *fmt, va_list ap) argument
1173 shf_vfprintf(shl_out, fmt, ap);
1572 maketemp(Area *ap, Temp_type type, struct temp **tlist) argument
1585 tp = alloc(offsetof(struct temp, tffn[0]) + 14 + len, ap);
1709 ktinit(Area *ap, struct table *tp, uint8_t initshift) argument
1711 tp->areap = ap;
H A Dmisc.c2067 strndup_i(const char *src, size_t len, Area *ap) argument
2072 dst = alloc(len + 1, ap);
2080 strdup_i(const char *src, Area *ap) argument
2082 return (src == NULL ? NULL : strndup_i(src, strlen(src), ap));
H A Dtree.c521 tcopy(struct op *t, Area *ap) argument
530 r = alloc(sizeof(struct op), ap);
536 r->str = wdcopy(t->str, ap);
538 strdupx(r->str, t->str, ap);
547 sizeof(*tw), ap);
550 *rw++ = wdcopy(*tw++, ap);
561 sizeof(*tw), ap));
564 *rw++ = wdcopy(*tw++, ap);
568 r->ioact = (t->ioact == NULL) ? NULL : iocopy(t->ioact, ap);
570 r->left = tcopy(t->left, ap);
578 wdcopy(const char *wp, Area *ap) argument
659 iocopy(struct ioword **iow, Area *ap) argument
692 tfree(struct op *t, Area *ap) argument
728 iofree(struct ioword **iow, Area *ap) argument
[all...]
H A Dvar.c178 char *ap = NULL; local
197 afree(ap, ATEMP);
198 n = ap = cp;
/external/mtpd/
H A Dmtpd.c245 va_list ap; local
246 va_start(ap, format);
247 __android_log_vprint(levels[level], "mtpd", format, ap);
248 va_end(ap);
251 va_list ap;
253 va_start(ap, format);
254 vfprintf(stderr, format, ap);
255 va_end(ap);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.h65 va_list ap; local
66 va_start(ap, format);
67 util_vsnprintf(name, sizeof name, format, ap);
68 va_end(ap);
/external/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_init.c185 va_list ap; local
190 va_start(ap, fmt);
191 _debug_vprintf(fmt, ap);
192 va_end(ap);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c57 va_list ap; local
59 va_start(ap, format);
60 _debug_vprintf(format, ap);
61 va_end(ap);
683 va_list ap; local
684 va_start(ap, format);
685 written = util_vsnprintf(sctx->ptr, sctx->left, format, ap);
686 va_end(ap);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug.c49 void _debug_vprintf(const char *format, va_list ap) argument
55 int ret = util_vsnprintf(buf + len, sizeof(buf) - len, format, ap);
61 util_vsnprintf(buf, sizeof(buf), format, ap);

Completed in 1049 milliseconds

1234567891011>>