Home
last modified time | relevance | path

Searched refs:ctf_size (Results 1 – 4 of 4) sorted by relevance

/dflybsd-src/contrib/binutils-2.34/libctf/
H A Dctf-open.c449 if ((ctf_base = malloc (fp->ctf_size + increase)) == NULL) in upgrade_types_v1()
463 fp->ctf_size += increase; in upgrade_types_v1()
1394 fp->ctf_size = hp->cth_stroff + hp->cth_strlen; in ctf_bufopen_internal()
1397 (unsigned long) fp->ctf_size); in ctf_bufopen_internal()
1399 if (hp->cth_lbloff > fp->ctf_size || hp->cth_objtoff > fp->ctf_size in ctf_bufopen_internal()
1400 || hp->cth_funcoff > fp->ctf_size || hp->cth_objtidxoff > fp->ctf_size in ctf_bufopen_internal()
1401 || hp->cth_funcidxoff > fp->ctf_size || hp->cth_typeoff > fp->ctf_size in ctf_bufopen_internal()
1402 || hp->cth_stroff > fp->ctf_size) in ctf_bufopen_internal()
1438 if ((fp->ctf_base = malloc (fp->ctf_size)) == NULL) in ctf_bufopen_internal()
1448 dstlen = fp->ctf_size; in ctf_bufopen_internal()
[all …]
H A Dctf-create.c2084 resid = fp->ctf_size; in ctf_gzwrite()
2117 compress_len = compressBound (fp->ctf_size); in ctf_compress_write()
2123 fp->ctf_buf, fp->ctf_size)) != Z_OK) in ctf_compress_write()
2173 compress_len = compressBound (fp->ctf_size); in ctf_write_mem()
2174 if (fp->ctf_size < threshold) in ctf_write_mem()
2175 compress_len = fp->ctf_size; in ctf_write_mem()
2188 if (fp->ctf_size < threshold) in ctf_write_mem()
2191 memcpy (bp, fp->ctf_buf, fp->ctf_size); in ctf_write_mem()
2192 *size += fp->ctf_size; in ctf_write_mem()
2198 fp->ctf_buf, fp->ctf_size)) != Z_OK) in ctf_write_mem()
[all …]
H A Dctf-impl.h261 size_t ctf_size; /* Size of CTF header + uncompressed data. */ member
H A Dctf-archive.c276 if (f->ctf_size > threshold) in arc_write_one_ctf()