Lines Matching refs:startsize
10570 pcre_jit_stack_alloc(int startsize, int maxsize)
10573 pcre16_jit_stack_alloc(int startsize, int maxsize)
10576 pcre32_jit_stack_alloc(int startsize, int maxsize)
10579 if (startsize < 1 || maxsize < 1)
10581 if (startsize > maxsize)
10582 startsize = maxsize;
10583 startsize = (startsize + STACK_GROWTH_RATE - 1) & ~(STACK_GROWTH_RATE - 1);
10585 return (PUBL(jit_stack)*)sljit_allocate_stack(startsize, maxsize);
10645 pcre_jit_stack_alloc(int startsize, int maxsize)
10648 pcre16_jit_stack_alloc(int startsize, int maxsize)
10651 pcre32_jit_stack_alloc(int startsize, int maxsize)
10654 (void)startsize;