HomeSort by: relevance | last modified time | path
    Searched defs:mh_size (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
kern_malloc.c 98 size_t mh_size; member in struct:malloc_header
140 mh->mh_size = allocsize - hdroffset;
159 kasan_mark(addr, mh->mh_size - sizeof(struct malloc_header),
160 mh->mh_size - sizeof(struct malloc_header), KASAN_MALLOC_REDZONE);
162 if (mh->mh_size >= PAGE_SIZE + sizeof(struct malloc_header)) {
164 mh->mh_size + PAGE_SIZE - sizeof(struct malloc_header),
167 mh->mh_size + PAGE_SIZE - sizeof(struct malloc_header));
169 kmsan_mark(mh, mh->mh_size, KMSAN_STATE_INITED);
170 kmem_intr_free(mh, mh->mh_size);
205 cursize = mh->mh_size - sizeof(struct malloc_header)
    [all...]
kern_malloc.c 98 size_t mh_size; member in struct:malloc_header
140 mh->mh_size = allocsize - hdroffset;
159 kasan_mark(addr, mh->mh_size - sizeof(struct malloc_header),
160 mh->mh_size - sizeof(struct malloc_header), KASAN_MALLOC_REDZONE);
162 if (mh->mh_size >= PAGE_SIZE + sizeof(struct malloc_header)) {
164 mh->mh_size + PAGE_SIZE - sizeof(struct malloc_header),
167 mh->mh_size + PAGE_SIZE - sizeof(struct malloc_header));
169 kmsan_mark(mh, mh->mh_size, KMSAN_STATE_INITED);
170 kmem_intr_free(mh, mh->mh_size);
205 cursize = mh->mh_size - sizeof(struct malloc_header)
    [all...]

Completed in 22 milliseconds