OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StubLayout
(Results
1 - 16
of
16
) sorted by null
/frameworks/rs/cpu_ref/linkloader/include/
StubLayout.h
23
class
StubLayout
{
31
StubLayout
();
32
virtual ~
StubLayout
() { }
45
class StubLayoutARM : public
StubLayout
{
54
class StubLayoutMIPS : public
StubLayout
{
ELFSectionProgBits.h
24
#include "
StubLayout
.h"
32
StubLayout
*stubs;
40
StubLayout
*getStubLayout() {
/frameworks/rs/cpu_ref/linkloader/lib/
StubLayout.cpp
17
#include "
StubLayout
.h"
26
StubLayout
::
StubLayout
() : table(NULL), count(0) {
29
void
StubLayout
::initStubTable(unsigned char *table_, size_t count_) {
34
void *
StubLayout
::allocateStub(void *addr) {
60
size_t
StubLayout
::calcStubTableSize(size_t count) const {
/external/llvm/include/llvm/Target/
TargetJITInfo.h
54
struct
StubLayout
{
59
virtual
StubLayout
getStubLayout() {
/external/llvm/lib/Target/Mips/
MipsJITInfo.h
44
virtual
StubLayout
getStubLayout();
MipsJITInfo.cpp
195
TargetJITInfo::
StubLayout
MipsJITInfo::getStubLayout() {
198
StubLayout
Result = { 4*4, 4 };
/external/llvm/lib/Target/PowerPC/
PPCJITInfo.h
33
virtual
StubLayout
getStubLayout();
PPCJITInfo.cpp
352
TargetJITInfo::
StubLayout
PPCJITInfo::getStubLayout() {
357
StubLayout
Result = {10*4, 4};
/external/llvm/lib/Target/X86/
X86JITInfo.h
48
virtual
StubLayout
getStubLayout();
X86JITInfo.cpp
460
TargetJITInfo::
StubLayout
X86JITInfo::getStubLayout() {
467
StubLayout
Result = {14, 4};
/frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionProgBits.hxx
21
#include "
StubLayout
.h"
43
StubLayout
*stubs = result->getStubLayout();
ELFObject.hxx
24
#include "
StubLayout
.h"
234
StubLayout
*stub_layout = text->getStubLayout();
/external/llvm/lib/Target/ARM/
ARMJITInfo.h
66
virtual
StubLayout
getStubLayout();
ARMJITInfo.cpp
152
TargetJITInfo::
StubLayout
ARMJITInfo::getStubLayout() {
155
StubLayout
Result = {16, 4};
/external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp
532
TargetJITInfo::
StubLayout
SL = TheJIT->getJITInfo().getStubLayout();
595
TargetJITInfo::
StubLayout
SL = TheJIT->getJITInfo().getStubLayout();
[
all
...]
/frameworks/rs/
Android.mk
265
cpu_ref/linkloader/lib/
StubLayout
.cpp \
Completed in 105 milliseconds