/third_party/node/deps/v8/src/strings/ |
H A D | string-search.h | 308 PatternChar last_char = pattern[pattern_length - 1]; in BoyerMooreSearch() local 314 while (last_char != (c = subject[index + j])) { in BoyerMooreSearch() 329 static_cast<SubjectChar>(last_char)); in BoyerMooreSearch() 370 PatternChar last_char = pattern[pattern_length - 1]; in PopulateBoyerMooreTable() local 384 // No suffix to extend, so we check against last_char only. in PopulateBoyerMooreTable() 385 while ((i > start) && (pattern[i - 1] != last_char)) { in PopulateBoyerMooreTable() 425 PatternChar last_char = pattern[pattern_length - 1]; in BoyerMooreHorspoolSearch() local 428 CharOccurrence(char_occurrences, static_cast<SubjectChar>(last_char)); in BoyerMooreHorspoolSearch() 434 while (last_char != (subject_char = subject[index + j])) { in BoyerMooreHorspoolSearch()
|
/third_party/node/deps/v8/src/third_party/vtune/ |
H A D | vtune-jit.cc | 164 char last_char = ' '; in GetFunctionNameFromMixedName() local 168 last_char = ')'; in GetFunctionNameFromMixedName() 172 if (str[index] == last_char && parenthesis_count == 0) { in GetFunctionNameFromMixedName() 173 if (last_char == ')') count++; in GetFunctionNameFromMixedName()
|
/third_party/node/src/ |
H A D | string_search.h | 347 Char last_char = pattern_[pattern_length - 1]; in BoyerMooreSearch() local 353 while (last_char != (c = subject[index + j])) { in BoyerMooreSearch() 370 CharOccurrence(bad_char_occurrence, last_char); in BoyerMooreSearch() 410 Char last_char = pattern_[pattern_length - 1]; in PopulateBoyerMooreTable() local 424 // No suffix to extend, so we check against last_char only. in PopulateBoyerMooreTable() 425 while ((i > start) && (pattern_[i - 1] != last_char)) { in PopulateBoyerMooreTable() 464 Char last_char = pattern_[pattern_length - 1]; in BoyerMooreHorspoolSearch() local 467 CharOccurrence(char_occurrences, last_char); in BoyerMooreHorspoolSearch() 474 while (last_char != (subject_char = subject[index + j])) { in BoyerMooreHorspoolSearch()
|
/third_party/skia/third_party/externals/freetype/include/freetype/ |
H A D | ftwinfnt.h | 206 FT_Byte last_char; member
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
H A D | rc_test_helpers.c | 562 char last_char = line[MAX_LINE_LENGTH - 1]; in load_program() local 563 if (last_char && last_char != '\n') { in load_program()
|
/third_party/zlib/contrib/iostream3/ |
H A D | zfstream.cc | 250 char_type last_char = traits_type::to_char_type(c); in overflow() 252 if (gzwrite(file, &last_char, 1) != 1) in overflow()
|
/third_party/skia/third_party/externals/freetype/src/winfonts/ |
H A D | winfnt.c | 168 FT_FRAME_BYTE ( last_char ), 633 cmap->count = (FT_UInt32)( font->header.last_char - cmap->first + 1 ); in fnt_cmap_init() 876 if ( font->header.last_char < font->header.first_char ) in FNT_Face_Init() 884 root->num_glyphs = font->header.last_char - in FNT_Face_Init()
|
/third_party/libwebsockets/lib/roles/h1/ |
H A D | ops-h1.c | 44 unsigned char *last_char, *oldbuf = buf; in lws_read_h1() local 77 last_char = buf; in lws_read_h1() 99 len -= (unsigned int)lws_ptr_diff(buf, last_char); in lws_read_h1()
|
/third_party/vulkan-loader/loader/ |
H A D | loader_windows.c | 1184 for (uint32_t last_char = name_size; last_char > 0; last_char--) { in get_settings_path_if_exists_in_registry_key() 1185 if (name[last_char] == '\\') { in get_settings_path_if_exists_in_registry_key() 1186 start_of_path_filename = last_char + 1; in get_settings_path_if_exists_in_registry_key()
|
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
H A D | glx_usefont.c | 260 unsigned int first_char, last_char, pages, rows; in glXUseXFont()
|
/third_party/mesa3d/src/glx/ |
H A D | xfont.c | 261 unsigned int first_char, last_char, pages, rows; in DRI_glXUseXFont()
|
/third_party/gn/src/base/strings/ |
H A D | string_util.cc | 240 const size_t last_char = input.length() - 1; in TrimStringT() local 246 : last_char; in TrimStringT() 264 ((last_good_char == last_char) ? TRIM_NONE : TRIM_TRAILING)); in TrimStringT()
|
/third_party/python/Parser/ |
H A D | tokenizer.c | 309 char last_char = line[line_size > 0 ? line_size - 1 : line_size]; in tok_concatenate_interactive_new_line() local 310 if (last_char != '\n') { in tok_concatenate_interactive_new_line() 326 if (last_char != '\n') { in tok_concatenate_interactive_new_line()
|
/third_party/python/PC/ |
H A D | launcher.c | 623 static wchar_t * last_char = &config_key[sizeof(config_key) / in locate_python() local 633 *last_char = *wanted_ver; in locate_python() 648 *last_char = L'\0'; /* look for an overall default */ in locate_python()
|
/third_party/node/deps/ada/ |
H A D | ada.cpp | 16 char last_char = view.back(); variable 18 if (last_char == '.') { 23 last_char = view.back(); 25 bool possible_ipv4 = (last_char >= '0' && last_char <= '9') || 26 (last_char >= 'a' && last_char <= 'f') || 27 last_char == 'x';
|