Searched refs:TABLES_LENGTH (Results 1 – 5 of 5) sorted by relevance
93 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()
78 uint8_t *yield = (uint8_t *)malloc(TABLES_LENGTH);85 gcontext->memctl.malloc(TABLES_LENGTH, gcontext->memctl.memory_data) :86 malloc(TABLES_LENGTH));
197 *((uint32_t *)where) = TABLES_LENGTH; in pcre2_config()
1210 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_copy()1240 newtables = code->memctl.malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), in pcre2_code_copy_with_tables()1247 memcpy(newtables, code->tables, TABLES_LENGTH); in pcre2_code_copy_with_tables()1248 ref_count = (PCRE2_SIZE *)(newtables + TABLES_LENGTH); in pcre2_code_copy_with_tables()1280 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_free()
592 #define TABLES_LENGTH (ctypes_offset + 256) macro
Completed in 63 milliseconds