Home
last modified time | relevance | path

Searched refs:baseSize (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/xserver/dix/
H A Dprivates.c471 _dixAllocateObjectWithPrivates(unsigned baseSize, unsigned clear, in _dixAllocateObjectWithPrivates() argument
483 baseSize = (baseSize + sizeof(void *) - 1) & ~(sizeof(void *) - 1); in _dixAllocateObjectWithPrivates()
484 totalSize = baseSize + global_keys[type].offset; in _dixAllocateObjectWithPrivates()
490 privates = (PrivatePtr) (((char *) object) + baseSize); in _dixAllocateObjectWithPrivates()
688 unsigned baseSize, in _dixAllocateScreenObjectWithPrivates() argument
707 baseSize = (baseSize + sizeof(void *) - 1) & ~(sizeof(void *) - 1); in _dixAllocateScreenObjectWithPrivates()
708 totalSize = baseSize + privates_size; in _dixAllocateScreenObjectWithPrivates()
714 privates = (PrivatePtr) (((char *) object) + baseSize); in _dixAllocateScreenObjectWithPrivates()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/common/media_buffer/
H A Dmedia_buffer.h61 uint32_t baseSize; /**< Base size of buffer (can differ from actual buffer member
H A Dmedia_buffer_pool.c159 pBufPool->pBufArray[i].baseSize = pBufPool->bufSize; in MediaBufPoolCreate()