/system/core/libpixelflinger/codeflinger/ |
CodeCache.h | 54 class Assembly 57 Assembly(size_t size); 58 virtual ~Assembly(); 84 sp<Assembly> lookup(const AssemblyKeyBase& key) const; 87 const sp<Assembly>& assembly); 93 inline cache_entry_t(const sp<Assembly>& a, int64_t w) 95 sp<Assembly> entry;
|
CodeCache.cpp | 103 Assembly::Assembly(size_t size) 108 "Failed to create Assembly of size %zd in executable " 113 Assembly::~Assembly() 118 void Assembly::incStrong(const void*) const 123 void Assembly::decStrong(const void*) const 130 ssize_t Assembly::size() const 136 uint32_t* Assembly::base() const 141 ssize_t Assembly::resize(size_t newSize [all...] |
ARMAssembler.h | 39 ARMAssembler(const sp<Assembly>& assembly); 166 sp<Assembly> mAssembly;
|
MIPSAssembler.h | 41 ArmToMipsAssembler(const sp<Assembly>& assembly, 185 sp<Assembly> mAssembly; 244 MIPSAssembler(const sp<Assembly>& assembly, ArmToMipsAssembler *parent); 407 sp<Assembly> mAssembly;
|
ARMAssembler.cpp | 45 ARMAssembler::ARMAssembler(const sp<Assembly>& assembly) 47 mAssembly(assembly) 49 mBase = mPC = (uint32_t *)assembly->base();
|
MIPSAssembler.cpp | 19 /* MIPS assembler and ARM->MIPS assembly translator 90 ArmToMipsAssembler::ArmToMipsAssembler(const sp<Assembly>& assembly, 97 mAssembly(assembly) 99 mMips = new MIPSAssembler(assembly, this); [all...] |
/system/core/libpixelflinger/tests/codegen/ |
codegen.cpp | 28 class ScanlineAssembly : public Assembly { 32 : Assembly(size), mKey(needs) { }
|
/system/core/include/private/pixelflinger/ |
ggl_context.h | 275 class Assembly; 547 Assembly* scanline_as;
|
/external/quake/quake/src/QW/client/ |
qwcl.mak | [all...] |
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 23 #include <llvm/Assembly/AssemblyAnnotationWriter.h>
|
/frameworks/compile/mclinker/lib/CodeGen/ |
LLVMTargetMachine.cpp | 21 #include <llvm/Assembly/PrintModulePass.h> 79 generated assembly code to make it more readable."),
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
JITTest.cpp | 24 #include "llvm/Assembly/Parser.h" 193 bool LoadAssemblyInto(Module *M, const char *assembly) { 196 NULL != ParseAssemblyString(assembly, M, Error, M->getContext()); 217 void LoadAssembly(const char *assembly) { 218 LoadAssemblyInto(M, assembly); 673 // Converts the LLVM assembly to bitcode and returns it in a std::string. An 675 std::string AssembleToBitcode(LLVMContext &Context, const char *Assembly) { 677 if (!LoadAssemblyInto(&TempModule, Assembly)) {
|
/gdk/build/core/ |
definitions.mk | [all...] |
/ndk/build/core/ |
definitions.mk | [all...] |
/external/mesa3d/docs/ |
MESA_texture_array.spec | [all...] |
/system/core/libpixelflinger/ |
scanline.cpp | 283 class ScanlineAssembly : public Assembly { 287 : Assembly(size), mKey(needs) { } 384 sp<Assembly> assembly = gCodeCache.lookup(key); local 385 if (assembly == 0) { 386 // create a new assembly region 401 // finally, cache this assembly 405 ALOGE("error generating or caching assembly. Reverting to NOP."); 411 assembly = a; 414 // release the previous assembly [all...] |
/frameworks/native/opengl/libagl/ |
array.cpp | 526 #pragma mark Primitive Assembly [all...] |