| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| bn_mp_mul.c | 45 int digs = a->used + b->used + 1; local 48 if ((digs < MP_WARRAY) && 51 res = fast_s_mp_mul_digs (a, b, c, digs);
|
| bn_mp_radix_size.c | 23 int res, digs; local 45 /* digs is the digit count */ 46 digs = 0; 50 ++digs; 67 ++digs; 71 /* return digs + 1, the 1 is for the NULL byte that would be required. */ 72 *size = digs + 1;
|
| bn_mp_toradix.c | 23 int res, digs; local 51 digs = 0; 58 ++digs; 64 bn_reverse ((unsigned char *)_s, digs);
|
| bn_mp_toradix_n.c | 26 int res, digs; local 60 digs = 0; 71 ++digs; 77 bn_reverse ((unsigned char *)_s, digs);
|
| bn_mp_montgomery_reduce.c | 24 int ix, res, digs; local 33 digs = n->used * 2 + 1; 34 if ((digs < MP_WARRAY) && 41 if (x->alloc < digs) { 42 if ((res = mp_grow (x, digs)) != MP_OKAY) { 46 x->used = digs;
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| off_cvt.c | 100 static char digs[] = "0123456789"; local 117 VSTRING_ADDCH(buf, digs[offset % 10]);
|
| /src/external/gpl3/binutils/dist/bfd/ |
| verilog.c | 71 static const char digs[] = "0123456789ABCDEF"; variable 76 d[1] = digs[(x) & 0xf]; \ 77 d[0] = digs[((x) >> 4) & 0xf];
|
| ihex.c | 718 static const char digs[] = "0123456789ABCDEF"; local 726 ((buf)[0] = digs[((v) >> 4) & 0xf], (buf)[1] = digs[(v) & 0xf])
|
| srec.c | 113 static const char digs[] = "0123456789ABCDEF"; variable 118 d[1] = digs[(x) & 0xf]; \ 119 d[0] = digs[((x)>>4)&0xf]; \
|
| tekhex.c | 86 static const char digs[] = "0123456789ABCDEF"; variable 95 (d)[1] = digs[(x) & 0xf]; \ 96 (d)[0] = digs[((x)>>4)&0xf]; 728 *p++ = digs[len & 0xf]; 730 *p++ = digs[(value >> shift) & 0xf]; 748 *p++ = digs[len & 0xf];
|
| /src/external/gpl3/binutils.old/dist/bfd/ |
| verilog.c | 71 static const char digs[] = "0123456789ABCDEF"; variable 76 d[1] = digs[(x) & 0xf]; \ 77 d[0] = digs[((x) >> 4) & 0xf];
|
| ihex.c | 718 static const char digs[] = "0123456789ABCDEF"; local 726 ((buf)[0] = digs[((v) >> 4) & 0xf], (buf)[1] = digs[(v) & 0xf])
|
| srec.c | 113 static const char digs[] = "0123456789ABCDEF"; variable 118 d[1] = digs[(x) & 0xf]; \ 119 d[0] = digs[((x)>>4)&0xf]; \
|
| tekhex.c | 86 static const char digs[] = "0123456789ABCDEF"; variable 95 (d)[1] = digs[(x) & 0xf]; \ 96 (d)[0] = digs[((x)>>4)&0xf]; 728 *p++ = digs[len & 0xf]; 730 *p++ = digs[(value >> shift) & 0xf]; 748 *p++ = digs[len & 0xf];
|
| /src/external/gpl3/gdb/dist/bfd/ |
| verilog.c | 71 static const char digs[] = "0123456789ABCDEF"; variable 76 d[1] = digs[(x) & 0xf]; \ 77 d[0] = digs[((x) >> 4) & 0xf];
|
| ihex.c | 718 static const char digs[] = "0123456789ABCDEF"; local 726 ((buf)[0] = digs[((v) >> 4) & 0xf], (buf)[1] = digs[(v) & 0xf])
|
| srec.c | 113 static const char digs[] = "0123456789ABCDEF"; variable 118 d[1] = digs[(x) & 0xf]; \ 119 d[0] = digs[((x)>>4)&0xf]; \
|
| /src/external/gpl3/gdb.old/dist/bfd/ |
| verilog.c | 71 static const char digs[] = "0123456789ABCDEF"; variable 76 d[1] = digs[(x) & 0xf]; \ 77 d[0] = digs[((x) >> 4) & 0xf];
|
| ihex.c | 718 static const char digs[] = "0123456789ABCDEF"; local 726 ((buf)[0] = digs[((v) >> 4) & 0xf], (buf)[1] = digs[(v) & 0xf])
|
| srec.c | 113 static const char digs[] = "0123456789ABCDEF"; variable 118 d[1] = digs[(x) & 0xf]; \ 119 d[0] = digs[((x)>>4)&0xf]; \
|
| tekhex.c | 86 static const char digs[] = "0123456789ABCDEF"; variable 95 (d)[1] = digs[(x) & 0xf]; \ 96 (d)[0] = digs[((x)>>4)&0xf]; 732 *p++ = digs[len & 0xf]; 734 *p++ = digs[(value >> shift) & 0xf]; 752 *p++ = digs[len & 0xf];
|
| /src/crypto/external/apache2/openssl/dist/crypto/srp/ |
| srp_vfy.c | 557 unsigned char digs[SHA_DIGEST_LENGTH]; local 590 || !EVP_DigestFinal_ex(ctxt, digs, NULL)) 597 BN_bin2bn(digs, SHA_DIGEST_LENGTH, NULL),
|
| /src/crypto/external/bsd/openssl/dist/crypto/srp/ |
| srp_vfy.c | 555 unsigned char digs[SHA_DIGEST_LENGTH]; local 589 || !EVP_DigestFinal_ex(ctxt, digs, NULL)) 596 BN_bin2bn(digs, SHA_DIGEST_LENGTH, NULL),
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/srp/ |
| srp_vfy.c | 533 unsigned char digs[SHA_DIGEST_LENGTH]; local 563 || !EVP_DigestFinal_ex(ctxt, digs, NULL)) 568 BN_bin2bn(digs, SHA_DIGEST_LENGTH, NULL),
|
| /src/usr.bin/pr/ |
| pr.c | 114 static const char digs[] = "0123456789"; /* page number translation map */ variable 1439 *--pt = digs[line % 10];
|