HomeSort by relevance Sort by last modified time
    Searched defs:np (Results 51 - 75 of 138) sorted by null

1 23 4 5 6

  /external/icu4c/samples/uresb/
uresb.c 189 UChar *newstr, *np; local
201 for (sp = string, np = newstr; *sp; ++sp) {
204 *np++ = 0x005C;
205 *np++ = 0x006E;
209 *np++ = 0x005C;
212 *np++ = *sp;
216 *np = 0;
  /external/libpcap/bpf/net/
bpf_filter.c 138 register u_char *cp, *np; local
151 np = mtod(m0, u_char *);
155 return (cp[0] << 24) | (np[0] << 16) | (np[1] << 8) | np[2];
158 return (cp[0] << 24) | (cp[1] << 16) | (np[0] << 8) | np[1];
161 return (cp[0] << 24) | (cp[1] << 16) | (cp[2] << 8) | np[0];
  /external/openssl/crypto/bn/
bn_mont.c 180 BN_ULONG *ap,*np,*rp,n0,v,carry; local
191 np=n->d;
221 v=bn_mul_add_words(rp,np,nl,(BN_ULONG) t1);
224 v=bn_mul_add_words(rp,np,nl,(rp[0]*n0)&BN_MASK2);
245 v=bn_sub_words(rp,ap,np,nl)-carry;
269 if (bn_sub_words (rp,ap,np,nl)-carry)
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/openssl/crypto/lhash/
lhash.c 312 LHASH_NODE **n,**n1,**n2,*np; local
324 for (np= *n1; np != NULL; )
327 hash=np->hash;
329 hash=lh->hash(np->data);
335 np->next= *n2;
336 *n2=np;
340 np= *n1;
368 LHASH_NODE **n,*n1,*np; local
370 np=lh->b[lh->p+lh->pmax-1]
    [all...]
  /external/skia/tests/
LListTest.cpp 295 Iter np = next; np.prev(); local
299 // Similarly, np should match prev unless next originally walked off the tail.
300 REPORTER_ASSERT(reporter, np.get() == prev.get() || NULL == next.get());
  /frameworks/base/tools/orientationplot/
orientationplot.py 23 import numpy as np namespace
  /frameworks/base/tools/velocityplot/
velocityplot.py 27 import numpy as np namespace
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.cpp 215 ImageTypeShortBase *s, *ns, *ls, *p, *np; local
223 np = p + in->pitch;
226 for (; s < ls; s = ns, ns += scr->pitch, p = np, np += in->pitch) {
242 np = p + pitch2;
243 for (; s < ls; s = ns, ns += out->pitch, p = np, np += pitch2) {
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Pyramid.cpp 215 ImageTypeShortBase *s, *ns, *ls, *p, *np; local
223 np = p + in->pitch;
226 for (; s < ls; s = ns, ns += scr->pitch, p = np, np += in->pitch) {
242 np = p + pitch2;
243 for (; s < ls; s = ns, ns += out->pitch, p = np, np += pitch2) {
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.cpp 209 ImageTypeShortBase *s, *ns, *ls, *p, *np; local
217 np = p + in->pitch;
220 for (; s < ls; s = ns, ns += scr->pitch, p = np, np += in->pitch) {
236 np = p + pitch2;
237 for (; s < ls; s = ns, ns += out->pitch, p = np, np += pitch2) {
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_debug_clip.c 229 static int test_cliptest_function( clip_func func, int np,
321 if ( np || psize < 4 )
352 int np, psize; local
381 for ( np = 0 ; np < 2 ; np++ ) {
383 clip_func func = clip_tab[np][psize];
384 long *cycles = &(benchmark_tab[np][psize-1]);
386 if ( test_cliptest_function( func, np, psize, cycles ) == 0 ) {
389 cnames[np], psize, description )
    [all...]
  /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/openssl/openssl/crypto/conf/
conf_def.c 506 char *s,*e,*rp,*p,*rrp,*np,*cp,v; local
578 e=np=s;
583 cp=np;
588 np=e;
605 * np which is the start of the name string which is
613 p=_CONF_get_string(conf,cp,np);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
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/
c99-variable-length-array.cpp 7 NonPOD np; member in struct:NonPOD2
  /external/dhcpcd/
if-options.c 334 char *p = NULL, *np; local
648 np = strchr(p, ' ');
649 if (np == NULL) {
653 *np++ = '\0';
654 while (*np == ' ')
655 np++;
667 parse_addr(&rt->gate, NULL, np) == -1)
  /external/ipsec-tools/src/racoon/
isakmp_quick.c 160 int np;
256 np = ISAKMP_NPTYPE_KE;
258 np = ISAKMP_NPTYPE_ID;
260 np = ISAKMP_NPTYPE_NONE;
261 p = set_isakmp_payload(p, iph2->nonce, np);
264 np = (idci || idcr) ? ISAKMP_NPTYPE_ID : ISAKMP_NPTYPE_NONE;
266 p = set_isakmp_payload(p, iph2->dhpub, np);
269 np = (idcr) ? ISAKMP_NPTYPE_ID : ISAKMP_NPTYPE_NONE;
271 p = set_isakmp_payload(p, iph2->id, np);
1256 np_p = &((struct isakmp_gen *)p)->np; /* XXX *
159 int np; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_hci.c 512 UINT8 *p, *np; local
520 np = p;
531 memcpy (np, p, NFC_HAL_HCI_PIPE_INFO_SIZE);
532 np += NFC_HAL_HCI_PIPE_INFO_SIZE;
537 memset ((UINT8 *) (np), 0, NFC_HAL_HCI_PIPE_INFO_SIZE * (20 - new_num_dyn_pipes));
  /external/libpcap/
nametoaddr.c 151 struct netent *np; local
153 if ((np = getnetbyname(name)) != NULL)
154 return np->n_net;
  /external/mesa3d/src/mesa/math/
m_debug_clip.c 229 static int test_cliptest_function( clip_func func, int np,
321 if ( np || psize < 4 )
352 int np, psize; local
381 for ( np = 0 ; np < 2 ; np++ ) {
383 clip_func func = clip_tab[np][psize];
384 long *cycles = &(benchmark_tab[np][psize-1]);
386 if ( test_cliptest_function( func, np, psize, cycles ) == 0 ) {
389 cnames[np], psize, description )
    [all...]
  /external/openssl/crypto/conf/
conf_def.c 506 char *s,*e,*rp,*p,*rrp,*np,*cp,v; local
578 e=np=s;
583 cp=np;
588 np=e;
605 * np which is the start of the name string which is
613 p=_CONF_get_string(conf,cp,np);
  /external/tcpdump/
print-domain.c 322 register const u_char *np = cp; local
351 cp = ns_nprint(np, bp);
562 register const HEADER *np; local
567 np = (const HEADER *)bp;
568 TCHECK(*np);
570 qdcount = EXTRACT_16BITS(&np->qdcount);
571 ancount = EXTRACT_16BITS(&np->ancount);
572 nscount = EXTRACT_16BITS(&np->nscount);
573 arcount = EXTRACT_16BITS(&np->arcount);
575 if (DNS_QR(np)) {
    [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);
  /ndk/sources/host-tools/make-3.81/
ansi2knr.c 396 char *np = p; local
398 for (;; p = --np) {
399 if (*np == '\n' && np[-1] == '\r')
400 --np;
401 for (; np > limit && np[-1] != '\r' && np[-1] != '\n'; --np)
402 if (np[-1] == 0
    [all...]

Completed in 2249 milliseconds

1 23 4 5 6