Home
last modified time | relevance | path

Searched refs:expbuf (Results 1 – 5 of 5) sorted by relevance

/freebsd/lib/libc/stdio/
H A Dprintfcommon.h286 CHAR expbuf[MAXEXPDIG]; in exponent() local
296 t = expbuf + MAXEXPDIG; in exponent()
302 for (; t < expbuf + MAXEXPDIG; *p++ = *t++); in exponent()
H A Dxprintf_float.c87 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 Dzfs_main.c8218 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 DAPFloat.cpp4463 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 Dsslapitest.c8394 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()