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

1 2 3 4 5 6 7 8 910

  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionHeader.h 89 read(Archiver &AR, ELFObjectTy const *owner, size_t index = 0);
121 bool serialize(Archiver &AR) {
122 AR.prologue(TypeTraits<ELFSectionHeader>::size);
124 AR & sh_name;
125 AR & sh_type;
126 AR & sh_flags;
127 AR & sh_addr;
128 AR & sh_offset;
129 AR & sh_size;
130 AR & sh_link
    [all...]
ELFSymbol.h 135 read(Archiver &AR, ELFObject<Bitwidth> const *owner, size_t index = 0);
158 bool serialize(Archiver &AR) {
159 AR.prologue(TypeTraits<ELFSymbol>::size);
161 AR & st_name;
162 AR & st_value;
163 AR & st_size;
164 AR & st_info;
165 AR & st_other;
166 AR & st_shndx;
168 AR.epilogue(TypeTraits<ELFSymbol>::size)
    [all...]
ELFReloc.h 62 static ELFRelocTy *readRel(Archiver &AR, size_t index);
65 static ELFRelocTy *readRela(Archiver &AR, size_t index);
79 bool serializeRel(Archiver &AR) {
82 AR.prologue(TypeTraits<ELFRelocRelTy>::size);
84 AR & r_offset;
85 AR & r_info;
87 AR.epilogue(TypeTraits<ELFRelocRelTy>::size);
88 return AR;
92 bool serializeRela(Archiver &AR) {
93 AR.prologue(TypeTraits<ELFRelocRelaTy>::size)
    [all...]
ELFSectionProgBits.h 36 static ELFSectionProgBits *read(Archiver &AR,
66 bool serialize(Archiver &AR) {
70 AR.seek(sh->getOffset(), true);
71 AR.prologue(sh->getSize());
72 AR.readBytes(chunk.getBuffer(), sh->getSize());
73 AR.epilogue(sh->getSize());
75 return AR;
ELFHeader.h 151 static ELFHeader *read(Archiver &AR) {
152 if (!AR) {
159 if (!header->serialize(AR)) {
180 bool serialize(Archiver &AR) {
181 AR.prologue(TypeTraits<ELFHeaderTy>::size);
183 AR & e_ident;
184 AR & e_type;
185 AR & e_machine;
186 AR & e_version;
187 AR & e_entry
    [all...]
ELFSectionNoBits.h 32 static ELFSectionNoBits *read(Archiver &AR, ELFSectionHeaderTy const *sh);
ELFSection.h 37 static ELFSection *read(Archiver &AR, ELFObjectTy *,
ELFSectionStrTab.h 39 static ELFSectionStrTab *read(Archiver &AR, ELFSectionHeaderTy const *sh);
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSection.hxx 34 ELFSection<Bitwidth>::read(Archiver &AR,
46 return ELFSectionStrTabTy::read(AR, sh);
49 return ELFSectionSymTabTy::read(AR, owner, sh);
52 return ELFSectionProgBitsTy::read(AR, owner, sh);
55 return ELFSectionNoBitsTy::read(AR, sh);
59 return ELFSectionRelTableTy::read(AR, sh);
ELFReloc.hxx 28 ELFReloc_CRTP<Bitwidth>::readRela(Archiver &AR, size_t index) {
29 if (!AR) {
37 if (!sh->serializeRela(AR)) {
56 ELFReloc_CRTP<Bitwidth>::readRel(Archiver &AR, size_t index) {
57 if (!AR) {
66 if (!sh->serializeRel(AR)) {
ELFSectionStrTab.hxx 30 ELFSectionStrTab<Bitwidth>::read(Archiver &AR,
39 AR.seek(sh->getOffset(), true);
40 AR.prologue(sh->getSize());
41 AR.readBytes(&*st->buf.begin(), sh->getSize());
42 AR.epilogue(sh->getSize());
44 if (!AR) {
  /external/iproute2/lib/
Makefile 10 $(AR) rcs $@ $(NLOBJ)
13 $(AR) rcs $@ $(UTILOBJ) $(ADDLIB)
  /external/elfutils/src/
Makefile.am 55 elfcmp objdump ranlib strings ar unstrip
132 CFLAGS_ar = -DAR=\"$(shell echo ar|sed '$(transform)')\"
193 AR=$(bindir)/`echo ar | sed '$(transform)'`; \
194 sed -e "s,@UNSTRIP@,$$UNSTRIP,g" -e "s,@AR@,$$AR,g" \
make-debug-archive.in 16 AR=${AR:-@AR@}
129 (cd "$outdir" && $LS | $XARGS $AR cq "$new_archive") &&
  /external/chromium_org/third_party/icu/source/config/
pkgdataMakefile.in 32 @echo AR=$(AR) >> $(OUTPUTFILE)
  /external/chromium_org/third_party/icu/source/data/
pkgdataMakefile.in 32 @echo AR=$(AR) >> $(OUTPUTFILE)
  /external/chromium_org/third_party/icu/source/test/testdata/
pkgdataMakefile.in 33 @echo AR=$(AR) >> $(OUTPUTFILE)
  /external/icu4c/config/
pkgdataMakefile 32 @echo AR=$(AR) >> $(OUTPUTFILE)
pkgdataMakefile.in 32 @echo AR=$(AR) >> $(OUTPUTFILE)
  /external/icu4c/data/
pkgdataMakefile 32 @echo AR=$(AR) >> $(OUTPUTFILE)
pkgdataMakefile.in 32 @echo AR=$(AR) >> $(OUTPUTFILE)
  /external/icu4c/extra/uconv/
pkgdataMakefile 33 @echo AR=$(AR) >> $(OUTPUTFILE)
pkgdataMakefile.in 33 @echo AR=$(AR) >> $(OUTPUTFILE)
  /external/icu4c/test/testdata/
pkgdataMakefile 33 @echo AR=$(AR) >> $(OUTPUTFILE)
pkgdataMakefile.in 33 @echo AR=$(AR) >> $(OUTPUTFILE)

Completed in 378 milliseconds

1 2 3 4 5 6 7 8 910