• Home
  • Raw
  • Download

Lines Matching refs:cmsUInt32Number

69 #define MAX_MEMORY_FOR_ALLOC  ((cmsUInt32Number)(1024U*1024U*512U))
84 void* _cmsMallocDefaultFn(cmsContext ContextID, cmsUInt32Number size)
95 void* _cmsMallocZeroDefaultFn(cmsContext ContextID, cmsUInt32Number size)
120 void* _cmsReallocDefaultFn(cmsContext ContextID, void* Ptr, cmsUInt32Number size)
134 void* _cmsCallocDefaultFn(cmsContext ContextID, cmsUInt32Number num, cmsUInt32Number size)
136 cmsUInt32Number Total = num * size;
156 void* _cmsDupDefaultFn(cmsContext ContextID, const void* Org, cmsUInt32Number size)
263 void* CMSEXPORT _cmsMalloc(cmsContext ContextID, cmsUInt32Number size) in _cmsMalloc()
269 void* CMSEXPORT _cmsMallocZero(cmsContext ContextID, cmsUInt32Number size) in _cmsMallocZero()
277 void* CMSEXPORT _cmsCalloc(cmsContext ContextID, cmsUInt32Number num, cmsUInt32Number size) in _cmsCalloc()
279 cmsUInt32Number total = num * size; in _cmsCalloc()
287 void* CMSEXPORT _cmsRealloc(cmsContext ContextID, void* Ptr, cmsUInt32Number size) in _cmsRealloc()
299 void* CMSEXPORT _cmsDupMem(cmsContext ContextID, const void* Org, cmsUInt32Number size) in _cmsDupMem()
358 _cmsSubAllocator_chunk* _cmsCreateSubAllocChunk(cmsContext ContextID, cmsUInt32Number Initial) in _cmsCreateSubAllocChunk()
388 _cmsSubAllocator* _cmsCreateSubAlloc(cmsContext ContextID, cmsUInt32Number Initial) in _cmsCreateSubAlloc()
426 void* _cmsSubAlloc(_cmsSubAllocator* sub, cmsUInt32Number size) in _cmsSubAlloc()
428 cmsUInt32Number Free = sub -> h ->BlockSize - sub -> h -> Used; in _cmsSubAlloc()
437 cmsUInt32Number newSize; in _cmsSubAlloc()
458 void* _cmsSubAllocDup(_cmsSubAllocator* s, const void *ptr, cmsUInt32Number size) in _cmsSubAllocDup()
496 static void DefaultLogErrorHandlerFunction(cmsContext ContextID, cmsUInt32Number ErrorCode, const c…
521 void DefaultLogErrorHandlerFunction(cmsContext ContextID, cmsUInt32Number ErrorCode, const char *Te… in DefaultLogErrorHandlerFunction()
553 void CMSEXPORT cmsSignalError(cmsContext ContextID, cmsUInt32Number ErrorCode, const char *ErrorTex… in cmsSignalError()
574 cmsUInt32Number be; in _cmsTagSignature2String()
577 be = _cmsAdjustEndianess32((cmsUInt32Number) sig); in _cmsTagSignature2String()