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

  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 86 /// size, it passes that value as ActualSize, and this method returns a block
89 /// ActualSize. In either case, this method is required to pass back the size
90 /// of the allocated block through ActualSize. The JIT will be careful to
91 /// not write more than the returned ActualSize bytes of memory.
93 uintptr_t &ActualSize) = 0;
101 /// but should not be included in the 'actualsize' returned by
147 uintptr_t &ActualSize) = 0;
  /external/llvm/tools/lli/
RecordingMemoryManager.h 61 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize);
69 uint8_t* startExceptionTable(const Function* F, uintptr_t &ActualSize);
RecordingMemoryManager.cpp 49 uint8_t *RecordingMemoryManager::startFunctionBody(const Function *F, uintptr_t &ActualSize){
73 uint8_t* RecordingMemoryManager::startExceptionTable(const Function* F, uintptr_t &ActualSize) {
lli.cpp 246 uintptr_t &ActualSize){
271 uintptr_t &ActualSize) {
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 79 uintptr_t ActualSize, uintptr_t ActualSizeResult)
81 ActualSize(ActualSize), ActualSizeResult(ActualSizeResult) {}
85 uintptr_t ActualSize;
90 uintptr_t &ActualSize) {
91 uintptr_t InitialActualSize = ActualSize;
92 uint8_t *Result = Base->startFunctionBody(F, ActualSize);
94 StartFunctionBodyCall(Result, F, InitialActualSize, ActualSize));
154 uintptr_t ActualSize, uintptr_t ActualSizeResult)
156 ActualSize(ActualSize), ActualSizeResult(ActualSizeResult) {
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 347 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) {
368 if (largest < ActualSize ||
371 candidateBlock = allocateNewCodeSlab((size_t)ActualSize);
379 ActualSize = CurBlock->BlockSize - sizeof(MemoryRangeHeader);
510 uint8_t* startExceptionTable(const Function* F, uintptr_t &ActualSize) {
511 return startFunctionBody(F, ActualSize);
    [all...]
JITEmitter.cpp 785 uintptr_t ActualSize = 0;
791 ActualSize = SizeEstimate;
795 ActualSize);
796 BufferEnd = BufferBegin+ActualSize;
    [all...]
  /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...]

Completed in 175 milliseconds