HomeSort by relevance Sort by last modified time
    Searched refs:ActualSize (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 76 /// size, it passes that value as ActualSize, and this method returns a block
79 /// ActualSize. In either case, this method is required to pass back the size
80 /// of the allocated block through ActualSize. The JIT will be careful to
81 /// not write more than the returned ActualSize bytes of memory.
83 uintptr_t &ActualSize) = 0;
91 /// but should not be included in the 'actualsize' returned by
  /external/llvm/tools/lli/
RecordingMemoryManager.h 70 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize);
RecordingMemoryManager.cpp 77 uint8_t *RecordingMemoryManager::startFunctionBody(const Function *F, uintptr_t &ActualSize){
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 97 uintptr_t ActualSize, uintptr_t ActualSizeResult)
99 ActualSize(ActualSize), ActualSizeResult(ActualSizeResult) {}
103 uintptr_t ActualSize;
108 uintptr_t &ActualSize) {
109 uintptr_t InitialActualSize = ActualSize;
110 uint8_t *Result = Base->startFunctionBody(F, ActualSize);
112 StartFunctionBodyCall(Result, F, InitialActualSize, ActualSize));
  /external/libnfc-nxp/src/
phFriNfc_MifareULMap.c 218 NdefMap->TLVStruct.ActualSize = PH_FRINFC_NDEFMAP_MFUL_VAL0;
519 NdefMap->TLVStruct.ActualSize) ||
527 if (TemLength == NdefMap->TLVStruct.ActualSize)
649 (NdefMap->TLVStruct.ActualSize + (((NdefMap->TLVStruct.NdefTLVBlock -
660 (NdefMap->TLVStruct.ActualSize + (((NdefMap->TLVStruct.NdefTLVBlock -
672 NdefMap->TLVStruct.ActualSize) ||
680 if (TemLength == NdefMap->TLVStruct.ActualSize)
    [all...]
phFriNfc_NdefMap.h 636 uint16_t ActualSize;
    [all...]
phFriNfc_NdefMap.c     [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 351 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) {
372 if (largest < ActualSize ||
375 candidateBlock = allocateNewCodeSlab((size_t)ActualSize);
383 ActualSize = CurBlock->BlockSize - sizeof(MemoryRangeHeader);
    [all...]
JITEmitter.cpp 769 uintptr_t ActualSize = 0;
775 ActualSize = SizeEstimate;
779 ActualSize);
780 BufferEnd = BufferBegin+ActualSize;
    [all...]

Completed in 751 milliseconds