Searched refs:aptr (Results 1 – 6 of 6) sorted by relevance
/kernel/liteos_m/kal/libc/newlib/porting/src/ |
D | malloc.c | 52 void __wrap__free_r(struct _reent *reent, void *aptr) in __wrap__free_r() argument 54 if (aptr == NULL) { in __wrap__free_r() 58 LOS_MemFree(OS_SYS_MEM_ADDR, aptr); in __wrap__free_r() 61 size_t __wrap__malloc_usable_size_r(struct _reent *reent, void *aptr) in __wrap__malloc_usable_size_r() argument 84 void *__wrap__realloc_r(struct _reent *reent, void *aptr, size_t nbytes) in __wrap__realloc_r() argument 86 if (aptr == NULL) { in __wrap__realloc_r() 91 free(aptr); in __wrap__realloc_r() 95 return LOS_MemRealloc(OS_SYS_MEM_ADDR, aptr, nbytes); in __wrap__realloc_r()
|
/kernel/liteos_a/testsuites/unittest/libc/io/smoke/ |
D | IO_test_008.cpp | 35 va_list aptr; in Vdpfunc() local 38 va_start(aptr, format); in Vdpfunc() 39 ret = vdprintf(fd, format, aptr); in Vdpfunc() 40 va_end(aptr); in Vdpfunc()
|
/kernel/liteos_m/kal/libc/newlib/porting/include/ |
D | malloc.h | 36 void __wrap__free_r(struct _reent *reent, void *aptr); 37 size_t __wrap__malloc_usable_size_r(struct _reent *reent, void *aptr); 40 void *__wrap__realloc_r(struct _reent *reent, void *aptr, size_t nbytes);
|
/kernel/linux/linux-5.10/sound/core/oss/ |
D | pcm_plugin.h | 26 void *aptr; /* pointer to the allocated area */ member
|
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/nfpcore/ |
D | nfp6000_pcie.c | 514 static int bar_cmp(const void *aptr, const void *bptr) in bar_cmp() argument 516 const struct nfp_bar *a = aptr, *b = bptr; in bar_cmp()
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
D | hdac_hdmi.c | 1687 static int hdac_hdmi_pin2port(void *aptr, int pin) in hdac_hdmi_pin2port() argument 1692 static void hdac_hdmi_eld_notify_cb(void *aptr, int port, int pipe) in hdac_hdmi_eld_notify_cb() argument 1694 struct hdac_device *hdev = aptr; in hdac_hdmi_eld_notify_cb()
|