HomeSort by relevance Sort by last modified time
    Searched refs:np (Results 126 - 150 of 268) sorted by null

1 2 3 4 56 7 8 91011

  /external/openssl/crypto/
sparcv9cap.c 17 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)
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/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
x86-mont.pl 46 $np="ebp";
73 # pointer and ap argument [np is also position sensitive vector,
92 &mov ("edx",&DWP(3*4,"esi"));# const BN_ULONG *np
126 &mov ($np,$_np);
133 &movd ($car1,&DWP(0,$np)); # np[0]
142 &pmuludq($car1,$mul1); # "t[0]"*np[0]*n0
145 &movd ($acc1,&DWP(4,$np)); # np[1]
154 &pmuludq($acc1,$mul1); # np[j]*m
    [all...]
mips-mont.pl 93 $np=$a3; # const BN_ULONG *np,
171 $LD $nj,0($np) # np[0]
181 $LD $nlo,$BNSZ($np)
207 $PTR_ADD $nj,$np,$j
263 $LD $nj,($np)
264 $LD $nlo,$BNSZ($np)
295 $PTR_ADD $nj,$np,$j
363 $LD $lo1,($np)
    [all...]
x86_64-mont.pl 50 $np="%rcx"; # const BN_ULONG *np,
108 mov ($np),%rax
113 mulq $m1 # np[0]*m1
127 add $hi0,$hi1 # np[j]*m1+ap[j]*bp[0]
136 mov ($np,$j,8),%rax
141 mulq $m1 # np[j]*m1
148 add $hi0,$hi1 # np[j]*m1+ap[j]*bp[0]
170 mov ($np),%rax
176 mulq $m1 # np[0]*m
    [all...]
