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

1 2 3 4 5 6 7 8 910

  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsOptionRecord.cpp 31 MCSectionELF *Sec =
34 MCA.registerSection(*Sec);
35 Sec->setAlignment(8);
36 Streamer->SwitchSection(Sec);
50 MCSectionELF *Sec = Context.getELFSection(".reginfo", ELF::SHT_MIPS_REGINFO,
52 MCA.registerSection(*Sec);
53 Sec->setAlignment(MTS->getABI().IsN32() ? 8 : 4);
54 Streamer->SwitchSection(Sec);
  /prebuilts/go/darwin-x86/src/syscall/
syscall_nacl_386.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
21 func setTimeval(sec, usec int64) Timeval {
22 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_nacl_amd64p32.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
21 func setTimeval(sec, usec int64) Timeval {
22 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_nacl_arm.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
21 func setTimeval(sec, usec int64) Timeval {
22 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_solaris_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
11 func setTimeval(sec, usec int64) Timeval {
12 return Timeval{Sec: sec, Usec: usec}
syscall_netbsd_386.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
11 func setTimeval(sec, usec int64) Timeval {
12 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_netbsd_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
11 func setTimeval(sec, usec int64) Timeval {
12 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_netbsd_arm.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
11 func setTimeval(sec, usec int64) Timeval {
12 return Timeval{Sec: sec, Usec: int32(usec)}
  /prebuilts/go/linux-x86/src/syscall/
syscall_nacl_386.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
21 func setTimeval(sec, usec int64) Timeval {
22 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_nacl_amd64p32.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
21 func setTimeval(sec, usec int64) Timeval {
22 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_nacl_arm.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
21 func setTimeval(sec, usec int64) Timeval {
22 return Timeval{Sec: sec, Usec: int32(usec)}
syscall_solaris_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
11 func setTimeval(sec, usec int64) Timeval {
12 return Timeval{Sec: sec, Usec: usec}
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
COFF.h 91 const coff_section *toSec(DataRefImpl Sec) const;
105 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
106 virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
107 virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
108 virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
109 virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
110 virtual error_code getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const;
111 virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
112 virtual error_code isSectionData(DataRefImpl Sec, bool &Res) const;
113 virtual error_code isSectionBSS(DataRefImpl Sec, bool &Res) const
    [all...]
MachO.h 52 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
53 virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
54 virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
55 virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
56 virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
57 virtual error_code getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const;
58 virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
59 virtual error_code isSectionData(DataRefImpl Sec, bool &Res) const;
60 virtual error_code isSectionBSS(DataRefImpl Sec, bool &Res) const;
63 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const
    [all...]
  /external/llvm/tools/llvm-dwp/
DWPStringPool.h 34 MCSection *Sec;
39 DWPStringPool(MCStreamer &Out, MCSection *Sec) : Out(Out), Sec(Sec) {}
46 Out.SwitchSection(Sec);
  /external/llvm/include/llvm/MC/
MCFragment.h 137 explicit MCDummyFragment(MCSection *Sec)
138 : MCFragment(FT_Dummy, false, 0, Sec){};
148 MCSection *Sec)
149 : MCFragment(FType, HasInstructions, 0, Sec) {}
175 MCSection *Sec)
176 : MCEncodedFragment(FType, HasInstructions, Sec) {}
196 MCSection *Sec)
198 Sec) {}
224 MCDataFragment(MCSection *Sec = nullptr)
225 : MCEncodedFragmentWithFixups<32, 4>(FT_Data, false, Sec) {}
    [all...]
MCAsmLayout.h 85 uint64_t getSectionAddressSize(const MCSection *Sec) const;
89 uint64_t getSectionFileSize(const MCSection *Sec) const;
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 60 virtual uint32_t getSectionType(DataRefImpl Sec) const = 0;
61 virtual uint64_t getSectionFlags(DataRefImpl Sec) const = 0;
222 void moveSectionNext(DataRefImpl &Sec) const override;
223 std::error_code getSectionName(DataRefImpl Sec,
225 uint64_t getSectionAddress(DataRefImpl Sec) const override;
226 uint64_t getSectionSize(DataRefImpl Sec) const override;
227 std::error_code getSectionContents(DataRefImpl Sec,
229 uint64_t getSectionAlignment(DataRefImpl Sec) const override;
230 bool isSectionCompressed(DataRefImpl Sec) const override;
231 bool isSectionText(DataRefImpl Sec) const override
682 const Elf_Shdr *sec = getRelSection(Rel); local
701 const Elf_Shdr *sec = getRelSection(Rel); local
710 const Elf_Shdr *sec = getRelSection(Rel); local
    [all...]
ELF.h 118 const Elf_Sym *symbol_begin(const Elf_Shdr *Sec) const {
119 if (!Sec)
121 if (Sec->sh_entsize != sizeof(Elf_Sym))
123 return reinterpret_cast<const Elf_Sym *>(base() + Sec->sh_offset);
125 const Elf_Sym *symbol_end(const Elf_Shdr *Sec) const {
126 if (!Sec)
128 uint64_t Size = Sec->sh_size;
131 return symbol_begin(Sec) + Size / sizeof(Elf_Sym);
133 Elf_Sym_Range symbols(const Elf_Shdr *Sec) const {
134 return makeArrayRef(symbol_begin(Sec), symbol_end(Sec))
    [all...]
  /external/llvm/lib/Object/
SymbolSize.cpp 34 static unsigned getSectionID(const ObjectFile &O, SectionRef Sec) {
36 return M->getSectionID(Sec);
37 return cast<COFFObjectFile>(O).getSectionID(Sec);
69 for (SectionRef Sec : O.sections()) {
70 uint64_t Address = Sec.getAddress();
71 uint64_t Size = Sec.getSize();
73 {O.symbol_end(), Address + Size, 0, getSectionID(O, Sec)});
  /external/ltp/testcases/kernel/fs/fs_maim/
maimparts 54 ($Cyl,$Heads,$Sec) = split(/\, /,$Temp1,3);
57 ($Sec,$Junk) = split(/ /,$Sec,2);
  /external/swiftshader/third_party/LLVM/lib/Object/
COFFObjectFile.cpp 72 const coff_section *COFFObjectFile::toSec(DataRefImpl Sec) const {
73 const coff_section *addr = reinterpret_cast<const coff_section*>(Sec.p);
278 error_code COFFObjectFile::getSectionNext(DataRefImpl Sec,
280 const coff_section *sec = toSec(Sec); local
281 sec += 1;
282 Sec.p = reinterpret_cast<uintptr_t>(sec);
283 Result = SectionRef(Sec, this);
287 error_code COFFObjectFile::getSectionName(DataRefImpl Sec,
289 const coff_section *sec = toSec(Sec); local
312 const coff_section *sec = toSec(Sec); local
319 const coff_section *sec = toSec(Sec); local
326 const coff_section *sec = toSec(Sec); local
341 const coff_section *sec = toSec(Sec); local
350 const coff_section *sec = toSec(Sec); local
357 const coff_section *sec = toSec(Sec); local
364 const coff_section *sec = toSec(Sec); local
372 const coff_section *sec = toSec(Sec); local
384 const coff_section *sec = toSec(Sec); local
396 const coff_section *sec = toSec(Sec); local
    [all...]
  /external/llvm/lib/MC/
MCFragment.cpp 34 for (MCSection &Sec : Asm)
35 if (!Sec.isVirtualSection())
36 SectionOrder.push_back(&Sec);
37 for (MCSection &Sec : Asm)
38 if (Sec.isVirtualSection())
39 SectionOrder.push_back(&Sec);
43 const MCSection *Sec = F->getParent();
44 const MCFragment *LastValid = LastValidFragment.lookup(Sec);
47 assert(LastValid->getParent() == Sec);
62 MCSection *Sec = F->getParent()
    [all...]
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp 178 void LoadVersionDefs(const Elf_Shdr *sec) const;
348 bool checkTLSSections(const Elf_Phdr &Phdr, const Elf_Shdr &Sec);
349 bool checkoffsets(const Elf_Phdr &Phdr, const Elf_Shdr &Sec);
350 bool checkVMA(const Elf_Phdr &Phdr, const Elf_Shdr &Sec);
351 bool checkPTDynamic(const Elf_Phdr &Phdr, const Elf_Shdr &Sec);
363 void printRelocations(const Elf_Shdr *Sec, const ELFO *Obj);
418 void ELFDumper<ELFT>::LoadVersionNeeds(const Elf_Shdr *sec) const {
419 unsigned vn_size = sec->sh_size; // Size of section in bytes
420 unsigned vn_count = sec->sh_info; // Number of Verneed entries
421 const char *sec_start = (const char *)Obj->base() + sec->sh_offset
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/
last_write_time.pass.cpp 122 auto sec = duration_cast<seconds>(tp.time_since_epoch()).count();
124 if (sec < Lim::min() || sec > Lim::max()) return false;
176 using Sec = std::chrono::seconds;
195 SleepFor(Sec(2));
217 using Sec = std::chrono::seconds;
228 const file_time_type future_time = now + Hours(3) + Sec(42) + MicroSec(17);
229 const file_time_type past_time = now - Minutes(3) - Sec(42) - MicroSec(17);
230 const file_time_type before_epoch_time = epoch_time - Minutes(3) - Sec(42) - MicroSec(17);
234 const file_time_type just_before_epoch_time = epoch_time - Sec(2) - MicroSec(17)
    [all...]

Completed in 1101 milliseconds

1 2 3 4 5 6 7 8 910