Home
last modified time | relevance | path

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

/coreutils/tests/cp/
Dsparse-extents.sh72 for alloc in '-l 4194304' '-l 1048576 -o 4194304' '-l 1'; do
75 fallocate $alloc -n unwritten.withdata || framework_failure_
/coreutils/src/
Dln.c353 void *alloc = nullptr; in do_link() local
357 alloc = xmalloc (destdirlen + strlen (backup_base) + 1); in do_link()
358 backup = memcpy (alloc, dest, destdirlen); in do_link()
363 free (alloc); in do_link()
Djoin.c84 idx_t alloc; /* Elements allocated in 'lines'. */ member
498 seq->alloc = 0; in initseq()
507 if (seq->count == seq->alloc) in getseq()
509 seq->lines = xpalloc (seq->lines, &seq->alloc, 1, -1, sizeof *seq->lines); in getseq()
510 for (idx_t i = seq->count; i < seq->alloc; i++) in getseq()
536 for (idx_t i = 0; i < seq->alloc; i++) in delseq()
Dsort.c193 size_t alloc; /* Number of bytes allocated. */ member
1578 initbuf (struct buffer *buf, size_t line_bytes, size_t alloc) in initbuf() argument
1586 alloc += sizeof (struct line) - alloc % sizeof (struct line); in initbuf()
1587 buf->buf = malloc (alloc); in initbuf()
1590 alloc /= 2; in initbuf()
1591 if (alloc <= line_bytes + 1) in initbuf()
1596 buf->alloc = alloc; in initbuf()
1606 void *linelim = buf->buf + buf->alloc; in buffer_linelim()
1868 size_t line_alloc = buf->alloc / sizeof (struct line); in fillbuf()
1870 buf->alloc = line_alloc * sizeof (struct line); in fillbuf()
[all …]
Dptx.c125 size_t alloc; /* allocated length */ member
696 table->alloc = 0; in digest_word_file()
715 if (table->length == table->alloc) in digest_word_file()
716 table->start = x2nrealloc (table->start, &table->alloc, in digest_word_file()