Home
last modified time | relevance | path

Searched refs:CHUNK_MASK (Results 1 – 3 of 3) sorted by relevance

/external/pcre/dist2/src/sljit/
DsljitExecAllocator.c198 #define CHUNK_MASK (~(CHUNK_SIZE - 1)) macro
285 chunk_size = (size + sizeof(struct block_header) + CHUNK_SIZE - 1) & CHUNK_MASK; in sljit_malloc_exec()
DsljitProtExecAllocator.c264 #define CHUNK_MASK (~(CHUNK_SIZE - 1)) macro
356 chunk_size = (chunk_size + size + CHUNK_SIZE - 1) & CHUNK_MASK; in sljit_malloc_exec()
/external/brotli/research/
Ddeorummolae.cc17 #define CHUNK_MASK (CHUNK_SIZE - 1) macro
51 while (text->size() & CHUNK_MASK) text->push_back(terminator); in rewriteText()