Lines Matching defs:offset_count
173 int offset_count;
2214 OP1(SLJIT_MOV_SI, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, offset_count));
6311 int offset_count = arguments->offset_count;
6335 for (i = 2; i < offset_count; i += 2)
6344 if (offset_count > 0)
6346 if (offset_count > 1)
10382 int length, int start_offset, int options, int *offsets, int offset_count)
10417 arguments.real_offset_count = offset_count;
10419 /* pcre_exec() rounds offset_count to a multiple of 3, and then uses only 2/3 of
10425 if (offset_count != 2)
10426 offset_count = ((offset_count - (offset_count % 3)) * 2) / 3;
10428 if (offset_count > max_offset_count)
10429 offset_count = max_offset_count;
10430 arguments.offset_count = offset_count;
10445 if (retval * 2 > offset_count)
10457 int *offsets, int offset_count, pcre_jit_stack *stack)
10462 int *offsets, int offset_count, pcre16_jit_stack *stack)
10467 int *offsets, int offset_count, pcre32_jit_stack *stack)
10510 arguments.real_offset_count = offset_count;
10512 /* pcre_exec() rounds offset_count to a multiple of 3, and then uses only 2/3 of
10518 if (offset_count != 2)
10519 offset_count = ((offset_count - (offset_count % 3)) * 2) / 3;
10521 if (offset_count > max_offset_count)
10522 offset_count = max_offset_count;
10523 arguments.offset_count = offset_count;
10528 if (retval * 2 > offset_count)