Home | History | Annotate | Download | only in gold

Lines Matching defs:bytes

324 // SIZE bytes.  Return a pointer to the View if found, NULL if not.
375 // Read SIZE bytes from the file starting at offset START. Read into
381 ssize_t bytes;
384 bytes = this->size_ - start;
385 if (static_cast<section_size_type>(bytes) >= size)
400 bytes = ::pread(this->descriptor_, read_ptr, to_read, read_pos);
401 if (bytes < 0)
405 read_pos += bytes;
406 read_ptr += bytes;
407 to_read -= bytes;
411 while (bytes > 0);
413 bytes = size - to_read;
416 gold_fatal(_("%s: file too short: read only %lld of %lld bytes at %lld"),
418 static_cast<long long>(bytes),
539 gold_fatal(_("%s: attempt to map %lld bytes at offset %lld exceeds "
555 // Set BYTESHIFT to the number of dummy bytes which must be
688 gold_fatal(_("%s: file too short: read only %zd of %zd bytes at %lld"),
855 fprintf(stderr, _("%s: total bytes mapped for read: %llu\n"),
857 fprintf(stderr, _("%s: maximum bytes mapped for read at one time: %llu\n"),