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

  /external/pcre/dist/sljit/
sljitNativeX86_32.c 144 SLJIT_COMPILE_ASSERT(FIXED_LOCALS_OFFSET >= (2 + 4) * sizeof(sljit_uw), require_at_least_two_words);
146 /* Ignore pushed registers and FIXED_LOCALS_OFFSET when
149 local_size = ((FIXED_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds;
151 local_size = FIXED_LOCALS_OFFSET + ((local_size + sizeof(sljit_uw) - 1) & ~(sizeof(sljit_uw) - 1));
160 local_size -= FIXED_LOCALS_OFFSET;
163 SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, FIXED_LOCALS_OFFSET));
193 compiler->local_size = ((FIXED_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds;
195 compiler->local_size = FIXED_LOCALS_OFFSET + ((local_size + sizeof(sljit_uw) - 1) & ~(sizeof(sljit_uw) - 1));
sljitLir.c 243 #define FIXED_LOCALS_OFFSET ((2 + 4) * sizeof(sljit_sw))
246 #define FIXED_LOCALS_OFFSET ((3 + 4) * sizeof(sljit_sw))
254 #define FIXED_LOCALS_OFFSET ((4 + 2) * sizeof(sljit_sw))
256 #define FIXED_LOCALS_OFFSET (sizeof(sljit_sw))
267 #define FIXED_LOCALS_OFFSET ((6 + 8) * sizeof(sljit_sw))
269 #define FIXED_LOCALS_OFFSET (3 * sizeof(sljit_sw))
275 #define FIXED_LOCALS_OFFSET ((6 + 8) * sizeof(sljit_sw))
280 #define FIXED_LOCALS_OFFSET (4 * sizeof(sljit_sw))
285 #define FIXED_LOCALS_OFFSET 0
290 #define FIXED_LOCALS_OFFSET (23 * sizeof(sljit_sw)
    [all...]
sljitNativeX86_64.c 176 local_size = ((local_size + FIXED_LOCALS_OFFSET + saved_register_size + 16 - 1) & ~(16 - 1)) - saved_register_size;
266 compiler->local_size = ((local_size + FIXED_LOCALS_OFFSET + saved_register_size + 16 - 1) & ~(16 - 1)) - saved_register_size;
sljitNativeSPARC_common.c 437 local_size = (local_size + FIXED_LOCALS_OFFSET + 7) & ~0x7;
469 compiler->local_size = (local_size + FIXED_LOCALS_OFFSET + 7) & ~0x7;
    [all...]
sljitNativeMIPS_common.c 560 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET;
621 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET;
    [all...]
sljitNativePPC_common.c 623 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET;
662 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET;
    [all...]
sljitNativeX86_common.c 75 w = FIXED_LOCALS_OFFSET + ((p) - (SLJIT_R3 + 4)) * sizeof(sljit_sw); \
    [all...]

Completed in 221 milliseconds