Home
last modified time | relevance | path

Searched refs:char_size (Results 1 – 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.h148 uint8_t char_size; /**< size of encoded characters */ member
Decma-regexp-object.c1423 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()
/third_party/boost/boost/sort/spreadsort/detail/
Dstring_sort.hpp42 const int char_size = sizeof(Unsigned_char_type); in update_offset() local
44 int step_size = max_step_size / char_size; in update_offset()
59 const int step_byte_size = step_size * char_size; in update_offset()
/third_party/boost/libs/locale/src/icu/
Duconv.hpp32 template<typename CharType,int char_size = sizeof(CharType) >
/third_party/python/Objects/
Dunicodeobject.c1041 Py_ssize_t char_size; in resize_compact() local
1054 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() local
1126 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() local
1424 char_size = 1; in PyUnicode_New()
[all …]
/third_party/python/Lib/test/
Dtest_unicode.py2344 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)
/third_party/ejdb/src/bindings/ejdb2_dart/lib/
Ddart_api.h2213 intptr_t* char_size,
/third_party/glib/
Dmeson.build1279 char_size = cc.sizeof('char') variable
1342 glib_conf.set('SIZEOF_CHAR', char_size)