Lines Matching refs:bytes
51 xmalloc (size_t bytes)55 if (bytes == 0)58 mem = malloc (bytes);62 fprintf (stderr, "Allocation of %d bytes failed\n",63 (int) bytes);71 xrealloc (void *old, size_t bytes)75 if (bytes == 0)81 mem = realloc (old, bytes);85 fprintf (stderr, "Reallocation of %d bytes failed\n",86 (int) bytes);