Searched refs:char_size (Results 1 – 8 of 8) sorted by relevance
148 uint8_t char_size; /**< size of encoded characters */ member
1423 bc_p += re_ctx_p->char_size; in ecma_regexp_run()1448 const uint32_t chars_size = char_count * re_ctx_p->char_size; in ecma_regexp_run()1449 const uint32_t ranges_size = range_count * re_ctx_p->char_size * 2; in ecma_regexp_run()1627 …ctx_p->char_size = (ctx_p->flags & RE_FLAG_UNICODE) ? sizeof (lit_code_point_t) : sizeof (ecma_cha… in ecma_regexp_initialize_context()
42 const int char_size = sizeof(Unsigned_char_type); in update_offset() local44 int step_size = max_step_size / char_size; in update_offset()59 const int step_byte_size = step_size * char_size; in update_offset()
32 template<typename CharType,int char_size = sizeof(CharType) >
1041 Py_ssize_t char_size; in resize_compact() local1054 char_size = PyUnicode_KIND(unicode); in resize_compact()1061 if (length > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) { in resize_compact()1065 new_size = (struct_size + (length + 1) * char_size); in resize_compact()1118 Py_ssize_t char_size; in resize_inplace() local1126 char_size = PyUnicode_KIND(unicode); in resize_inplace()1130 if (length > (PY_SSIZE_T_MAX / char_size - 1)) { in resize_inplace()1134 new_size = (length + 1) * char_size; in resize_inplace()1416 Py_ssize_t char_size; in PyUnicode_New() local1424 char_size = 1; in PyUnicode_New()[all …]
2344 char_size = 1 # sizeof(Py_UCS1)2347 char_size = 2 # sizeof(Py_UCS2)2350 char_size = 4 # sizeof(Py_UCS4)2355 maxlen = ((sys.maxsize - struct_size) // char_size)
2213 intptr_t* char_size,
1279 char_size = cc.sizeof('char') variable1342 glib_conf.set('SIZEOF_CHAR', char_size)