Searched refs:snum (Results 1 - 11 of 11) sorted by relevance

/external/openssl/crypto/bn/
H A Dbn_div.c185 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
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dinternal_logging.h73 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::__anon15604
H A Dinternal_logging.cc135 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/
H A Ddiv.c118 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
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dinternal_logging.h73 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::__anon15561
H A Dinternal_logging.cc136 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/
H A Devent_analyzing_sample.py117 snum = '#' * (int)(math.log(num, 2) + 1)
118 return snum
/external/chromium_org/third_party/webrtc/base/
H A Dstringutils.h101 inline unsigned long strtoul(const wchar_t* snum, wchar_t** end, int base) { argument
102 return wcstoul(snum, end, base);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFA.java291 int snum=0;
308 s.stateNumber = snum; // rewrite state numbers to be 0..n-1
309 snum++;
312 if ( snum!=getNumberOfStates() ) {
315 "!= num renumbered states "+snum);
/external/openssl/crypto/
H A Dcryptlib.c462 unsigned char snum = sizeof(id->ptr); local
463 while (snum--)
464 accum += *(src++) * hash_coeffs[(snum + dnum) & 7];
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 267 milliseconds