Home
last modified time | relevance | path

Searched refs:textp (Results 1 – 3 of 3) sorted by relevance

/dragonfly/bin/mined/
HDmined2.c395 char *textp; in move_previous_word() local
409 textp = cur_text; in move_previous_word()
412 if (!alpha(*textp) || !alpha(start_char)) { in move_previous_word()
413 while (textp != begin_line && (white_space(*textp) || *textp == '\n')) in move_previous_word()
414 textp--; in move_previous_word()
418 while (textp != begin_line && alpha(*textp)) in move_previous_word()
419 textp--; in move_previous_word()
422 if (textp != begin_line && *textp != '\n') in move_previous_word()
423 textp++; in move_previous_word()
426 move_address(textp); in move_previous_word()
[all …]
HDmined1.c698 char *textp = line->text; in count_chars() local
702 if (is_tab(*textp++)) in count_chars()
710 while (*textp != '\n') { in count_chars()
711 if (is_tab(*textp++)) in count_chars()
809 char *textp = line->text; in find_x() local
812 while (textp != address && *textp != '\0') { in find_x()
813 if (is_tab(*textp++)) /* Expand tabs */ in find_x()
828 char *textp = line->text; in find_address() local
831 while (tx < x_coord && *textp != '\n') { in find_address()
832 if (is_tab(*textp)) { in find_address()
[all …]
/dragonfly/usr.bin/systat/
HDextern.h41 extern long ntext, textp;