Home
last modified time | relevance | path

Searched refs:size (Results 251 – 275 of 674) sorted by path

1...<<11121314151617181920>>...27

/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_printint.c319 int size = re->name_entry_size; in pcre_printint() local
325 size = ((size << 8) & 0xff00) | ((size >> 8) & 0xff); in pcre_printint()
332 code = codestart = (pcre_uchar *)re + offset + count * size; in pcre_printint()
433 pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) + in pcre_printint()
451 pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) + in pcre_printint()
617 pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) + in pcre_printint()
H A Dpcre_study.c1584 study->size = sizeof(pcre_study_data); in pcre_study()
/PHP-7.2/ext/pcre/pcrelib/sljit/
H A DsljitConfigInternal.h198 #define SLJIT_MALLOC(size, allocator_data) malloc(size) argument
537 SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size);
540 #define SLJIT_MALLOC_EXEC(size) sljit_malloc_exec(size) argument
H A DsljitExecAllocator.c128 sljit_uw size; member
136 sljit_uw size; member
153 free_block->size = size; in sljit_insert_free_block()
185 size = ALIGN_SIZE(size); in sljit_malloc_exec()
189 if (free_block->size >= size) { in sljit_malloc_exec()
197 AS_BLOCK_HEADER(header, size)->prev_size = size; in sljit_malloc_exec()
205 header->size = size; in sljit_malloc_exec()
226 header->size = size; in sljit_malloc_exec()
261 free_block->size += header->size; in sljit_free_exec()
272 free_block->size += ((struct free_block*)header)->size; in sljit_free_exec()
[all …]
H A DsljitLir.c529 SLJIT_ASSERT(size <= 256); in ensure_buf()
539 new_frag->used_size = size; in ensure_buf()
548 SLJIT_ASSERT(size <= 256); in ensure_abuf()
567 if (size <= 0 || size > 128) in sljit_alloc_memory()
569 size = (size + 7) & ~7; in sljit_alloc_memory()
571 if (size <= 0 || size > 64) in sljit_alloc_memory()
573 size = (size + 3) & ~3; in sljit_alloc_memory()
631 label->size = compiler->size; in set_label()
1210 CHECK_ARGUMENT(size > 0 && size < 16); in check_sljit_emit_op_custom()
1909 SLJIT_UNUSED_ARG(size); in sljit_alloc_memory()
[all …]
H A DsljitLir.h280 sljit_uw size; member
324 sljit_uw size; member
450 SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_s32 size);
1384 void *instruction, sljit_s32 size);
H A DsljitNativeARM_32.c144 compiler->size++; in push_cpool()
150 compiler->size++; in push_cpool()
176 compiler->size++; in push_inst()
221 compiler->size++; in push_inst_with_literal()
240 compiler->size++; in push_inst_with_unique_literal()
572 sljit_uw size; in sljit_generate_code() local
595 size = compiler->size + (compiler->patches << 1); in sljit_generate_code()
599 size = compiler->size; in sljit_generate_code()
927 local_size = ((size + local_size + 7) & ~7) - size; in sljit_emit_enter()
946 sljit_s32 size; in sljit_set_context() local
[all …]
H A DsljitNativeARM_64.c133 compiler->size++; in push_inst()
246 SLJIT_ASSERT(!label || label->size >= word_count); in sljit_generate_code()
249 if (label && label->size == word_count) { in sljit_generate_code()
251 label->size = code_ptr - code; in sljit_generate_code()
270 if (label && label->size == word_count) { in sljit_generate_code()
272 label->size = code_ptr - code; in sljit_generate_code()
1575 void *instruction, sljit_s32 size) in sljit_emit_op_custom() argument
1904 if (compiler->last_label && compiler->last_label->size == compiler->size) in sljit_emit_label()
1933 jump->addr = compiler->size; in sljit_emit_jump()
1968 jump->addr = compiler->size; in emit_cmp_to0()
[all …]
H A DsljitNativeARM_T2_32.c195 compiler->size++; in push_inst16()
205 compiler->size += 2; in push_inst32()
409 label->size = code_ptr - code; in sljit_generate_code()
1094 sljit_s32 size, i, tmp; in sljit_emit_enter() local
1114 local_size = ((size + local_size + 7) & ~7) - size; in sljit_emit_enter()
1137 sljit_s32 size; in sljit_set_context() local
1144 compiler->local_size = ((size + local_size + 7) & ~7) - size; in sljit_set_context()
1460 if (size == 2) in sljit_emit_op_custom()
1779 if (compiler->last_label && compiler->last_label->size == compiler->size) in sljit_emit_label()
1810 jump->addr = compiler->size; in sljit_emit_jump()
[all …]
H A DsljitNativeMIPS_common.c212 compiler->size++; in push_inst()
401 if (label && label->size == word_count) { in sljit_generate_code()
403 label->size = code_ptr - code; in sljit_generate_code()
427 if (label && label->size == word_count) { in sljit_generate_code()
429 label->size = code_ptr - code; in sljit_generate_code()
1304 void *instruction, sljit_s32 size) in sljit_emit_op_custom() argument
1607 if (compiler->last_label && compiler->last_label->size == compiler->size) in sljit_emit_label()
1709 jump->addr = compiler->size; in sljit_emit_jump()
1716 jump->addr = compiler->size; in sljit_emit_jump()
1856 jump->addr = compiler->size; in sljit_emit_cmp()
[all …]
H A DsljitNativePPC_common.c249 compiler->size++; in push_inst()
345 …compiler->size += (compiler->size & 0x1) + (sizeof(struct sljit_function_context) / sizeof(sljit_i… in sljit_generate_code()
367 SLJIT_ASSERT(!label || label->size >= word_count); in sljit_generate_code()
371 if (label && label->size == word_count) { in sljit_generate_code()
374 label->size = code_ptr - code; in sljit_generate_code()
429 if (label && label->size == word_count) { in sljit_generate_code()
431 label->size = code_ptr - code; in sljit_generate_code()
1744 void *instruction, sljit_s32 size) in sljit_emit_op_custom() argument
2110 if (compiler->last_label && compiler->last_label->size == compiler->size) in sljit_emit_label()
2209 jump->addr = compiler->size; in sljit_emit_jump()
[all …]
H A DsljitNativeSPARC_common.c197 compiler->size++; in push_inst()
313 SLJIT_ASSERT(!label || label->size >= word_count); in sljit_generate_code()
317 if (label && label->size == word_count) { in sljit_generate_code()
320 label->size = code_ptr - code; in sljit_generate_code()
344 if (label && label->size == word_count) { in sljit_generate_code()
346 label->size = code_ptr - code; in sljit_generate_code()
353 SLJIT_ASSERT(code_ptr - code <= (sljit_s32)compiler->size); in sljit_generate_code()
969 void *instruction, sljit_s32 size) in sljit_emit_op_custom() argument
1246 if (compiler->last_label && compiler->last_label->size == compiler->size) in sljit_emit_label()
1351 jump->addr = compiler->size; in sljit_emit_jump()
[all …]
H A DsljitNativeTILEGX-encoder.c8371 #define BITFIELD(start, size) ((start) | (((1 << (size)) - 1) << 6)) argument
H A DsljitNativeTILEGX_64.c335 compiler->size++; in push_inst_debug()
346 compiler->size++; in push_inst_nodebug()
357 compiler->size++; in push_inst()
1035 label->size = code_ptr - code; in sljit_generate_code()
1064 label->size = code_ptr - code; in sljit_generate_code()
2305 if (compiler->last_label && compiler->last_label->size == compiler->size) in sljit_emit_label()
2373 jump->addr = compiler->size; in sljit_emit_ijump()
2376 jump->addr = compiler->size; in sljit_emit_ijump()
2390 jump->addr = compiler->size; in sljit_emit_ijump()
2473 jump->addr = compiler->size; in sljit_emit_jump()
[all …]
H A DsljitNativeX86_32.c70 sljit_s32 size; in sljit_emit_enter() local
105 size += (args > 0 ? (2 + args * 3) : 0); in sljit_emit_enter()
110 INC_SIZE(size); in sljit_emit_enter()
266 sljit_s32 size; in sljit_emit_return() local
292 size += 2; in sljit_emit_return()
295 size += 2; in sljit_emit_return()
300 INC_SIZE(size); in sljit_emit_return()
334 sljit_s32 flags = size & ~0xf; in emit_x86_instruction()
349 size &= 0xf; in emit_x86_instruction()
350 inst_size = size; in emit_x86_instruction()
[all …]
H A DsljitNativeX86_64.c92 size = reg_map[i] >= 8 ? 2 : 1; in sljit_emit_enter()
95 INC_SIZE(size); in sljit_emit_enter()
105 INC_SIZE(size); in sljit_emit_enter()
112 size = args * 3; in sljit_emit_enter()
116 INC_SIZE(size); in sljit_emit_enter()
251 sljit_s32 i, tmp, size; in sljit_emit_return() local
296 INC_SIZE(size); in sljit_emit_return()
307 INC_SIZE(size); in sljit_emit_return()
365 size &= 0xf; in emit_x86_instruction()
366 inst_size = size; in emit_x86_instruction()
[all …]
H A DsljitNativeX86_common.c532 label->size = code_ptr - code; in sljit_generate_code()
584 SLJIT_ASSERT(code_ptr <= code + compiler->size); in sljit_generate_code()
744 sljit_s32 size; in sljit_emit_op0() local
833 size = (!compiler->mode32) ? 3 : 2; in sljit_emit_op0()
837 INC_SIZE(size); in sljit_emit_op0()
2210 void *instruction, sljit_s32 size) argument
2219 INC_SIZE(size);
2220 SLJIT_MEMCPY(inst, instruction, size);
2490 if (compiler->last_label && compiler->last_label->size == compiler->size)
2583 compiler->size += 5;
[all …]
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dgrepoutput640 pcregrep: check the --buffer-size option
H A Dtestinput112 shown when the link size is 2. This is just a doublecheck test to ensure the
H A Dtestinput14292 /-- Although this saved pattern was compiled with link-size=2, it does no harm
294 "compiled in wrong mode" error as soon as it is loaded, so the link size does
H A Dtestinput1854 /-- Check maximum character size --/
H A Dtestinput213 typical). The others require the link size to be 2. */x
H A Dtestinput235 /-- Check maximum non-UTF character size --/
H A Dtestinput255 /-- Check maximum character size --/
H A Dtestoutput11-162 shown when the link size is 2. This is just a doublecheck test to ensure the

Completed in 136 milliseconds

1...<<11121314151617181920>>...27