/src/sys/external/bsd/sljit/dist/doc/tutorial/ |
array_access.c | 40 struct sljit_jump *out = sljit_emit_cmp(C, SLJIT_GREATER_EQUAL, SLJIT_S2, 0, SLJIT_S1, 0); // S2 >= a --> jump out
|
branch.c | 38 ret_c = sljit_emit_cmp(C, SLJIT_EQUAL, SLJIT_R0, 0, SLJIT_IMM, 0);
|
func_call.c | 42 print_c = sljit_emit_cmp(C, SLJIT_EQUAL, SLJIT_R0, 0, SLJIT_IMM, 0);
|
loop.c | 44 out = sljit_emit_cmp(C, SLJIT_GREATER_EQUAL, SLJIT_R1, 0, SLJIT_S0, 0);
|
brainfuck.c | 159 end = sljit_emit_cmp(C, SLJIT_EQUAL, SLJIT_R0, 0, SLJIT_IMM, 0); /* R0 == 0 --> jump end */ 188 loop_end = sljit_emit_cmp(C, SLJIT_EQUAL, SLJIT_R0, 0, SLJIT_IMM, 0); /* IF R0 == 0 goto loop_end */
|
/src/sys/net/ |
bpfjit.c | 568 jump = sljit_emit_cmp(compiler, 623 jump = sljit_emit_cmp(compiler, 690 jump = sljit_emit_cmp(compiler, 819 to_mchain_jump = sljit_emit_cmp(compiler, 854 jump = sljit_emit_cmp(compiler, 899 jump = sljit_emit_cmp(compiler, 1010 to_mchain_jump = sljit_emit_cmp(compiler, 1040 jump = sljit_emit_cmp(compiler, 1777 jump = sljit_emit_cmp(compiler, 1972 jump = sljit_emit_cmp(compiler [all...] |
/src/sys/external/bsd/sljit/dist/sljit_src/ |
sljitLir.h | 1143 SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type,
|
sljitLir.c | 1691 SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type, function in typeref:typename:SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump * 2044 SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type, function in typeref:typename:SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump *
|
sljitNativeMIPS_common.c | 1702 SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type, function in typeref:typename:SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump *
|
/src/sys/external/bsd/sljit/dist/test_src/ |
sljitTest.c | 3208 jump = sljit_emit_cmp(compiler, type, src1, src1w, src2, src2w); 3479 alloc1_fail = sljit_emit_cmp(compiler, SLJIT_EQUAL, SLJIT_RETURN_REG, 0, SLJIT_IMM, 0); 3487 jump = sljit_emit_cmp(compiler, SLJIT_LESS, SLJIT_R0, 0, SLJIT_R1, 0); 3494 alloc2_fail = sljit_emit_cmp(compiler, SLJIT_NOT_EQUAL, SLJIT_RETURN_REG, 0, SLJIT_IMM, 0); 3500 sanity1_fail = sljit_emit_cmp(compiler, SLJIT_NOT_EQUAL, SLJIT_R0, 0, SLJIT_R2, 0); 3503 jump = sljit_emit_cmp(compiler, SLJIT_LESS, SLJIT_R0, 0, SLJIT_R1, 0); 3510 alloc3_fail = sljit_emit_cmp(compiler, SLJIT_NOT_EQUAL, SLJIT_RETURN_REG, 0, SLJIT_IMM, 0); 3516 sanity2_fail = sljit_emit_cmp(compiler, SLJIT_NOT_EQUAL, SLJIT_R0, 0, SLJIT_R2, 0); 3519 jump = sljit_emit_cmp(compiler, SLJIT_LESS, SLJIT_R0, 0, SLJIT_R1, 0); 3575 jump = sljit_emit_cmp(compiler, SLJIT_SIG_LESS_EQUAL, SLJIT_R0, 0, SLJIT_R1, 0) [all...] |
/src/sys/external/bsd/sljit/dist/regex_src/ |
regexJIT.c | 1304 jump = sljit_emit_cmp(compiler, type, arg1, arg2, arg3, arg4); \ 1821 jump = sljit_emit_cmp(compiler_common.compiler, type, arg1, arg2, arg3, arg4); \
|