Searched refs:rgnSize (Results 1 – 2 of 2) sorted by relevance
348 size_t rgnSize; in RegionRectAlloc() local352 rgnSize = RegionSizeof(n); in RegionRectAlloc()353 pRgn->data = (rgnSize > 0) ? malloc(rgnSize) : NULL; in RegionRectAlloc()360 rgnSize = RegionSizeof(n); in RegionRectAlloc()361 pRgn->data = (rgnSize > 0) ? malloc(rgnSize) : NULL; in RegionRectAlloc()373 rgnSize = RegionSizeof(n); in RegionRectAlloc()374 data = (rgnSize > 0) ? realloc(pRgn->data, rgnSize) : NULL; in RegionRectAlloc()1319 size_t rgnSize; in RegionFromRects() local1346 rgnSize = RegionSizeof(nrects); in RegionFromRects()1347 pData = (rgnSize > 0) ? malloc(rgnSize) : NULL; in RegionFromRects()
144 size_t rgnSize; in RegionInit() local146 if (((_size) > 1) && ((rgnSize = RegionSizeof(_size)) > 0) && in RegionInit()147 (((_pReg)->data = (RegDataPtr) malloc(rgnSize)) != NULL)) { in RegionInit()