Home
last modified time | relevance | path

Searched refs:ALIGN (Results 1 – 17 of 17) sorted by relevance

/frameworks/libs/binary_translation/exec_region/
Dsections.ld21 . = ALIGN(4096);
24 . = ALIGN(4096);
34 . = ALIGN(4096);
54 . = ALIGN(4096);
/frameworks/base/libs/hwui/utils/
DMacros.h43 #define ALIGN(x) (((x) + ALIGN_SZ - 1) & ~(ALIGN_SZ - 1)) macro
44 #define ALIGN_PTR(p) ((void*)(ALIGN((size_t)(p))))
DLinearAllocator.cpp141 mPageSize = ALIGN(mPageSize); in ensureNext()
156 size = ALIGN(size); in allocImpl()
211 allocSize = ALIGN(allocSize); in rewindIfLastAlloc()
220 pageSize = ALIGN(pageSize + sizeof(LinearAllocator::Page)); in newPage()
/frameworks/av/media/codec2/hal/hidl/1.0/vts/functional/video/
Dmedia_c2_video_hidl_test_common.h26 #define ALIGN(_sz, _align) ((_sz + (_align - 1)) & ~(_align - 1)) macro
DVtsHalMediaC2V1_0TargetVideoDecTest.cpp504 auto alignedSize = ALIGN(size, kPageSize); in decodeNFrames()
/frameworks/compile/mclinker/lib/Script/
DScriptParser.yy124 %token ALIGN
335 [ALIGN(section_align)]
424 opt_align : ALIGN '(' script_exp ')'
787 | ALIGN '(' exp ')'
793 &Operator::create<Operator::ALIGN>());
796 | ALIGN '(' exp ',' exp ')'
799 &Operator::create<Operator::ALIGN>());
815 &Operator::create<Operator::ALIGN>());
DOperator.cpp269 Operator& Operator::create<Operator::ALIGN>() { in create()
270 static BinaryOp<Operator::ALIGN> op; in create()
DScriptScanner.ll113 <LDSCRIPT,EXPRESSION>"ALIGN" { return token::ALIGN; }
DBinaryOp.cpp176 IntOperand* BinaryOp<Operator::ALIGN>::eval(const Module& pModule, in eval()
/frameworks/av/media/tests/benchmark/src/native/decoder/
DC2Decoder.h22 #define ALIGN(_sz, _align) (((_sz) + ((_align) - 1)) & ~((_align) - 1)) macro
DC2Decoder.cpp109 int alignedSize = ALIGN(size, getpagesize()); in decodeFrames()
/frameworks/compile/mclinker/include/mcld/Script/
DOperator.h67 ALIGN = 34, enumerator
200 Operator& Operator::create<Operator::ALIGN>();
DBinaryOp.h102 IntOperand* BinaryOp<Operator::ALIGN>::eval(const Module&,
/frameworks/av/services/camera/libcameraservice/api1/client2/
DCallbackProcessor.cpp29 #define ALIGN(x, mask) ( ((x) + (mask) - 1) & ~((mask) - 1) ) macro
366 destYStride = ALIGN(imgBuffer.width, 16); in processNewCallback()
367 destCStride = ALIGN(destYStride / 2, 16); in processNewCallback()
/frameworks/base/media/jni/
Dandroid_media_Utils.cpp27 #define ALIGN(x, mask) ( ((x) + (mask) - 1) & ~((mask) - 1) ) macro
285 cStride = ALIGN(buffer->stride / 2, 16); in getLockedImageInfo()
298 rStride = (idx == 0) ? buffer->stride : ALIGN(buffer->stride / 2, 16); in getLockedImageInfo()
/frameworks/av/media/ndk/
DNdkImage.cpp32 #define ALIGN(x, mask) ( ((x) + (mask) - 1) & ~((mask) - 1) ) macro
341 : ALIGN(mLockedBuffer->stride / 2, 16); in getPlaneRowStride()
498 cStride = ALIGN(mLockedBuffer->stride / 2, 16); in getPlaneData()
/frameworks/av/services/camera/libcameraservice/api2/
DHeicCompositeStream.cpp19 #define ALIGN(x, mask) ( ((x) + (mask) - 1) & ~((mask) - 1) ) macro
1425 ALIGN(mOutputWidth, HeicEncoderInfoManager::kGridWidth) * in initializeCodec()
1426 ALIGN(mOutputHeight, HeicEncoderInfoManager::kGridHeight) * 3 / 2 + mAppSegmentMaxSize; in initializeCodec()