Searched refs:expbuf (Results 1 – 5 of 5) sorted by relevance
| /freebsd/lib/libc/stdio/ |
| H A D | printfcommon.h | 286 CHAR expbuf[MAXEXPDIG]; in exponent() local 296 t = expbuf + MAXEXPDIG; in exponent() 302 for (; t < expbuf + MAXEXPDIG; *p++ = *t++); in exponent()
|
| H A D | xprintf_float.c | 87 char expbuf[MAXEXPDIG]; in exponent() local 97 t = expbuf + MAXEXPDIG; in exponent() 103 for (; t < expbuf + MAXEXPDIG; *p++ = *t++) in exponent()
|
| /freebsd/sys/contrib/openzfs/cmd/zfs/ |
| H A D | zfs_main.c | 8218 char expbuf[ZFS_MAX_DATASET_NAME_LEN]; in zfs_do_bookmark() local 8282 strlcpy(expbuf, source, sizeof (expbuf)); in zfs_do_bookmark() 8285 strlcpy(expbuf, bookname, sizeof (expbuf)); in zfs_do_bookmark() 8291 *strpbrk(expbuf, "@#") = '\0'; /* dataset name in buf */ in zfs_do_bookmark() 8292 (void) strlcat(expbuf, *expand, sizeof (expbuf)); in zfs_do_bookmark() 8293 *expand = expbuf; in zfs_do_bookmark()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 4463 SmallVector<char, 6> expbuf; in toStringImpl() local 4465 expbuf.push_back((char) ('0' + (exp % 10))); in toStringImpl() 4469 if (!TruncateZero && expbuf.size() < 2) in toStringImpl() 4470 expbuf.push_back('0'); in toStringImpl() 4471 for (unsigned I = 0, E = expbuf.size(); I != E; ++I) in toStringImpl() 4472 Str.push_back(expbuf[E-1-I]); in toStringImpl()
|
| /freebsd/crypto/openssl/test/ |
| H A D | sslapitest.c | 8394 const char *expbuf = is_fips ? shared_ciphers_data[tst].fipsshared in int_test_ssl_get_shared_ciphers() local 8396 int handshakeok = strcmp(expbuf, "") != 0; in int_test_ssl_get_shared_ciphers() 8452 || !TEST_int_eq(strcmp(buf, expbuf), 0)) { in int_test_ssl_get_shared_ciphers()
|