Searched refs:TC_HDR_SIZE (Results 1 – 1 of 1) sorted by relevance
107 #define TC_HDR_SIZE ((sizeof(struct talloc_chunk)+15)&~15) macro108 #define TC_PTR_FROM_CHUNK(tc) ((void *)(TC_HDR_SIZE + (char*)tc))114 struct talloc_chunk *tc = discard_const_p(struct talloc_chunk, pp - TC_HDR_SIZE); in talloc_chunk_from_ptr()183 tc = malloc(TC_HDR_SIZE+size); in _talloc()637 new_ptr = malloc(size + TC_HDR_SIZE); in _talloc_realloc()639 memcpy(new_ptr, tc, tc->size + TC_HDR_SIZE); in _talloc_realloc()643 new_ptr = realloc(tc, size + TC_HDR_SIZE); in _talloc_realloc()
Completed in 4 milliseconds