HomeSort by relevance Sort by last modified time
    Searched defs:snum (Results 1 - 6 of 6) sorted by null

  /external/openssl/crypto/bn/
bn_div.c 183 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
226 snum=BN_CTX_get(ctx);
231 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
239 if (!(BN_lshift(snum,num,norm_shift))) goto err;
240 snum->neg=0;
244 /* Since we don't know whether snum is larger than sdiv,
245 * we pad snum with enough zeroes without changing its
248 if (snum->top <= sdiv->top+1)
250 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err;
251 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 97 BigInteger snum = sigInfo.getSerialNumber(); local
103 snum.equals(certs[i].getSerialNumber())) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFA.java 291 int snum=0; local
308 s.stateNumber = snum; // rewrite state numbers to be 0..n-1
309 snum++;
312 if ( snum!=getNumberOfStates() ) {
315 "!= num renumbered states "+snum);
    [all...]
  /external/openssl/crypto/
cryptlib.c 462 unsigned char snum = sizeof(id->ptr); local
463 while (snum--)
464 accum += *(src++) * hash_coeffs[(snum + dnum) & 7];
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 

Completed in 381 milliseconds