/frameworks/libs/binary_translation/exec_region/ |
D | sections.ld | 21 . = ALIGN(4096); 24 . = ALIGN(4096); 34 . = ALIGN(4096); 54 . = ALIGN(4096);
|
/frameworks/base/libs/hwui/utils/ |
D | Macros.h | 43 #define ALIGN(x) (((x) + ALIGN_SZ - 1) & ~(ALIGN_SZ - 1)) macro 44 #define ALIGN_PTR(p) ((void*)(ALIGN((size_t)(p))))
|
D | LinearAllocator.cpp | 141 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/ |
D | media_c2_video_hidl_test_common.h | 26 #define ALIGN(_sz, _align) ((_sz + (_align - 1)) & ~(_align - 1)) macro
|
D | VtsHalMediaC2V1_0TargetVideoDecTest.cpp | 504 auto alignedSize = ALIGN(size, kPageSize); in decodeNFrames()
|
/frameworks/compile/mclinker/lib/Script/ |
D | ScriptParser.yy | 124 %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>());
|
D | Operator.cpp | 269 Operator& Operator::create<Operator::ALIGN>() { in create() 270 static BinaryOp<Operator::ALIGN> op; in create()
|
D | ScriptScanner.ll | 113 <LDSCRIPT,EXPRESSION>"ALIGN" { return token::ALIGN; }
|
D | BinaryOp.cpp | 176 IntOperand* BinaryOp<Operator::ALIGN>::eval(const Module& pModule, in eval()
|
/frameworks/av/media/tests/benchmark/src/native/decoder/ |
D | C2Decoder.h | 22 #define ALIGN(_sz, _align) (((_sz) + ((_align) - 1)) & ~((_align) - 1)) macro
|
D | C2Decoder.cpp | 109 int alignedSize = ALIGN(size, getpagesize()); in decodeFrames()
|
/frameworks/compile/mclinker/include/mcld/Script/ |
D | Operator.h | 67 ALIGN = 34, enumerator 200 Operator& Operator::create<Operator::ALIGN>();
|
D | BinaryOp.h | 102 IntOperand* BinaryOp<Operator::ALIGN>::eval(const Module&,
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | CallbackProcessor.cpp | 29 #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/ |
D | android_media_Utils.cpp | 27 #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/ |
D | NdkImage.cpp | 32 #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/ |
D | HeicCompositeStream.cpp | 19 #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()
|