Searched refs:digs (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/file/src/
H A Dis_tar.c144 from_oct(const char *where, size_t digs) argument
148 if (digs == 0)
153 if (digs-- == 0)
157 while (digs > 0 && isodigit(*where)) { /* Scan til non-octal */
159 digs--;
162 if (digs > 0 && *where && !isspace(CAST(unsigned char, *where)))
/freebsd-11-stable/contrib/wpa/src/tls/
H A Dlibtommath.c141 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
143 static int s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs);
146 static int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
518 int digs = a->used + b->used + 1; local
520 if ((digs < MP_WARRAY) &&
523 res = fast_s_mp_mul_digs (a, b, c, digs);
2337 /* multiplies |a| * |b| and only computes up to digs digits of result
2341 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
2351 if (((digs) < MP_WARRAY) &&
2354 return fast_s_mp_mul_digs (a, b, c, digs);
2426 fast_s_mp_mul_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
2594 s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Dtekhex.c85 static const char digs[] = "0123456789ABCDEF"; variable
94 (d)[1] = digs[(x) & 0xf]; \
95 (d)[0] = digs[((x)>>4)&0xf];
683 *p++ = digs[(value >> shift) & 0xf];
717 *p++ = digs[len];
H A Dihex.c718 static const char digs[] = "0123456789ABCDEF"; local
726 ((buf)[0] = digs[((v) >> 4) & 0xf], (buf)[1] = digs[(v) & 0xf])
H A Dsrec.c113 static const char digs[] = "0123456789ABCDEF"; variable
118 d[1] = digs[(x) & 0xf]; \
119 d[0] = digs[((x)>>4)&0xf]; \
/freebsd-11-stable/crypto/openssl/crypto/srp/
H A Dsrp_vfy.c545 unsigned char digs[SHA_DIGEST_LENGTH]; local
574 EVP_DigestFinal_ex(&ctxt, digs, NULL);
577 (user, BN_bin2bn(digs, SHA_DIGEST_LENGTH, NULL),
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote-e7000.c1062 static CONST char digs[] = "0123456789ABCDEF"; local
1064 where[0] = digs[(what >> 4) & 0xf];
1065 where[1] = digs[(what & 0xf) & 0xf];
/freebsd-11-stable/usr.bin/pr/
H A Dpr.c114 static char digs[] = "0123456789"; /* page number translation map */ variable
1433 *--pt = digs[line % 10];

Completed in 149 milliseconds