OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Sec
(Results
151 - 175
of
387
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h
60
const SectionContribution *getOffset(DWARFSectionKind
Sec
) const;
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h
60
const SectionContribution *getOffset(DWARFSectionKind
Sec
) const;
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h
60
const SectionContribution *getOffset(DWARFSectionKind
Sec
) const;
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h
60
const SectionContribution *getOffset(DWARFSectionKind
Sec
) const;
/prebuilts/go/darwin-x86/src/syscall/
syscall_freebsd_386.go
9
func setTimespec(
sec
, nsec int64) Timespec {
10
return Timespec{
Sec
: int32(
sec
), Nsec: int32(nsec)}
13
func setTimeval(
sec
, usec int64) Timeval {
14
return Timeval{
Sec
: int32(
sec
), Usec: int32(usec)}
syscall_test.go
72
if tv.
Sec
== 0 && tv.Usec == 0 {
73
t.Fatal("
Sec
and Usec both zero")
timestruct.go
11
func TimespecToNsec(ts Timespec) int64 { return int64(ts.
Sec
)*1e9 + int64(ts.Nsec) }
16
sec
:= nsec / 1e9
20
sec
--
22
return setTimespec(
sec
, nsec)
27
func TimevalToNsec(tv Timeval) int64 { return int64(tv.
Sec
)*1e9 + int64(tv.Usec)*1e3 }
34
sec
:= nsec / 1e9
37
sec
--
39
return setTimeval(
sec
, usec)
/prebuilts/go/linux-x86/src/syscall/
syscall_freebsd_386.go
9
func setTimespec(
sec
, nsec int64) Timespec {
10
return Timespec{
Sec
: int32(
sec
), Nsec: int32(nsec)}
13
func setTimeval(
sec
, usec int64) Timeval {
14
return Timeval{
Sec
: int32(
sec
), Usec: int32(usec)}
syscall_test.go
72
if tv.
Sec
== 0 && tv.Usec == 0 {
73
t.Fatal("
Sec
and Usec both zero")
timestruct.go
11
func TimespecToNsec(ts Timespec) int64 { return int64(ts.
Sec
)*1e9 + int64(ts.Nsec) }
16
sec
:= nsec / 1e9
20
sec
--
22
return setTimespec(
sec
, nsec)
27
func TimevalToNsec(tv Timeval) int64 { return int64(tv.
Sec
)*1e9 + int64(tv.Usec)*1e3 }
34
sec
:= nsec / 1e9
37
sec
--
39
return setTimeval(
sec
, usec)
/external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h
382
for (const Elf_Shdr &
Sec
: ELF->sections()) {
383
if (
Sec
.sh_type != ELF::SHT_REL ||
Sec
.sh_info != IndexSectionIndex)
386
ErrorOr<const Elf_Shdr *> SymTabOrErr = ELF->getSection(
Sec
.sh_link);
390
for (const Elf_Rel &R : ELF->rels(&
Sec
)) {
551
for (const Elf_Shdr &
Sec
: ELF->sections()) {
552
if (
Sec
.sh_type == ELF::SHT_ARM_EXIDX) {
556
if (ErrorOr<StringRef> SectionName = ELF->getSectionName(&
Sec
))
558
SW.printHex("SectionOffset",
Sec
.sh_offset);
560
PrintIndexTable(SectionIndex, &
Sec
);
[
all
...]
/external/llvm/tools/obj2yaml/
elf2yaml.cpp
75
for (const Elf_Shdr &
Sec
: Obj.sections()) {
76
switch (
Sec
.sh_type) {
83
Symtab = &
Sec
;
86
ErrorOr<ArrayRef<Elf_Word>> TableOrErr = Obj.getSHNDXTable(
Sec
);
93
ErrorOr<ELFYAML::RelocationSection *> S = dumpRelaSection(&
Sec
);
100
ErrorOr<ELFYAML::RelocationSection *> S = dumpRelSection(&
Sec
);
107
ErrorOr<ELFYAML::Group *> G = dumpGroup(&
Sec
);
114
ErrorOr<ELFYAML::MipsABIFlags *> G = dumpMipsABIFlags(&
Sec
);
121
ErrorOr<ELFYAML::NoBitsSection *> S = dumpNoBitsSection(&
Sec
);
128
ErrorOr<ELFYAML::RawContentSection *> S = dumpContentSection(&
Sec
);
[
all
...]
/external/llvm/lib/MC/
MCContext.cpp
435
MCSectionCOFF *MCContext::getAssociativeCOFFSection(MCSectionCOFF *
Sec
,
440
return
Sec
;
444
unsigned Characteristics =
Sec
->getCharacteristics();
447
return getCOFFSection(
Sec
->getSectionName(), Characteristics,
448
Sec
->getKind(), KeySym->getName(),
452
return getCOFFSection(
Sec
->getSectionName(), Characteristics,
Sec
->getKind(),
488
[&](MCSection *
Sec
) { return !MCOS.mayHaveInstructions(*
Sec
); });
MCObjectStreamer.cpp
224
bool MCObjectStreamer::mayHaveInstructions(MCSection &
Sec
) const {
225
return
Sec
.hasInstructions();
232
MCSection *
Sec
= getCurrentSectionOnly();
233
Sec
->setHasInstructions(true);
253
(Assembler.isBundlingEnabled() &&
Sec
->isBundleLocked())) {
494
const MCSection *
Sec
= getCurrentSection().first;
495
(void)
Sec
;
496
assert(
Sec
&& "need a section");
/device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/
AsmSaveSecContext.asm
18
; Save
Sec
Conext before call FspInit API
/external/llvm/lib/ObjectYAML/
COFFYAML.cpp
483
void MappingTraits<COFFYAML::Section>::mapping(IO &IO, COFFYAML::Section &
Sec
) {
485
IO,
Sec
.Header.Characteristics);
486
IO.mapRequired("Name",
Sec
.Name);
488
IO.mapOptional("VirtualAddress",
Sec
.Header.VirtualAddress, 0U);
489
IO.mapOptional("VirtualSize",
Sec
.Header.VirtualSize, 0U);
490
IO.mapOptional("Alignment",
Sec
.Alignment, 0U);
491
IO.mapRequired("SectionData",
Sec
.SectionData);
492
IO.mapOptional("Relocations",
Sec
.Relocations);
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h
192
/// the same
Sec
should give the same address.
193
virtual uint64_t getSectionLoadAddress(const object::SectionRef &
Sec
) const = 0;
205
virtual bool getLoadedSectionContents(const object::SectionRef &
Sec
,
/prebuilts/go/darwin-x86/src/os/
stat_dragonfly.go
45
return time.Unix(ts.
Sec
, ts.Nsec)
Completed in 1774 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>