Searched defs:n_bytes (Results 1 – 8 of 8) sorted by relevance
48 size_t n_bytes = *(size_t *)(MP_STATE_THREAD(pystack_cur) - MICROPY_PYSTACK_ALIGN); in mp_pystack_free() local61 static inline void mp_pystack_realloc(void *ptr, size_t n_bytes) { in mp_pystack_realloc()78 #define mp_local_alloc(n_bytes) alloca(n_bytes) argument84 static inline void *mp_nonlocal_alloc(size_t n_bytes) { in mp_nonlocal_alloc()92 static inline void mp_nonlocal_free(void *ptr, size_t n_bytes) { in mp_nonlocal_free()98 static inline void *mp_local_alloc(size_t n_bytes) { in mp_local_alloc()106 static inline void *mp_nonlocal_alloc(size_t n_bytes) { in mp_nonlocal_alloc()116 static inline void mp_nonlocal_free(void *ptr, size_t n_bytes) { in mp_nonlocal_free()
39 void *mp_pystack_alloc(size_t n_bytes) { in mp_pystack_alloc()
72 STATIC void *realloc_ext(void *ptr, size_t n_bytes, bool allow_move) { in realloc_ext()
438 void *gc_alloc(size_t n_bytes, unsigned int alloc_flags) { in gc_alloc()665 void *gc_realloc(void *ptr_in, size_t n_bytes, bool allow_move) { in gc_realloc()
208 size_t n_bytes = MICROPY_QSTR_BYTES_IN_HASH + MICROPY_QSTR_BYTES_IN_LEN + len + 1; in qstr_from_strn() local
327 uint32_t *n_bytes; member
2346 unsigned n_bytes:17; member2374 unsigned n_bytes:12; member
1574 #define PDU_1MBPS_LEN_US(n_bytes) ((8 + (2 + n_bytes))*8) // (1 + 4 + (2 + payload_len) + 3)*8 argument1577 #define PDU_2MBPS_LEN_US(n_bytes) ((9 + (2 + n_bytes))*4) // (2 + 4 + (2 + payload_len) + 3)*4 argument1580 #define PDU_500KBPS_LEN_US(n_bytes) (430 + (2 + n_bytes)*16) // 80 + 256 + 16 + 24 + (2 + payload_l… argument1583 #define PDU_125KBPS_LEN_US(n_bytes) (592 + (2 + n_bytes)*64) // 80 + 256 + 16 + 24 + (2 + payload_l… argument
Completed in 28 milliseconds