Home
last modified time | relevance | path

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

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/include/perfetto/profiling/
H A Dparse_smaps.h98 char* first_token_end = static_cast<char*>(memchr(line, ' ', size)); in ParseSmapsLine() local
99 if (first_token_end == nullptr || first_token_end == line) in ParseSmapsLine()
101 bool is_header = *(first_token_end - 1) != ':'; in ParseSmapsLine()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/profiling/memory/
H A Dparse_smaps.h95 char* first_token_end = static_cast<char*>(memchr(line, ' ', size)); in ParseSmapsLine() local
96 if (first_token_end == nullptr || first_token_end == line) in ParseSmapsLine()
98 bool is_header = *(first_token_end - 1) != ':'; in ParseSmapsLine()
/dports/biology/plink/plink-ng-79b2df8c/2.0/
H A Dplink2_set.cc52 char* first_token_end = CurTokenEnd(line_start); in LoadIntervalBed() local
53 char* cur_set_id = NextTokenMult(first_token_end, 3); in LoadIntervalBed()
59 const uint32_t chr_name_slen = first_token_end - line_start; in LoadIntervalBed()
60 *first_token_end = '\0'; in LoadIntervalBed()
194 char* first_token_end = CurTokenEnd(line_start); in LoadIntervalBed() local
195 char* last_token = NextTokenMult(first_token_end, 2 + track_set_names); in LoadIntervalBed()
200 const uint32_t chr_name_slen = first_token_end - line_start; in LoadIntervalBed()
201 *first_token_end = '\0'; in LoadIntervalBed()
227 const char* linebuf_iter = FirstNonTspace(&(first_token_end[1])); in LoadIntervalBed()
/dports/biology/plink/plink-ng-79b2df8c/1.9/
H A Dplink_cnv.c138 char* first_token_end = token_endnn(textbuf_first_token); in cnv_intersect_load() local
139 char* col3_ptr = next_token_mult(first_token_end, 2); in cnv_intersect_load()
145 *first_token_end = '\0'; in cnv_intersect_load()
163 char* textbuf_iter = skip_initial_spaces(&(first_token_end[1])); in cnv_intersect_load()
769 char* first_token_end = token_endnn(textbuf_first_token); in validate_cnv_map() local
770 if (!(*first_token_end)) { in validate_cnv_map()
774 *first_token_end = '\0'; in validate_cnv_map()
789 char* col2_ptr = skip_initial_spaces(&(first_token_end[1])); in validate_cnv_map()
892 char* first_token_end = token_endnn(textbuf_first_token); in load_cnv_map() local
894 *first_token_end = '\0'; in load_cnv_map()
[all …]
H A Dplink_set.c311 char* first_token_end = token_endnn(textbuf_first_token); in load_range_list() local
312 bufptr2 = next_token_mult(first_token_end, 3); in load_range_list()
322 const uint32_t chrom_name_slen = (uintptr_t)(first_token_end - textbuf_first_token); in load_range_list()
323 *first_token_end = '\0'; in load_range_list()
454 char* first_token_end = token_endnn(textbuf_first_token); in load_range_list() local
455 bufptr2 = next_token_mult(first_token_end, 3); in load_range_list()
466 *first_token_end = '\0'; in load_range_list()
490 bufptr = skip_initial_spaces(&(first_token_end[1])); in load_range_list()
2372 char* first_token_end = token_endnn(first_token); in scrape_extra_chroms() local
2373 const uint32_t chrom_name_slen = (uintptr_t)(first_token_end - first_token); in scrape_extra_chroms()
[all …]
H A Dplink_data.c607 col2_ptr = skip_initial_spaces(first_token_end); in load_bim()
612 *first_token_end = '\0'; in load_bim()
941 col2_ptr = skip_initial_spaces(first_token_end); in load_bim()
943 *first_token_end = '\0'; in load_bim()
2448 *first_token_end = '\0'; in load_bim_split_chrom()
2815 *first_token_end = '\0'; in load_sort_and_write_map()
4366 *first_token_end = '\0'; in oxford_to_bed()
4378 *first_token_end = ' '; in oxford_to_bed()
4384 bufptr = next_token(first_token_end); in oxford_to_bed()
7209 cptr2 = skip_initial_spaces(first_token_end); in transposed_to_bed()
[all …]
H A Dplink_misc.c1940 char* first_token_end = token_endnn(loadbuf_first_token); in read_external_freqs() local
1941 bufptr = skip_initial_spaces(first_token_end); // marker name in read_external_freqs()
1942 const uint32_t chrom_name_slen = (uintptr_t)(first_token_end - loadbuf_first_token); in read_external_freqs()
1943 *first_token_end = '\0'; in read_external_freqs()
2033 char* first_token_end = token_endnn(loadbuf_first_token); in read_external_freqs() local
2034 bufptr = skip_initial_spaces(first_token_end); in read_external_freqs()
2035 const uint32_t chrom_name_slen = (uintptr_t)(first_token_end - loadbuf_first_token); in read_external_freqs()
2036 *first_token_end = '\0'; in read_external_freqs()
/dports/biology/plink/plink-ng-79b2df8c/2.0/include/
H A Dplink2_string.h1302 const char* first_token_end = CurTokenEnd(str_iter); in TokenLexK0() local
1304 token_slens[cur_col_type] = first_token_end - str_iter; in TokenLexK0()
1305 str_iter = first_token_end; in TokenLexK0()