/external/llvm/unittests/ExecutionEngine/MCJIT/ |
H A D | MCJITMemoryManagerTest.cpp | 125 uintptr_t CodeSize = i % 16 + 1; local 131 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, ""); 135 for (unsigned j = 0; j < CodeSize; j++) { 154 uintptr_t CodeSize = i % 16 + 1; local 157 for (unsigned j = 0; j < CodeSize; j++) {
|
H A D | MCJITCAPITest.cpp | 91 void reserveAllocationSpace(uintptr_t CodeSize, uintptr_t DataSizeRO, 93 ReservedCodeSize = CodeSize;
|
/external/llvm/include/llvm/ExecutionEngine/ |
H A D | RuntimeDyld.h | 119 /// \p CodeSize - the total size of all code sections 125 virtual void reserveAllocationSpace(uintptr_t CodeSize, argument
|
/external/giflib/ |
H A D | dgif_lib.c | 698 DGifGetCode(GifFileType *GifFile, int *CodeSize, GifByteType **CodeBlock) argument 708 *CodeSize = Private->BitsPerPixel; 756 GifByteType CodeSize; local 761 if (READ(GifFile, &CodeSize, 1) < 1) { /* Read Code size from file. */ 764 BitsPerPixel = CodeSize;
|
H A D | egif_lib.c | 702 EGifPutCode(GifFileType *GifFile, int CodeSize, const GifByteType *CodeBlock) argument 714 * Buf = CodeSize;
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyld.cpp | 149 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0; local 150 computeTotalAllocSize(Obj, CodeSize, DataSizeRO, DataSizeRW); 151 MemMgr.reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW); 337 uint64_t &CodeSize, 413 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment); 336 computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize, uint64_t &DataSizeRO, uint64_t &DataSizeRW) argument
|
H A D | RuntimeDyldImpl.h | 414 void computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize,
|
/external/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAsmPrinter.cpp | 322 uint64_t CodeSize = 0; local 332 // TODO: CodeSize should account for multiple functions. 339 CodeSize += MI.getDesc().Size; 466 ProgInfo.CodeLen = CodeSize;
|
/external/llvm/lib/ExecutionEngine/Orc/ |
H A D | OrcMCJITReplacement.h | 57 void reserveAllocationSpace(uintptr_t CodeSize, uintptr_t DataSizeRO, 59 return ClientMM->reserveAllocationSpace(CodeSize, DataSizeRO,
|
/external/v8/src/ |
H A D | runtime-profiler.cc | 187 if (shared_code->CodeSize() > allowance &&
|
H A D | gdb-jit.cc | 978 uintptr_t CodeSize() const { function in class:v8::internal::BASE_EMBEDDED 1045 desc->CodeSize(), 1120 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize()); 1133 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize()); 1561 w->WriteSLEB128(desc_->CodeSize() - pc); 1717 w->Write<uintptr_t>(desc_->CodeSize()); 1936 desc->CodeSize())); 1940 mach_o.Write(&w, desc->CodeStart(), desc->CodeSize()); 1953 desc->CodeSize(), 2126 range.end = code->address() + code->CodeSize(); [all...] |
H A D | objects-body-descriptors-inl.h | 417 return reinterpret_cast<Code*>(object)->CodeSize();
|
H A D | log.cc | 908 msg.Append("code-deopt,%ld,%d", since_epoch, code->CodeSize());
|
H A D | objects-inl.h | 4407 return reinterpret_cast<Code*>(this)->CodeSize(); 6458 int Code::CodeSize() { return SizeFor(body_size()); }
|
H A D | objects.h | 5105 inline int CodeSize();
|
/external/llvm/tools/llvm-readobj/ |
H A D | COFFDumper.cpp | 600 W.printHex("CodeSize", FunctionSize); 701 uint32_t CodeSize = DE.getU32(&Offset); local 715 W.printHex("CodeSize", CodeSize);
|
/external/v8/src/snapshot/ |
H A D | serialize.cc | 2322 int size = code->CodeSize(); 2341 SnapshotByteSink sink(info->code()->CodeSize() * 2);
|