Lines Matching refs:depth
61 char* DepthMalloc(int depth, int mallocSize) in DepthMalloc() argument
67 if (depth == 0) { in DepthMalloc()
71 return (DepthMalloc(depth - 1, mallocSize)); in DepthMalloc()
74 char* DepthCalloc(int depth, int callocSize) in DepthCalloc() argument
77 if (depth == 0) { in DepthCalloc()
81 return (DepthCalloc(depth - 1, callocSize)); in DepthCalloc()
84 char* DepthRealloc(int depth, void* p, int reallocSize) in DepthRealloc() argument
87 if (depth == 0) { in DepthRealloc()
91 return (DepthRealloc(depth - 1, p, reallocSize)); in DepthRealloc()
94 void DepthFree(int depth, void* p) in DepthFree() argument
97 if (depth == 0) { in DepthFree()
102 return (DepthFree(depth - 1, p)); in DepthFree()