Home
last modified time | relevance | path

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

/openbsd/gnu/usr.bin/binutils-2.17/bfd/
H A Darchive64.c48 bfd_byte int_buf[8]; in bfd_elf64_archive_slurp_armap() local
83 if (bfd_bread (int_buf, 8, abfd) != 8) in bfd_elf64_archive_slurp_armap()
90 nsymz = bfd_getb64 (int_buf); in bfd_elf64_archive_slurp_armap()
H A Darchive.c804 char int_buf[sizeof (long)]; in do_slurp_coff_armap() local
814 if (bfd_bread (int_buf, 4, abfd) != 4) in do_slurp_coff_armap()
823 nsymz = bfd_getb32 (int_buf); in do_slurp_coff_armap()
836 nsymz = bfd_getl32 (int_buf); in do_slurp_coff_armap()
/openbsd/gnu/usr.bin/binutils/bfd/
H A Darchive64.c48 bfd_byte int_buf[8]; in bfd_elf64_archive_slurp_armap() local
83 if (bfd_bread (int_buf, 8, abfd) != 8) in bfd_elf64_archive_slurp_armap()
90 nsymz = bfd_getb64 (int_buf); in bfd_elf64_archive_slurp_armap()
H A Darchive.c757 char int_buf[sizeof (long)]; in do_slurp_coff_armap() local
767 if (bfd_bread (int_buf, 4, abfd) != 4) in do_slurp_coff_armap()
776 nsymz = bfd_getb32 (int_buf); in do_slurp_coff_armap()
790 nsymz = bfd_getl32 (int_buf); in do_slurp_coff_armap()
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp944 InternalMmapVector<int> int_buf(kSize); in TEST() local
945 EXPECT_EQ((uptr)kSize, int_buf.size()); in TEST()