Home
last modified time | relevance | path

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

/coreutils/src/
Denv.c273 splitbuf_grow (struct splitbuf *ss) in splitbuf_grow() argument
275 idx_t old_half_alloc = ss->half_alloc; in splitbuf_grow()
276 idx_t string_bytes = (intptr_t) ss->argv[ss->argc]; in splitbuf_grow()
277 ss->argv = xpalloc (ss->argv, &ss->half_alloc, 1, in splitbuf_grow()
278 MIN (INT_MAX, IDX_MAX), 2 * sizeof *ss->argv); in splitbuf_grow()
279 memmove (ss->argv + ss->half_alloc, ss->argv + old_half_alloc, string_bytes); in splitbuf_grow()
284 splitbuf_append_byte (struct splitbuf *ss, char c) in splitbuf_append_byte() argument
286 idx_t string_bytes = (intptr_t) ss->argv[ss->argc]; in splitbuf_append_byte()
287 if (ss->half_alloc * sizeof *ss->argv <= string_bytes) in splitbuf_append_byte()
288 splitbuf_grow (ss); in splitbuf_append_byte()
[all …]
/coreutils/doc/
Dcoreutils.texi12105 @item -t [[@var{cc}]@var{yy}]@var{mmddhhmm}[.@var{ss}]
12113 On the atypical systems that support leap seconds, @var{ss} may be
16310 [ MMDDhhmm[[CC]YY][.ss] ]
16315 @samp{MMDDhhmm[[CC]YY][.ss]},
16666 @samp{MMDDhhmm[[CC]YY][.ss]} where each two-letter
16682 @item ss
/coreutils/
DNEWS3104 touch -t [[CC]YY]MMDDhhmm[.ss] now accepts a timestamp string ending in .60,