Lines Matching refs:depth
59 static char* DepthMalloc(int depth, int mallocSize) in DepthMalloc() argument
65 if (depth == 0) { in DepthMalloc()
69 return (DepthMalloc(depth - 1, mallocSize)); in DepthMalloc()
72 static char* DepthCalloc(int depth, int callocSize) in DepthCalloc() argument
75 if (depth == 0) { in DepthCalloc()
79 return (DepthCalloc(depth - 1, callocSize)); in DepthCalloc()
82 static char* DepthRealloc(int depth, void* p, int reallocSize) in DepthRealloc() argument
85 if (depth == 0) { in DepthRealloc()
89 return (DepthRealloc(depth - 1, p, reallocSize)); in DepthRealloc()
92 static void DepthFree(int depth, void* p) in DepthFree() argument
95 if (depth == 0) { in DepthFree()
100 return (DepthFree(depth - 1, p)); in DepthFree()