Home
last modified time | relevance | path

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

/dports/editors/nano/nano-5.9/src/
H A Dtext.c3037 size_t start_of_shard, shard_length = 0; in complete_a_word() local
3069 start_of_shard = openfile->current_x; in complete_a_word()
3070 while (start_of_shard > 0) { in complete_a_word()
3071 size_t oneleft = step_left(openfile->current->data, start_of_shard); in complete_a_word()
3075 start_of_shard = oneleft; in complete_a_word()
3079 if (start_of_shard == openfile->current_x) { in complete_a_word()
3086 shard = nmalloc(openfile->current_x - start_of_shard + 1); in complete_a_word()
3089 while (start_of_shard < openfile->current_x) in complete_a_word()
3090 shard[shard_length++] = openfile->current->data[start_of_shard++]; in complete_a_word()