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

1 2 3 4 5 67 8 91011

  /external/openssl/crypto/bn/asm/
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...]
mips-mont.S 43 lw $14,0($7) # np[0]
238 subu $24,$10,$24 # tp[i]-np[i]
  /external/srec/srec/cfront/
frontobj.c 383 freqobj->np = 1 << freqobj->lognp; /* fft sizing */
384 while (freqobj->np < freqobj->window_length)
385 freqobj->np *= 2, freqobj->lognp++;
386 while (freqobj->np < 128)
387 freqobj->np *= 2, freqobj->lognp++;
388 if (freqobj->np > NP)
395 / ((double)freqobj->np / (double)256));
399 / ((double)freqobj->np / (double)256));
403 freqobj->window_length = freqobj->np;
    [all...]
  /external/chromium_org/third_party/openssl/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_asm.c 847 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0p, int num)
857 if (ap==bp) return bn_sqr_mont(rp,ap,np,n0p,num);
902 mul_add(c1,np[0],ml,mh,c0);
904 mul_add(c1,ml,np[0],c0);
910 mul_add(c1,np[j],ml,mh,c0);
912 mul_add(c1,ml,np[j],c0);
921 if (tp[num]!=0 || tp[num-1]>=np[num-1])
923 c0 = bn_sub_words(rp,tp,np,num);
941 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)
986 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0p, int num
    [all...]
  /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_asm.c 847 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0p, int num)
857 if (ap==bp) return bn_sqr_mont(rp,ap,np,n0p,num);
902 mul_add(c1,np[0],ml,mh,c0);
904 mul_add(c1,ml,np[0],c0);
910 mul_add(c1,np[j],ml,mh,c0);
912 mul_add(c1,ml,np[j],c0);
921 if (tp[num]!=0 || tp[num-1]>=np[num-1])
923 c0 = bn_sub_words(rp,tp,np,num);
941 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)
986 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0p, int num
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
mips-mont.S 43 lw $14,0($7) # np[0]
238 subu $24,$10,$24 # tp[i]-np[i]
  /external/clang/test/CXX/drs/
dr5xx.cpp 48 void g(NonPod np) { f(np); } // expected-error {{cannot pass}}
  /external/clang/test/SemaCXX/
explicit.cpp 219 NotPtr np; local
222 delete np; // expected-error {{converting delete expression from type 'NotPtr' to type 'int *' invokes an explicit conversion function}}
c99-variable-length-array.cpp 7 NonPOD np; member in struct:NonPOD2
  /external/javassist/src/main/javassist/expr/
NewExpr.java 34 MethodInfo m, String type, int np) {
37 newPos = np;
  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java     [all...]
  /external/qemu/slirp-android/
socket.h 96 size_t sopreprbuf(struct socket *so, struct iovec *iov, int *np);
  /cts/suite/audio_quality/test_description/
processing_main.py 18 import numpy as np namespace
174 data = np.fromstring(raw, dtype=np.int16)
  /external/chromium_org/third_party/libpng/
pngset.c 903 png_sPLT_tp np; local
909 np = (png_sPLT_tp)png_malloc_warn(png_ptr,
912 if (np == NULL)
918 png_memcpy(np, info_ptr->splt_palettes,
925 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
954 info_ptr->splt_palettes = np;
968 png_unknown_chunkp np; local
974 np = (png_unknown_chunkp)png_malloc_warn(png_ptr,
977 if (np == NULL)
984 png_memcpy(np, info_ptr->unknown_chunks
    [all...]
  /external/libpcap/
nametoaddr.c 149 struct netent *np; local
151 if ((np = getnetbyname(name)) != NULL)
152 return np->n_net;
  /frameworks/base/graphics/java/android/graphics/
BitmapFactory.java 562 byte[] np = outputBitmap.getNinePatchChunk();
563 final boolean isNinePatch = np != null && NinePatch.isNinePatchChunk(np);
  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chacha_vec.c 174 unsigned *np; local
192 np = (unsigned *)nonce;
195 np = (unsigned*) nonce;
241 x14 = np[0]; x15 = np[1];
294 op[14] = REVW_BE(REVW_BE(ip[14]) ^ (x14 + np[0]));
295 op[15] = REVW_BE(REVW_BE(ip[15]) ^ (x15 + np[1]));
  /external/mksh/src/
eval.c 1511 char *np; \/* next source component *\/ local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
tran.c 250 Cell *cp, *op, **np; local
253 np = (Cell **) calloc(nsz, sizeof(Cell *));
254 if (np == NULL) /* can't do it, but can keep running. */
260 cp->cnext = np[nh];
261 np[nh] = cp;
265 tp->tab = np;
  /external/qemu/distrib/libpng-1.2.46/
pngset.c 913 png_sPLT_tp np; local
919 np = (png_sPLT_tp)png_malloc_warn(png_ptr,
922 if (np == NULL)
928 png_memcpy(np, info_ptr->splt_palettes,
935 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
964 info_ptr->splt_palettes = np;
978 png_unknown_chunkp np; local
984 np = (png_unknown_chunkp)png_malloc_warn(png_ptr,
987 if (np == NULL)
994 png_memcpy(np, info_ptr->unknown_chunks
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/private/
pprthred.h 200 ** scan in "np".
208 NSPR_API(PRWord *) PR_GetGCRegisters(PRThread *t, int isCurrent, int *np);
  /external/ipsec-tools/src/racoon/
isakmp_cfg.c 147 int np; local
191 np = packet->np;
192 while ((tlen > 0) && (np != ISAKMP_NPTYPE_NONE)) {
207 plog(LLV_DEBUG, LOCATION, NULL, "Seen payload %d\n", np);
210 switch(np) {
257 "Unexpected next payload %d\n", np);
263 np = ph->np;
1115 isakmp_cfg_send(iph1, payload, np, flags, new_exchange
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThrowableTest.java 127 } catch(NullPointerException np) {

Completed in 1954 milliseconds

1 2 3 4 5 67 8 91011