OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:createregion
(Results
1 - 11
of
11
) sorted by null
/frameworks/compile/mclinker/include/mcld/
IRBuilder.h
293
///
CreateRegion
- To create a region fragment in the input file.
303
static Fragment*
CreateRegion
(Input& pInput, size_t pOffset, size_t pLength);
305
///
CreateRegion
- To create a region fragment wrapping the given memory.
314
static Fragment*
CreateRegion
(void* pMemory, size_t pLength);
/frameworks/compile/mclinker/lib/LD/
ELFBinaryReader.cpp
61
Fragment* frag = m_Builder.
CreateRegion
(pInput, 0x0, data_size);
ELFReader.cpp
61
Fragment* frag = IRBuilder::
CreateRegion
(pInput, offset, size);
622
Fragment* frag = IRBuilder::
CreateRegion
(pInput, offset, size);
[
all
...]
/frameworks/compile/mclinker/tools/mcld/lib/Core/
Linker.cpp
148
mcld::Fragment* frag = mBuilder->
CreateRegion
(pMemory, pSize);
/art/compiler/
elf_writer_mclinker.cc
201
// TODO: why does IRBuilder::
CreateRegion
take a non-const pointer?
202
mcld::Fragment* text_fragment = ir_builder_->
CreateRegion
(const_cast<char*>(oat_data_start),
/frameworks/base/core/jni/android/graphics/
GraphicsJNI.h
76
static jobject
createRegion
(JNIEnv* env, SkRegion* region);
Graphics.cpp
414
jobject GraphicsJNI::
createRegion
(JNIEnv* env, SkRegion* region)
/frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp
369
///
CreateRegion
- To create a region fragment in the input file.
370
Fragment* IRBuilder::
CreateRegion
(Input& pInput, size_t pOffset, size_t pLength)
388
///
CreateRegion
- To create a region fragment wrapping the given memory
389
Fragment* IRBuilder::
CreateRegion
(void* pMemory, size_t pLength)
/external/llvm/lib/Analysis/
RegionInfo.cpp
579
Region *RegionInfo::
createRegion
(BasicBlock *entry, BasicBlock *exit) {
618
Region *newRegion =
createRegion
(entry, exit);
/frameworks/compile/mclinker/unittests/
LinkerTest.cpp
381
Fragment* text_frag = builder.
CreateRegion
(text_content, 0x10);
424
Fragment* attr_frag = builder.
CreateRegion
(attr_content, 0x20);
/external/llvm/include/llvm/Analysis/
RegionInfo.h
617
//
createRegion
- Creates a single entry single exit region.
618
Region *
createRegion
(BasicBlock *entry, BasicBlock *exit);
Completed in 1521 milliseconds