HomeSort by relevance Sort by last modified time
    Searched refs:rawsize (Results 1 - 25 of 44) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/bfd/
compress.c 170 if (abfd->direction != write_direction && sec->rawsize != 0)
171 sz = sec->rawsize;
204 save_rawsize = sec->rawsize;
206 /* Clear rawsize, set size to compressed size and set compress_status
209 sec->rawsize = 0;
214 /* Restore rawsize and size. */
215 sec->rawsize = save_rawsize;
350 if (sec->rawsize != 0
416 || sec->rawsize != 0
syms.c 976 stabsize = (info->stabsec->rawsize
977 ? info->stabsec->rawsize
979 strsize = (info->strsec->rawsize
980 ? info->strsec->rawsize
1017 stabsize = (info->stabsec->rawsize
1018 ? info->stabsec->rawsize
1021 strsize = (info->strsec->rawsize
1022 ? info->strsec->rawsize
    [all...]
reloc16.c 239 input_section->rawsize = input_section->size;
273 sz = input_section->rawsize ? input_section->rawsize : input_section->size;
stabs.c 224 stabsec->rawsize = stabsec->size;
548 count = stabsec->rawsize / STABSIZE;
560 symend = stabbuf + stabsec->rawsize;
685 BFD_ASSERT (e->offset < stabsec->rawsize);
694 symend = contents + stabsec->rawsize;
775 if (offset >= stabsec->rawsize)
776 return offset - stabsec->rawsize + stabsec->size;
dwarf1.c 281 size = msec->rawsize ? msec->rawsize : msec->size;
488 size = msec->rawsize ? msec->rawsize : msec->size;
elf32-sh-symbian.c 209 bfd_size_type sz = sec->rawsize ? sec->rawsize : sec->size;
406 sz = sec->rawsize ? sec->rawsize : sec->size;
elf32-microblaze.c     [all...]
simple.c 235 bfd_size_type amt = sec->rawsize > sec->size ? sec->rawsize : sec->size;
elf64-mmix.c 958 bfd_size_type size = isec->rawsize ? isec->rawsize : isec->size;
    [all...]
libbfd.c 870 written the contents out to disk. In that situation, rawsize is
872 reading an input section, where rawsize, if different to size,
874 if (abfd->direction != write_direction && section->rawsize != 0)
875 sz = section->rawsize;
930 if (abfd->direction != write_direction && section->rawsize != 0)
931 sz = section->rawsize;
section.c 429 . section multiple times. For output sections, rawsize holds the
431 . bfd_size_type rawsize;
701 . {* vma, lma, size, rawsize, compressed_size, relax, relax_count, *} \
    [all...]
bfd-in.h 301 (((bfd)->direction != write_direction && (sec)->rawsize != 0 \
302 ? (sec)->rawsize : (sec)->size) / bfd_octets_per_byte (bfd))
    [all...]
pei-x86_64.c 328 end_addr = (xdata_section->rawsize != 0 ?
329 xdata_section->rawsize : xdata_section->size);
merge.c 432 sec->rawsize = sec->size;
826 if (offset >= sec->rawsize)
828 if (offset > sec->rawsize)
elf-eh-frame.c     [all...]
elf32-ip2k.c 629 bfd_size_type stab_size = stab->rawsize ? stab->rawsize : stab->size;
    [all...]
elf64-ppc.c     [all...]
coff-alpha.c 756 sz = input_section->rawsize ? input_section->rawsize : input_section->size;
    [all...]
coff-ppc.c     [all...]
dwarf2.c 523 *section_size = msec->rawsize ? msec->rawsize : msec->size;
    [all...]
elf32-tic6x.c     [all...]
elf32-xtensa.c     [all...]
  /external/opencv3/3rdparty/libjasper/
jpc_enc.h 252 uint_fast32_t rawsize; member in struct:__anon20299
607 uint_fast32_t rawsize; member in struct:jpc_enc_tile_s
jpc_enc.c 140 int ratestrtosize(char *s, uint_fast32_t rawsize, uint_fast32_t *size);
422 cp->rawsize = jas_image_rawsize(image);
534 if (ratestrtosize(jas_tvparser_getval(tvp), cp->rawsize,
726 if (cp->totalsize != UINT_FAST32_MAX && cp->totalsize > cp->rawsize) {
727 jas_eprintf("warning: specified rate is unreasonably large (%lu > %lu)\n", (unsigned long) cp->totalsize, (unsigned long) cp->rawsize);
743 / cp->rawsize) {
782 int ratestrtosize(char *s, uint_fast32_t rawsize, uint_fast32_t *size)
795 *size = rawsize + 1;
797 *size = f * rawsize;
    [all...]
jas_image.c 131 uint_fast32_t rawsize; local
156 rawsize = 0;
159 rawsize += cmptparm->width * cmptparm->height *
164 inmem = (rawsize < JAS_IMAGE_INMEMTHRESH);
629 uint_fast32_t rawsize; local
633 rawsize = 0;
636 rawsize += (cmpt->width_ * cmpt->height_ * cmpt->prec_ +
639 return rawsize;
    [all...]

Completed in 1015 milliseconds

1 2