HomeSort by relevance Sort by last modified time
    Searched refs:CPOOL_SIZE (Results 1 - 2 of 2) sorted by null

  /external/pcre/dist/sljit/
sljitLir.c 134 # define CPOOL_SIZE 512
384 compiler->cpool = (sljit_uw*)SLJIT_MALLOC(CPOOL_SIZE * sizeof(sljit_uw) + CPOOL_SIZE * sizeof(sljit_ub));
391 compiler->cpool_unique = (sljit_ub*)(compiler->cpool + CPOOL_SIZE);
    [all...]
sljitNativeARM_32.c 141 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE);
184 sljit_uw cpool_index = CPOOL_SIZE;
205 if (cpool_index == CPOOL_SIZE) {
207 if (compiler->cpool_fill < CPOOL_SIZE) {
234 if (SLJIT_UNLIKELY((compiler->cpool_diff != CONST_POOL_EMPTY && compiler->size - compiler->cpool_diff >= MAX_DIFFERENCE(4092)) || compiler->cpool_fill >= CPOOL_SIZE))
237 SLJIT_ASSERT(compiler->cpool_fill < CPOOL_SIZE && (inst & 0xfff) == 0);
266 static sljit_uw patch_pc_relative_loads(sljit_uw *last_pc_patch, sljit_uw *code_ptr, sljit_uw* const_pool, sljit_uw cpool_size)
272 sljit_uw* clear_const_pool_end = const_pool + cpool_size;
288 SLJIT_ASSERT(ind < cpool_size && !(*last_pc_patch & (1 << 25)) && (*last_pc_patch & (1 << 20)));
564 sljit_uw cpool_size; local
    [all...]

Completed in 43 milliseconds