Searched refs:m_realloc (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | misc.h | 79 #define m_renew(type, ptr, old_num, new_num) ((type *)(m_realloc((ptr), sizeof(type) * (old_num), s… 84 #define m_renew(type, ptr, old_num, new_num) ((type *)(m_realloc((ptr), sizeof(type) * (new_num)))) 96 void *m_realloc(void *ptr, size_t old_num_bytes, size_t new_num_bytes); 100 void *m_realloc(void *ptr, size_t new_num_bytes);
|
A D | malloc.c | 136 void *m_realloc(void *ptr, size_t old_num_bytes, size_t new_num_bytes) in m_realloc() function 138 void *m_realloc(void *ptr, size_t new_num_bytes) in m_realloc()
|
A D | dynruntime.h | 54 #define m_realloc(ptr, new_num_bytes) (m_realloc_dyn((ptr), (new_num_bytes))) macro
|
Completed in 6 milliseconds