Home
last modified time | relevance | path

Searched refs:ActualSize (Results 1 – 18 of 18) sorted by relevance

/external/llvm/unittests/ExecutionEngine/JIT/
DJITTest.cpp98 uintptr_t ActualSize, uintptr_t ActualSizeResult) in StartFunctionBodyCall()
100 ActualSize(ActualSize), ActualSizeResult(ActualSizeResult) {} in StartFunctionBodyCall()
104 uintptr_t ActualSize; member
109 uintptr_t &ActualSize) { in startFunctionBody() argument
110 uintptr_t InitialActualSize = ActualSize; in startFunctionBody()
111 uint8_t *Result = Base->startFunctionBody(F, ActualSize); in startFunctionBody()
113 StartFunctionBodyCall(Result, F, InitialActualSize, ActualSize)); in startFunctionBody()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
DJPEGImageDecoderTest.cpp96 IntSize ySize = decoder->decodedYUVSize(0, ImageDecoder::ActualSize); in readYUV()
97 IntSize uSize = decoder->decodedYUVSize(1, ImageDecoder::ActualSize); in readYUV()
98 IntSize vSize = decoder->decodedYUVSize(2, ImageDecoder::ActualSize); in readYUV()
/external/llvm/unittests/Support/
DLEB128Test.cpp90 unsigned ActualSize = 0; \ in TEST()
92 &ActualSize); \ in TEST()
93 EXPECT_EQ(sizeof(VALUE) - 1, ActualSize); \ in TEST()
/external/libnfc-nxp/src/
DphFriNfc_MifareULMap.c218 NdefMap->TLVStruct.ActualSize = PH_FRINFC_NDEFMAP_MFUL_VAL0; in phFriNfc_MifareUL_H_Reset()
519 NdefMap->TLVStruct.ActualSize) || in phFriNfc_MfUL_CalcByteNum()
527 if (TemLength == NdefMap->TLVStruct.ActualSize) in phFriNfc_MfUL_CalcByteNum()
649 (NdefMap->TLVStruct.ActualSize + (((NdefMap->TLVStruct.NdefTLVBlock - in phFriNfc_MifareUL_Process()
660 (NdefMap->TLVStruct.ActualSize + (((NdefMap->TLVStruct.NdefTLVBlock - in phFriNfc_MifareUL_Process()
672 NdefMap->TLVStruct.ActualSize) || in phFriNfc_MifareUL_Process()
680 if (TemLength == NdefMap->TLVStruct.ActualSize) in phFriNfc_MifareUL_Process()
1653 NdefMap->TLVStruct.ActualSize = in phFriNfc_MfUL_H_findNDEFTLV()
1925 NdefMap->TLVStruct.ActualSize = in phFriNfc_MfUL_H_findNDEFTLV()
1948 NdefMap->TLVStruct.ActualSize = in phFriNfc_MfUL_H_findNDEFTLV()
[all …]
DphFriNfc_NdefMap.h636 uint16_t ActualSize; member
DphFriNfc_NdefMap.c1265 *actualSize = NdefMap->TLVStruct.ActualSize; in phFriNfc_NdefMap_GetContainerSize()
/external/llvm/include/llvm/ExecutionEngine/
DJITMemoryManager.h83 uintptr_t &ActualSize) = 0;
/external/llvm/lib/ExecutionEngine/JIT/
DJITMemoryManager.cpp355 uintptr_t &ActualSize) override { in startFunctionBody() argument
376 if (largest < ActualSize || in startFunctionBody()
379 candidateBlock = allocateNewCodeSlab((size_t)ActualSize); in startFunctionBody()
387 ActualSize = CurBlock->BlockSize - sizeof(MemoryRangeHeader); in startFunctionBody()
DJITEmitter.cpp774 uintptr_t ActualSize = 0; in startFunction() local
780 ActualSize = SizeEstimate; in startFunction()
784 ActualSize); in startFunction()
785 BufferEnd = BufferBegin+ActualSize; in startFunction()
/external/llvm/tools/lli/
DRemoteMemoryManager.h104 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) override;
DRemoteMemoryManager.cpp184 uint8_t *RemoteMemoryManager::startFunctionBody(const Function *F, uintptr_t &ActualSize){ in startFunctionBody() argument
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
DImageDecoder.h70 enum SizeType { ActualSize, SizeForMemoryAllocation }; enumerator
/external/lldb/include/lldb/Expression/
DIRExecutionUnit.h221 uintptr_t &ActualSize);
/external/chromium_org/chrome/browser/ui/
Dbrowser_commands.h81 bool ActualSize(content::WebContents* contents);
Dbrowser_command_controller.cc1138 command_updater_.UpdateCommandEnabled(IDC_ZOOM_NORMAL, ActualSize(contents)); in UpdateCommandsForZoomState()
Dbrowser_commands.cc611 bool ActualSize(content::WebContents* contents) { in ActualSize() function
/external/lldb/source/Expression/
DIRExecutionUnit.cpp433 uintptr_t &ActualSize) in startFunctionBody() argument
435 return m_default_mm_ap->startFunctionBody(F, ActualSize); in startFunctionBody()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImageFrameGenerator.cpp185 …ool sizeUpdated = updateYUVComponentSizes(decoder.get(), componentSizes, ImageDecoder::ActualSize); in decodeToYUV()