Home
last modified time | relevance | path

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

/coreutils/man/
Dhelp2man161 my ($inc, $required) = @{shift @opt_include};
163 next unless -f $inc or $required;
164 kark N_("%s: can't open `%s' (%s)"), $this_program, $inc, $!
165 unless open INC, $inc;
213 die "$inc:$.:$@";
240 kark N_("%s: no valid information found in `%s'"), $this_program, $inc
/coreutils/src/blake2/
Dblake2b-ref.c70 static void blake2b_increment_counter( blake2b_state *S, const uint64_t inc ) in blake2b_increment_counter() argument
72 S->t[0] += inc; in blake2b_increment_counter()
73 S->t[1] += ( S->t[0] < inc ); in blake2b_increment_counter()