HomeSort by relevance Sort by last modified time
    Searched full:strtabsize (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 399 size_t strtabsize = 1; local
414 symtab32[symtabIdx].st_name = strtabsize;
422 symtab64[symtabIdx].st_name = strtabsize;
430 strcpy((strtab + strtabsize), (*symbol)->name());
435 strtabsize += (*symbol)->nameSize() + 1;
519 size_t strtabsize = 1; local
535 symtab32[symtabIdx].st_name = strtabsize;
543 symtab64[symtabIdx].st_name = strtabsize;
551 strcpy((strtab + strtabsize), (*symbol)->name());
555 strtabsize += (*symbol)->nameSize() + 1
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 252 size_t strtabsize,
263 sym32.st_name = strtabsize;
270 strcpy((strtab + strtabsize), pSymbol.name());
321 size_t strtabsize = 1; local
333 strtabsize, symtabIdx);
337 strtabsize += (*symbol)->nameSize() + 1;
346 strtabsize, symtabIdx);
350 strtabsize += (*symbol)->nameSize() + 1;
367 strcpy((strtab + strtabsize), (*input)->name().c_str());
368 (*dt_need)->setValue(llvm::ELF::DT_NEEDED, strtabsize);
    [all...]
MipsLDBackend.h 193 size_t strtabsize,
  /frameworks/compile/slang/
slang_rs_metadata_spec_encoder.cpp 375 unsigned StrTabSize = 0;
384 // count StrTabSize and fill StrIdx by the way
389 StrIdx[StrIdxI++] = StrTabSize;
390 StrTabSize += ::strlen(*I) + 1 /* for '\0' */;
392 StrIdx[StrIdxI] = StrTabSize;
395 char *StrTab = reinterpret_cast<char*>(::malloc(StrTabSize));
401 llvm::StringRef StrTabData(StrTab, StrTabSize);

Completed in 335 milliseconds