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

  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_div.c 185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
228 snum=BN_CTX_get(ctx);
233 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
241 if (!(BN_lshift(snum,num,norm_shift))) goto err;
242 snum->neg=0;
246 /* Since we don't know whether snum is larger than sdiv,
247 * we pad snum with enough zeroes without changing its
250 if (snum->top <= sdiv->top+1)
252 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err;
253 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0
    [all...]
  /external/openssl/crypto/bn/
bn_div.c 185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
228 snum=BN_CTX_get(ctx);
233 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
241 if (!(BN_lshift(snum,num,norm_shift))) goto err;
242 snum->neg=0;
246 /* Since we don't know whether snum is larger than sdiv,
247 * we pad snum with enough zeroes without changing its
250 if (snum->top <= sdiv->top+1)
252 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err;
253 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
internal_logging.h 73 LogItem(int v) : tag_(kSigned) { u_.snum = v; }
74 LogItem(long v) : tag_(kSigned) { u_.snum = v; }
75 LogItem(long long v) : tag_(kSigned) { u_.snum = v; }
93 int64_t snum; member in union:tcmalloc::LogItem::__anon19520
internal_logging.cc 135 if (item.u_.snum < 0) {
139 && AddNum(- static_cast<uint64_t>(item.u_.snum), 10);
141 return AddNum(static_cast<uint64_t>(item.u_.snum), 10);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
internal_logging.h 73 LogItem(int v) : tag_(kSigned) { u_.snum = v; }
74 LogItem(long v) : tag_(kSigned) { u_.snum = v; }
75 LogItem(long long v) : tag_(kSigned) { u_.snum = v; }
93 int64_t snum; member in union:tcmalloc::LogItem::__anon19477
internal_logging.cc 136 if (item.u_.snum < 0) {
140 && AddNum(- static_cast<uint64_t>(item.u_.snum), 10);
142 return AddNum(static_cast<uint64_t>(item.u_.snum), 10);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
event_analyzing_sample.py 117 snum = '#' * (int)(math.log(num, 2) + 1)
118 return snum
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils.h 118 inline unsigned long strtoul(const wchar_t* snum, wchar_t** end, int base) {
119 return wcstoul(snum, end, base);
  /external/chromium_org/third_party/webrtc/base/
stringutils.h 101 inline unsigned long strtoul(const wchar_t* snum, wchar_t** end, int base) {
102 return wcstoul(snum, end, base);
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 101 BigInteger snum = sigInfo.getSerialNumber(); local
107 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/chromium_org/third_party/openssl/openssl/crypto/
cryptlib.c 462 unsigned char snum = sizeof(id->ptr); local
463 while (snum--)
464 accum += *(src++) * hash_coeffs[(snum + dnum) & 7];
  /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 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 652 milliseconds