ia64-mont.pl 28 # Shorter vector support is implemented by zero-padding ap and np
73 // const BN_ULONG *bp,const BN_ULONG *np,
135 { .mmi; ldf8 nlo[2]=[nptr],8 // np[0]
138 { .mmi; ldf8 nlo[1]=[nptr],8 // np[1]
218 { .mfi; ldf8 nlo[2]=[nptr],16 // np[0]
221 { .mfi; ldf8 nlo[1]=[r31] // np[1]
319 { .mfi; (p16) ld8 n[0]=[nptr],8 // n=*(np++)
424 { .mmi; ldf8 ni0=[nptr],16 // np[0]
425 ldf8 ni1=[r31],16 // np[1]
440 { .mfi; (p4)ldf8 ni2=[nptr],16 // np[2
    [all...]
  /external/openssl/crypto/bn/asm/
x86-mont.pl 46 $np="ebp";
73 # pointer and ap argument [np is also position sensitive vector,
92 &mov ("edx",&DWP(3*4,"esi"));# const BN_ULONG *np
126 &mov ($np,$_np);
133 &movd ($car1,&DWP(0,$np)); # np[0]
142 &pmuludq($car1,$mul1); # "t[0]"*np[0]*n0
145 &movd ($acc1,&DWP(4,$np)); # np[1]
154 &pmuludq($acc1,$mul1); # np[j]*m
    [all...]
mips-mont.pl 93 $np=$a3; # const BN_ULONG *np,
171 $LD $nj,0($np) # np[0]
181 $LD $nlo,$BNSZ($np)
207 $PTR_ADD $nj,$np,$j
263 $LD $nj,($np)
264 $LD $nlo,$BNSZ($np)
295 $PTR_ADD $nj,$np,$j
363 $LD $lo1,($np)
    [all...]
x86_64-mont.pl 50 $np="%rcx"; # const BN_ULONG *np,
108 mov ($np),%rax
113 mulq $m1 # np[0]*m1
127 add $hi0,$hi1 # np[j]*m1+ap[j]*bp[0]
136 mov ($np,$j,8),%rax
141 mulq $m1 # np[j]*m1
148 add $hi0,$hi1 # np[j]*m1+ap[j]*bp[0]
170 mov ($np),%rax
176 mulq $m1 # np[0]*m
    [all...]
  /external/tcpdump/
print-isakmp.c 125 u_char np, const struct isakmp_gen *ext,
151 /* isakmp->np */
166 /* isakmp->np */
228 #define CHECKLEN(p, np) \
230 ND_PRINT((ndo," [|%s]", NPSTR(np))); \
551 const u_char *cp, *np; local
581 np = (u_char *)ext + sizeof(sa);
586 np += sizeof(ident);
589 ext = (struct isakmp_gen *)np;
2214 u_char np; local
2384 u_char np; local
    [all...]
  /external/e2fsprogs/util/
symlinks.c 165 char *p, *np, *lp, *tail, *msg; local
242 np = new;
245 *np++ = '.';
246 *np++ = '.';
247 *np++ = '/';
251 strcpy (np, tail);
  /external/libpcap/bpf/net/
bpf_filter.c 147 register u_char *cp, *np; local
160 np = mtod(m0, u_char *);
164 return (cp[0] << 24) | (np[0] << 16) | (np[1] << 8) | np[2];
167 return (cp[0] << 24) | (cp[1] << 16) | (np[0] << 8) | np[1];
170 return (cp[0] << 24) | (cp[1] << 16) | (cp[2] << 8) | np[0];
  /external/ipsec-tools/src/racoon/
isakmp_inf.c 138 u_int8_t np;
178 np = gen->np;
181 if (isakmp->np != ISAKMP_NPTYPE_HASH) {
275 s_isakmp_nptype(np));
314 s_isakmp_nptype(gen->np));
602 d->h.np = ISAKMP_NPTYPE_NONE;
666 d->h.np = ISAKMP_NPTYPE_NONE;
752 n->h.np = ISAKMP_NPTYPE_NONE;
814 n->h.np = ISAKMP_NPTYPE_NONE
137 u_int8_t np; local
    [all...]
  /cts/suite/audio_quality/test_description/processing/
playback_thd.py 18 import numpy as np namespace
recording_thd.py 18 import numpy as np namespace
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_exp.c 686 const void *table,const BN_ULONG *np,
693 BN_ULONG *np=mont->N.d, *n0=mont->n0; local
702 bn_mul_mont(tmp.d,am.d,am.d,np,n0,top);
709 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1);
716 bn_mul_mont(tmp.d,tmp.d,tmp.d,np,n0,top);
722 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1);
726 bn_mul_mont(tmp.d,tmp.d,tmp.d,np,n0,top);
732 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1);
734 bn_mul_mont(tmp.d,tmp.d,tmp.d,np,n0,top);
739 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1)
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lparser.h 106 int np; /* number of elements in `p' */ member in struct:FuncState
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
inttree.c 499 } *np; local
503 np = yasm_xmalloc(sizeof(struct nodeent));
504 np->node = x->left;
505 SLIST_INSERT_HEAD(&stuffToFree, np, link);
508 np = yasm_xmalloc(sizeof(struct nodeent));
509 np->node = x->right;
510 SLIST_INSERT_HEAD(&stuffToFree, np, link);
514 np = SLIST_FIRST(&stuffToFree);
515 x = np->node;
517 yasm_xfree(np);
    [all...]
file.c 543 incpath *np; local
559 STAILQ_FOREACH(np, &incpaths, link) {
560 combine = yasm__combpath(np->path, iname);
612 incpath *np = yasm_xmalloc(sizeof(incpath)); local
615 np->path = yasm_xmalloc(len+2);
616 memcpy(np->path, path, len+1);
619 np->path[len] = '/';
620 np->path[len+1] = '\0';
623 STAILQ_INSERT_TAIL(&incpaths, np, link);
  /external/clang/test/SemaCXX/
destructor.cpp 190 struct NP {};
245 NP* np = new NP(); local
246 delete np;
249 NP* np = new NP[4]; local
250 delete[] np;
  /external/openssl/crypto/bn/
bn_exp.c 686 const void *table,const BN_ULONG *np,
693 BN_ULONG *np=mont->N.d, *n0=mont->n0; local
702 bn_mul_mont(tmp.d,am.d,am.d,np,n0,top);
709 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1);
716 bn_mul_mont(tmp.d,tmp.d,tmp.d,np,n0,top);
722 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1);
726 bn_mul_mont(tmp.d,tmp.d,tmp.d,np,n0,top);
732 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1);
734 bn_mul_mont(tmp.d,tmp.d,tmp.d,np,n0,top);
739 bn_mul_mont_gather5(tmp.d,am.d,powerbuf,np,n0,top,i-1)
    [all...]
  /external/qemu/slirp/
socket.h 91 size_t sopreprbuf(struct socket *so, struct iovec *iov, int *np);
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 4342 x1node *np; local
4399 x1node *np; local
4508 x2node *np; local
4567 x2node *np; local
4707 x3node *np; local
4766 x3node *np; local
4849 x4node *np; local
4906 x4node *np; local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 97 PointF np = new PointF(height * (dp.y / len), height * (dp.x / len)); local
98 PointF p2 = new PointF(topLeft.x - np.x, topLeft.y + np.y);
99 PointF p3 = new PointF(topRight.x - np.x, topRight.y + np.y);
  /external/pdfium/core/src/fxcrt/
fx_basic_memmgr_mini.cpp 676 FX_LPVOID np = AllocSmall(newSize); local
677 if (!np) {
680 FXSYS_memcpy32(np, p, oldSize);
682 return np;
704 FX_LPVOID np = NULL; local
706 np = ReallocSmall(pFind, p, oldSize, newSize);
707 if (np) {
708 return np;
712 np = pFind->Realloc(p, oldSize, newSize);
713 if (np) {
    [all...]
  /external/ppp/pppd/
main.c 1838 struct notifier *np; local
1859 struct notifier *np; local
1878 struct notifier *np; local
    [all...]

Completed in 1286 milliseconds

1 2 3 4 56 7 8 91011