Home
last modified time | relevance | path

Searched refs:realloc (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/quota/quota/
H A D0001-quota-Use-realloc-3-instead-of-reallocarray-3.patch4 Subject: [PATCH] quota: Use realloc(3) instead of reallocarray(3)
8 use realloc(3) for now since in this case there's no real risk of
28 + fsnames = realloc(fsnames, fscount * sizeof(char *));
/OK3568_Linux_fs/buildroot/package/quota/
H A D0001-quota-Use-realloc-3-instead-of-reallocarray-3.patch4 Subject: [PATCH] quota: Use realloc(3) instead of reallocarray(3)
8 use realloc(3) for now since in this case there's no real risk of
28 + fsnames = realloc(fsnames, fscount * sizeof(char *));
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dvalues.c68 void *npid = realloc(values->pid, nthreads_max * sizeof(*values->pid)), in perf_read_values__enlarge_threads()
69 *ntid = realloc(values->tid, nthreads_max * sizeof(*values->tid)), in perf_read_values__enlarge_threads()
70 *nvalue = realloc(values->value, nthreads_max * sizeof(*values->value)); in perf_read_values__enlarge_threads()
121 u64 *counterrawid = realloc(values->counterrawid, counters_max * sizeof(*values->counterrawid)); in perf_read_values__enlarge_counters()
128 countername = realloc(values->countername, counters_max * sizeof(*values->countername)); in perf_read_values__enlarge_counters()
135 u64 *value = realloc(values->value[i], counters_max * sizeof(**values->value)); in perf_read_values__enlarge_counters()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/heaptrack/heaptrack/
H A D0003-heaptrack_preload-Make-noexcept-attribute-conditiona.patch51 -void* realloc(void* ptr, size_t size) noexcept
52 +void* realloc(void* ptr, size_t size) NOEXECPT
54 if (!hooks::realloc) {
56 @@ -219,7 +225,7 @@ void* realloc(void* ptr, size_t size) noexcept
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/
H A Dmalloc.h26 #define realloc(ptr, size) \ macro
35 void *realloc(void *ptr, size_t size);
139 #define nex_realloc(ptr, size) realloc(ptr, size)
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/
H A Dmalloc.h26 #define realloc(ptr, size) \ macro
35 void *realloc(void *ptr, size_t size);
139 #define nex_realloc(ptr, size) realloc(ptr, size)
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinprefsyacc.y315 menu.menuItem = realloc(menu.menuItem, sizeof(MENUITEM)*(menu.menuItems+1)); in AddMenuLine()
340 pref.menu = realloc (pref.menu, (pref.menuItems+1)*sizeof(MENUPARSED)); in CloseMenu()
367 pref.icon = realloc(pref.icon, sizeof(ICONITEM)*(pref.iconItems+1)); in AddIconLine()
402 pref.style = realloc(pref.style, sizeof(STYLEITEM)*(pref.styleItems+1)); in AddStyleLine()
434 pref.sysMenu = realloc(pref.sysMenu, sizeof(SYSMENUITEM)*(pref.sysMenuItems+1)); in AddSysMenuLine()
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/
H A Dmalloc.h48 #define realloc(ptr, size) \ macro
57 void *realloc(void *ptr, size_t size);
/OK3568_Linux_fs/u-boot/include/
H A Dmalloc.h867 #pragma weak realloc = __libc_realloc macro
877 #define realloc realloc_simple macro
900 # define rEALLOc realloc
/OK3568_Linux_fs/buildroot/package/iwd/
H A D0001-build-Add-reallocarray-to-missing-h.patch8 reallocarray is not available with uclibc-ng. So use realloc if
50 + return realloc(ptr, nmemb * size);
/OK3568_Linux_fs/kernel/tools/lib/api/fd/
H A Darray.c27 struct pollfd *entries = realloc(fda->entries, size); in fdarray__grow()
32 priv = realloc(fda->priv, psize); in fdarray__grow()
/OK3568_Linux_fs/kernel/tools/lib/perf/
H A Dcpumap.c122 tmp = realloc(tmp_cpus, max_entries * sizeof(int)); in perf_cpu_map__read()
133 tmp = realloc(tmp_cpus, max_entries * sizeof(int)); in perf_cpu_map__read()
223 tmp = realloc(tmp_cpus, max_entries * sizeof(int)); in perf_cpu_map__new()
/OK3568_Linux_fs/external/xserver/hw/xfree86/parser/
H A DFiles.c109 ptr->file_fontpath = realloc(ptr->file_fontpath, i); in xf86parseFilesSection()
134 ptr->file_modulepath = realloc(ptr->file_modulepath, k); in xf86parseFilesSection()
/OK3568_Linux_fs/kernel/tools/include/tools/
H A Dlibc_compat.h17 return realloc(ptr, bytes); in reallocarray()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dsystem.h516 extern void *realloc (void *, size_t);
856 #define really_call_realloc realloc
862 #define realloc xrealloc macro
882 #undef realloc
883 #pragma GCC poison malloc realloc
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dsystem.h516 extern void *realloc (void *, size_t);
856 #define really_call_realloc realloc
862 #define realloc xrealloc macro
882 #undef realloc
883 #pragma GCC poison malloc realloc
/OK3568_Linux_fs/external/xserver/os/
H A Dreallocarray.c42 return realloc(optr, size * nmemb); in reallocarray()
/OK3568_Linux_fs/external/mpp/osal/linux/
H A Dos_mem.c29 *dst = realloc(src, size); in os_realloc()
/OK3568_Linux_fs/external/mpp/osal/android/
H A Dos_mem.c41 *dst = realloc(src, size); in os_realloc()
/OK3568_Linux_fs/buildroot/package/dmalloc/
H A DConfig.in5 replacement for the system's malloc, realloc, calloc, free and
/OK3568_Linux_fs/u-boot/scripts/
H A Ddocproc.c157 realloc(sym->symbollist, (sym->symbolcnt + 1) * sizeof(char *)); in add_new_symbol()
398 data = realloc(data, data_len + 4096); in find_all_symbols()
422 all_list = realloc(all_list, sizeof(char *) * all_list_len); in find_all_symbols()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/
H A Dsock_server.c88 p = realloc(srvst->socks, sizeof(*srvst->socks) * (srvst->nfds + 1)); in server_add_state()
95 p = realloc(srvst->fds, sizeof(*srvst->fds) * (srvst->nfds + 1)); in server_add_state()
269 p = realloc(ts->bind, sizeof(*p) * (ts->num_binds + 1)); in sock_server_add_fd()
/OK3568_Linux_fs/kernel/tools/lib/traceevent/plugins/
H A Dplugin_function.c65 ptr = realloc(stack->stack, sizeof(char *) * in add_child()
92 ptr = realloc(fstack, sizeof(*fstack) * (cpu + 1)); in add_and_get_index()
/OK3568_Linux_fs/kernel/tools/perf/tests/
H A Dperf-record.c20 realloc: in sched__get_first_possible_cpu()
26 goto realloc; in sched__get_first_possible_cpu()
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dxmalloc.c47 return lsx_checkptr(realloc(ptr, newsize)); in lsx_realloc()

12345678910>>...12