Home
last modified time | relevance | path

Searched refs:TABLES_LENGTH (Results 1 – 5 of 5) sorted by relevance

/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_serialize.c93 total_size = sizeof(pcre2_serialized_data) + TABLES_LENGTH; in pcre2_serialize_encode()
124 memcpy(dst_bytes, tables, TABLES_LENGTH); in pcre2_serialize_encode()
125 dst_bytes += TABLES_LENGTH; in pcre2_serialize_encode()
192 tables = memctl->malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), memctl->memory_data); in pcre2_serialize_decode()
195 memcpy(tables, src_bytes, TABLES_LENGTH); in pcre2_serialize_decode()
196 *(PCRE2_SIZE *)(tables + TABLES_LENGTH) = number_of_codes; in pcre2_serialize_decode()
197 src_bytes += TABLES_LENGTH; in pcre2_serialize_decode()
H A Dpcre2_maketables.c78 uint8_t *yield = (uint8_t *)malloc(TABLES_LENGTH);
85 gcontext->memctl.malloc(TABLES_LENGTH, gcontext->memctl.memory_data) :
86 malloc(TABLES_LENGTH));
H A Dpcre2_config.c197 *((uint32_t *)where) = TABLES_LENGTH; in pcre2_config()
H A Dpcre2_compile.c1205 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_copy()
1235 newtables = code->memctl.malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), in pcre2_code_copy_with_tables()
1242 memcpy(newtables, code->tables, TABLES_LENGTH); in pcre2_code_copy_with_tables()
1243 ref_count = (PCRE2_SIZE *)(newtables + TABLES_LENGTH); in pcre2_code_copy_with_tables()
1273 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_free()
H A Dpcre2_internal.h593 #define TABLES_LENGTH (ctypes_offset + 256) macro

Completed in 35 milliseconds