Home
last modified time | relevance | path

Searched refs:char_count (Results 1 - 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/test/api/
H A Dtest-ot-name.c43 unsigned int char_count = 100; in test_ot_layout_feature_get_name_ids_and_characters() local
65 0, &char_count, characters); in test_ot_layout_feature_get_name_ids_and_characters()
68 g_assert_cmpint (char_count, ==, 2); in test_ot_layout_feature_get_name_ids_and_characters()
72 char_count = 100; in test_ot_layout_feature_get_name_ids_and_characters()
75 1, &char_count, characters); in test_ot_layout_feature_get_name_ids_and_characters()
77 g_assert_cmpint (char_count, ==, 1); in test_ot_layout_feature_get_name_ids_and_characters()
/third_party/skia/third_party/externals/spirv-tools/test/fuzzers/
H A Dspvtools_dis_fuzzer.cpp45 size_t char_count = input.size() * sizeof(uint32_t) / sizeof(char); in LLVMFuzzerTestOneInput() local
46 input_str.resize(char_count); in LLVMFuzzerTestOneInput()
H A Dspvtools_as_fuzzer.cpp44 size_t char_count = input.size() * sizeof(uint32_t) / sizeof(char); in LLVMFuzzerTestOneInput() local
45 input_str.resize(char_count); in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/
H A Dspvtools_dis_fuzzer.cpp45 size_t char_count = input.size() * sizeof(uint32_t) / sizeof(char); in LLVMFuzzerTestOneInput() local
46 input_str.resize(char_count); in LLVMFuzzerTestOneInput()
H A Dspvtools_as_fuzzer.cpp44 size_t char_count = input.size() * sizeof(uint32_t) / sizeof(char); in LLVMFuzzerTestOneInput() local
45 input_str.resize(char_count); in LLVMFuzzerTestOneInput()
/third_party/spirv-tools/test/fuzzers/
H A Dspvtools_dis_fuzzer.cpp45 size_t char_count = input.size() * sizeof(uint32_t) / sizeof(char); in LLVMFuzzerTestOneInput() local
46 input_str.resize(char_count); in LLVMFuzzerTestOneInput()
/third_party/jerryscript/jerry-core/parser/regexp/
H A Dre-parser.c946 uint32_t char_count = 0; in re_parse_char_class() local
972 char_count++; in re_parse_char_class()
976 char_count++; in re_parse_char_class()
1072 char_count++; in re_parse_char_class()
1077 char_count++; in re_parse_char_class()
1081 char_count++; in re_parse_char_class()
1097 char_count++; in re_parse_char_class()
1117 if (char_count > 0) in re_parse_char_class()
1119 re_insert_value (re_ctx_p, class_offset, char_count); in re_parse_char_class()
H A Dre-bytecode.c563 uint32_t char_count = (flags & RE_CLASS_HAS_CHARS) ? re_get_value (&bytecode_p) : 0; in re_dump_bytecode() local
579 while (char_count--) in re_dump_bytecode()
/third_party/pulseaudio/src/pulsecore/
H A Djson.c719 int char_count = strlen(p); in pa_json_escape() local
723 char_count = 2 * char_count + 1; in pa_json_escape()
726 out_string = pa_xmalloc(char_count); in pa_json_escape()
H A Dcore-util.c3377 int char_count = strlen(p); in pa_escape() local
3381 char_count = 2 * char_count + 1; in pa_escape()
3384 out_string = pa_xmalloc(char_count); in pa_escape()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout.h470 unsigned int *char_count /* IN/OUT. May be NULL */,
H A Dhb-ot-layout.cc1759 * @char_count: (inout) (optional): Input = the maximum number of characters to return;
1761 * @characters: (out caller-allocates) (array length=char_count): A buffer pointer.
1777 unsigned int *char_count, /* IN/OUT. May be NULL */ in hb_ot_layout_feature_get_characters()
1784 .get_characters (start_offset, char_count, characters); in hb_ot_layout_feature_get_characters()
1773 hb_ot_layout_feature_get_characters(hb_face_t *face, hb_tag_t table_tag, unsigned int feature_index, unsigned int start_offset, unsigned int *char_count, hb_codepoint_t *characters ) hb_ot_layout_feature_get_characters() argument
H A Dhb-ot-layout-common.hh1001 get_characters (unsigned start_offset, unsigned *char_count, hb_codepoint_t *chars) const in get_characters()
1003 if (char_count) in get_characters()
1005 + characters.sub_array (start_offset, char_count) in get_characters()
1006 | hb_sink (hb_array (chars, *char_count)) in get_characters()
/third_party/astc-encoder/Source/
H A Dastcenccli_toplevel.cpp790 size_t char_count = strlen(argv[argidx - 1]); in edit_astcenc_config() local
791 if (char_count == 0) in edit_astcenc_config()
797 if (char_count > 4) in edit_astcenc_config()
808 for (size_t i = 0; i < char_count; i++) in edit_astcenc_config()
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-regexp-object.c1390 uint32_t char_count = (flags & RE_CLASS_HAS_CHARS) ? re_get_value (&bc_p) : 0; in ecma_regexp_run() local
1406 while (char_count > 0) in ecma_regexp_run()
1408 char_count--; in ecma_regexp_run()
1448 const uint32_t chars_size = char_count * re_ctx_p->char_size; in ecma_regexp_run()
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-lexer.c692 lit_utf8_size_t utf8_length = 1, decoded_length = 1, char_count = 1; in lexer_parse_identifier() local
717 char_count = 2; in lexer_parse_identifier()
766 PARSER_PLUS_EQUAL_LC (column, char_count); in lexer_parse_identifier()
/third_party/mesa3d/src/imgui/
H A Dimgui.cpp1654 int char_count = 0; in ImTextCountCharsFromUtf8() local
1662 char_count++; in ImTextCountCharsFromUtf8()
1664 return char_count; in ImTextCountCharsFromUtf8()
8819 const int char_count = (int)(line_end - line_start); in LogRenderedText() local
8821 LogText(IM_NEWLINE "%*s%.*s", tree_depth*4, "", char_count, line_start); in LogRenderedText()
8823 LogText(" %.*s", char_count, line_start); in LogRenderedText()
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp1724 int char_count = 0;
1731 char_count++;
1733 return char_count;
/third_party/node/deps/ada/
H A Dada.cpp2838 size_t char_count = (descriptor >> 24);
2840 for (size_t idx = char_index; idx < char_index + char_count; idx++) {

Completed in 91 milliseconds