Searched refs:snum (Results 1 – 4 of 4) sorted by relevance
/external/boringssl/src/crypto/bn/ |
D | div.c | 118 BIGNUM *tmp, wnum, *snum, *sdiv, *res; in BN_div() local 156 snum = BN_CTX_get(ctx); in BN_div() 163 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL) { in BN_div() 174 if (!(BN_lshift(snum, num, norm_shift))) { in BN_div() 177 snum->neg = 0; in BN_div() 184 if (snum->top <= sdiv->top + 1) { in BN_div() 185 if (bn_wexpand(snum, sdiv->top + 2) == NULL) { in BN_div() 188 for (i = snum->top; i < sdiv->top + 2; i++) { in BN_div() 189 snum->d[i] = 0; in BN_div() 191 snum->top = sdiv->top + 2; in BN_div() [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
D | DFA.java | 291 int snum=0; in resetStateNumbersToBeContiguous() local 308 s.stateNumber = snum; // rewrite state numbers to be 0..n-1 in resetStateNumbersToBeContiguous() 309 snum++; in resetStateNumbersToBeContiguous() 312 if ( snum!=getNumberOfStates() ) { in resetStateNumbersToBeContiguous() 315 "!= num renumbered states "+snum); in resetStateNumbersToBeContiguous()
|
/external/webrtc/webrtc/base/ |
D | stringutils.h | 101 inline unsigned long strtoul(const wchar_t* snum, wchar_t** end, int base) { in strtoul() argument 102 return wcstoul(snum, end, base); in strtoul()
|
/external/elfutils/src/ |
D | readelf.c | 6080 Dwarf_Sword snum = 0; in attr_callback() local 6082 if (unlikely (dwarf_formsdata (attrp, &snum) != 0)) in attr_callback() 6091 printf (" %" PRIdMAX "\n", (intmax_t) snum); in attr_callback() 6101 printf (" (%" PRIdMAX ")\n", (intmax_t) snum); in attr_callback()
|