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

  /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::__anon20222
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/boringssl/src/crypto/bn/
div.c 118 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
156 snum = BN_CTX_get(ctx);
163 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL) {
174 if (!(BN_lshift(snum, num, norm_shift))) {
177 snum->neg = 0;
180 /* Since we don't know whether snum is larger than sdiv,
181 * we pad snum with enough zeroes without changing its
184 if (snum->top <= sdiv->top + 1) {
185 if (bn_wexpand(snum, sdiv->top + 2) == NULL) {
188 for (i = snum->top; i < sdiv->top + 2; i++)
    [all...]
  /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::__anon20179
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/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 104 BigInteger snum = sigInfo.getSerialNumber(); local
110 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 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 164 milliseconds