Searched defs:CodeSize (Results 1 - 9 of 9) sorted by last modified time

/external/llvm/unittests/ExecutionEngine/JIT/
H A DOProfileJITEventListenerTest.cpp24 unsigned int CodeSize; member in struct:__anon26481::OprofileNativeFunction
33 , CodeSize(size) {
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp94 uintptr_t CodeSize, uintptr_t DataSizeRO, uintptr_t DataSizeRW) {
95 ReservedCodeSize = CodeSize;
93 reserveAllocationSpace( uintptr_t CodeSize, uintptr_t DataSizeRO, uintptr_t DataSizeRW) argument
H A DMCJITMemoryManagerTest.cpp126 uintptr_t CodeSize = i % 16 + 1; local
132 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, "");
136 for (unsigned j = 0; j < CodeSize; j++) {
155 uintptr_t CodeSize = i % 16 + 1; local
158 for (unsigned j = 0; j < CodeSize; j++) {
/external/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h57 /// \p CodeSize - the total size of all code sections
64 uintptr_t CodeSize, uintptr_t DataSizeRO, uintptr_t DataSizeRW) { }
63 reserveAllocationSpace( uintptr_t CodeSize, uintptr_t DataSizeRO, uintptr_t DataSizeRW) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp118 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0; local
119 computeTotalAllocSize(*Obj, CodeSize, DataSizeRO, DataSizeRW);
120 MemMgr->reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW);
233 uint64_t &CodeSize,
314 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
232 computeTotalAllocSize(ObjectImage &Obj, uint64_t &CodeSize, uint64_t &DataSizeRO, uint64_t &DataSizeRW) argument
/external/llvm/lib/Target/R600/
H A DAMDGPUAsmPrinter.cpp214 uint64_t CodeSize = 0; local
228 // TODO: CodeSize should account for multiple functions.
229 CodeSize += MI.getDesc().Size;
318 ProgInfo.CodeLen = CodeSize;
/external/giflib/
H A Ddgif_lib.c690 DGifGetCode(GifFileType *GifFile, int *CodeSize, GifByteType **CodeBlock) argument
700 *CodeSize = Private->BitsPerPixel;
747 GifByteType CodeSize; local
751 READ(GifFile, &CodeSize, 1); /* Read Code size from file. */
752 BitsPerPixel = CodeSize;
/external/chromium_org/v8/src/
H A Dgdb-jit.cc972 uintptr_t CodeSize() const { function in class:v8::BASE_EMBEDDED
1039 desc->CodeSize(),
1090 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize());
1103 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize());
1532 w->WriteSLEB128(desc_->CodeSize() - pc);
1688 w->Write<uintptr_t>(desc_->CodeSize());
1927 desc->CodeSize()));
1931 mach_o.Write(&w, desc->CodeStart(), desc->CodeSize());
1944 desc->CodeSize(),
H A Dobjects.h5274 int CodeSize() { return SizeFor(body_size()); } function in class:v8::internal::Code

Completed in 193 milliseconds