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

  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitExecAllocator.c 42 All blocks and the block terminator is started with block_header. The block
146 struct block_header { struct
152 struct block_header header;
159 ((struct block_header*)(((sljit_u8*)base) + offset))
162 #define MEM_START(base) ((void*)(((sljit_u8*)base) + sizeof(struct block_header)))
163 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7)
196 struct block_header *header;
197 struct block_header *next_header;
202 if (size < (64 - sizeof(struct block_header)))
203 size = (64 - sizeof(struct block_header));
    [all...]
sljitProtExecAllocator.c 40 All blocks and the block terminator is started with block_header. The block
217 struct block_header { struct
224 struct block_header header;
231 ((struct block_header*)(((sljit_u8*)base) + offset))
235 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7)
269 struct block_header *header;
270 struct block_header *next_header;
276 if (size < (64 - sizeof(struct block_header)))
277 size = (64 - sizeof(struct block_header));
295 header = (struct block_header*)free_block
    [all...]

Completed in 11 milliseconds