Home
last modified time | relevance | path

Searched refs:CHUNK_PSIZE (Results 1 – 4 of 4) sorted by relevance

/third_party/musl/src/internal/
Dmalloc_impl.h31 #define CHUNK_PSIZE(c) ((c)->psize & -2) macro
32 #define PREV_CHUNK(c) ((struct chunk *)((char *)(c) - CHUNK_PSIZE(c)))
/third_party/musl/porting/liteos_a/user_debug/src/internal/
Dmalloc_impl.h76 #define CHUNK_PSIZE(c) ((c)->psize & -2) macro
77 #define PREV_CHUNK(c) ((struct chunk *)((char *)(c) - CHUNK_PSIZE(c)))
/third_party/musl/porting/linux/user/src/internal/
Dmalloc_impl.h104 #define CHUNK_PSIZE(c) ((c)->psize & -2) macro
105 #define PREV_CHUNK(c) ((struct chunk *)((char *)(c) - CHUNK_PSIZE(c)))
/third_party/musl/porting/liteos_a/user_debug/src/malloc/
Dmemory_check.c402 checksum = CHUNK_SIZE(self) ^ CHUNK_PSIZE(self) ^ NODE_MAGIC; in is_invalid()
413 cur->checksum = CHUNK_SIZE(cur) ^ CHUNK_PSIZE(cur) ^ NODE_MAGIC; in calculate_checksum()
417 next->checksum = CHUNK_SIZE(next) ^ CHUNK_PSIZE(next) ^ NODE_MAGIC; in calculate_checksum()