Home
last modified time | relevance | path

Searched refs:malloc_snprintf (Results 1 – 15 of 15) sorted by relevance

/aosp_15_r20/external/jemalloc_new/test/include/test/
H A Dtest.h9 malloc_snprintf(prefix, sizeof(prefix), \
15 malloc_snprintf(message, sizeof(message), __VA_ARGS__); \
219 malloc_snprintf(prefix, sizeof(prefix), \
225 malloc_snprintf(message, sizeof(message), __VA_ARGS__); \
235 malloc_snprintf(prefix, sizeof(prefix), \
241 malloc_snprintf(message, sizeof(message), __VA_ARGS__); \
252 malloc_snprintf(prefix, sizeof(prefix), \
257 malloc_snprintf(message, sizeof(message), __VA_ARGS__); \
265 malloc_snprintf(prefix, sizeof(prefix), \
270 malloc_snprintf(message, sizeof(message), __VA_ARGS__); \
[all …]
/aosp_15_r20/external/jemalloc_new/test/src/
H A Dtimer.c33 n = malloc_snprintf(&buf[i], buflen-i, "%"FMTu64, t0 / t1); in timer_ratio()
44 n = malloc_snprintf(&buf[i], buflen-i, "."); in timer_ratio()
51 n = malloc_snprintf(&buf[i], buflen-i, in timer_ratio()
/aosp_15_r20/external/jemalloc_new/include/jemalloc/internal/
H A Demitter.h123 written = malloc_snprintf(out_fmt, out_size, in emitter_gen_fmt()
126 written = malloc_snprintf(out_fmt, out_size, in emitter_gen_fmt()
129 written = malloc_snprintf(out_fmt, out_size, in emitter_gen_fmt()
181 str_written = malloc_snprintf(buf, BUF_SIZE, "\"%s\"", in emitter_print_value()
H A Dlog.h96 dst_offset += malloc_snprintf(buf, JEMALLOC_LOG_BUFSIZE, "%s: ", name); in log_impl_varargs()
99 dst_offset += malloc_snprintf(buf + dst_offset, in log_impl_varargs()
H A Dmalloc_io.h54 size_t malloc_snprintf(char *str, size_t size, const char *format, ...)
H A Dprivate_namespace.h225 #define malloc_snprintf JEMALLOC_N(malloc_snprintf) macro
H A Dprivate_namespace_jet.h228 #define malloc_snprintf JEMALLOC_N(malloc_snprintf) macro
/aosp_15_r20/external/jemalloc_new/src/
H A Dstats.c68 malloc_snprintf(str, 6, "0.00%u", n); in get_rate_str()
70 malloc_snprintf(str, 6, "0.0%u", n); in get_rate_str()
72 malloc_snprintf(str, 6, "0.%u", n); in get_rate_str()
74 malloc_snprintf(str, 6, "1"); in get_rate_str()
84 malloc_snprintf(str, buf_len, "stats.%s.%s.%s", prefix, mutex, counter); in gen_mutex_ctl_str()
366 malloc_snprintf(util, sizeof(util), "1"); in stats_arena_bins_print()
374 malloc_snprintf(util, sizeof(util), " race"); in stats_arena_bins_print()
1207 malloc_snprintf(arena_ind_str, in stats_print_helper()
H A Dmalloc_io.c611 malloc_snprintf(char *str, size_t size, const char *format, ...) { in malloc_snprintf() function
H A Dprof.c1728 malloc_snprintf(filename, DUMP_FILENAME_BUFSIZE, in prof_dump_filename()
1733 malloc_snprintf(filename, DUMP_FILENAME_BUFSIZE, in prof_dump_filename()
/aosp_15_r20/external/jemalloc_new/test/unit/
H A Dmalloc_io.c113 result = malloc_snprintf(buf, len, __VA_ARGS__); \ in TEST_BEGIN()
144 result = malloc_snprintf(buf, sizeof(buf), __VA_ARGS__); \ in TEST_BEGIN()
H A Dprof_thread_name.c79 malloc_snprintf(thread_name, sizeof(thread_name), "thread %u", thd_ind); in thd_start()
H A Demitter.c59 size_t written = malloc_snprintf(buf_descriptor->buf, in forwarding_cb()
/aosp_15_r20/external/rust/android-crates-io/crates/tikv-jemalloc-sys/patches/
Ddelete_c_library.patch17457 - - Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by
41673 - written = malloc_snprintf(out_fmt, out_size,
41676 - written = malloc_snprintf(out_fmt, out_size,
41679 - written = malloc_snprintf(out_fmt, out_size,
41736 - str_written = malloc_snprintf(buf, BUF_SIZE, "\"%s\"",
46337 - dst_offset += malloc_snprintf(buf, JEMALLOC_LOG_BUFSIZE, "%s: ", name);
46340 - dst_offset += malloc_snprintf(buf + dst_offset,
46419 -size_t malloc_snprintf(char *str, size_t size, const char *format, ...)
73664 - size_t printed = malloc_snprintf(buf, FXP_BUF_SIZE, "%"FMTu32".",
73670 - malloc_snprintf(&buf[printed], FXP_BUF_SIZE - printed, "%"FMTu64,
[all …]
/aosp_15_r20/external/jemalloc_new/
H A DChangeLog935 - Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by