HomeSort by relevance Sort by last modified time
    Searched defs:CodeSize (Results 1 - 8 of 8) sorted by null

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 125 uintptr_t CodeSize = i % 16 + 1;
131 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, "");
135 for (unsigned j = 0; j < CodeSize; j++) {
154 uintptr_t CodeSize = i % 16 + 1;
157 for (unsigned j = 0; j < CodeSize; j++) {
  /external/giflib/
dgif_lib.c 698 DGifGetCode(GifFileType *GifFile, int *CodeSize, GifByteType **CodeBlock)
708 *CodeSize = Private->BitsPerPixel;
756 GifByteType CodeSize;
761 if (READ(GifFile, &CodeSize, 1) < 1) { /* Read Code size from file. */
764 BitsPerPixel = CodeSize;
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUAsmPrinter.cpp 322 uint64_t CodeSize = 0;
332 // TODO: CodeSize should account for multiple functions.
339 CodeSize += MI.getDesc().Size;
466 ProgInfo.CodeLen = CodeSize;
  /art/compiler/utils/arm64/
assembler_arm64.cc 41 size_t Arm64Assembler::CodeSize() const {
51 MemoryRegion from(vixl_masm_->GetStartAddress<void*>(), CodeSize());
  /art/compiler/utils/
assembler.h 364 virtual size_t CodeSize() const { return buffer_.Size(); }
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 149 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0;
150 computeTotalAllocSize(Obj, CodeSize, DataSizeRO, DataSizeRW);
151 MemMgr.reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW);
337 uint64_t &CodeSize,
413 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 600 W.printHex("CodeSize", FunctionSize);
701 uint32_t CodeSize = DE.getU32(&Offset);
715 W.printHex("CodeSize", CodeSize);
    [all...]
  /external/v8/src/
gdb-jit.cc 990 uintptr_t CodeSize() const {
1057 desc->CodeSize(),
1132 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize());
1145 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize());
    [all...]

Completed in 621 milliseconds