Lines Matching refs:scratches

67 	sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,  in sljit_emit_enter()  argument
74 …CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, loca… in sljit_emit_enter()
75 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
84 if (scratches <= 1) in sljit_emit_enter()
87 compiler->saveds_offset = ((scratches == 2) ? 2 : 3) * sizeof(sljit_sw); in sljit_emit_enter()
90 if (scratches > 3) in sljit_emit_enter()
91 compiler->saveds_offset += ((scratches > (3 + 6)) ? 6 : (scratches - 3)) * sizeof(sljit_sw); in sljit_emit_enter()
101 size = 1 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3); in sljit_emit_enter()
118 if (saveds > 2 || scratches > 9) in sljit_emit_enter()
120 if (saveds > 1 || scratches > 10) in sljit_emit_enter()
122 if (saveds > 0 || scratches > 11) in sljit_emit_enter()
162 …saveds = (2 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3)) * sizeof(sljit_u… in sljit_emit_enter()
221 sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context() argument
225 …CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, loc… in sljit_set_context()
226 set_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
235 if (scratches <= 1) in sljit_set_context()
238 compiler->saveds_offset = ((scratches == 2) ? 2 : 3) * sizeof(sljit_sw); in sljit_set_context()
241 if (scratches > 3) in sljit_set_context()
242 compiler->saveds_offset += ((scratches > (3 + 6)) ? 6 : (scratches - 3)) * sizeof(sljit_sw); in sljit_set_context()
253 …saveds = (2 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3)) * sizeof(sljit_u… in sljit_set_context()
288 size = 2 + (compiler->scratches > 7 ? (compiler->scratches - 7) : 0) + in sljit_emit_return()
302 if (compiler->saveds > 0 || compiler->scratches > 11) in sljit_emit_return()
304 if (compiler->saveds > 1 || compiler->scratches > 10) in sljit_emit_return()
306 if (compiler->saveds > 2 || compiler->scratches > 9) in sljit_emit_return()