Lines Matching refs:Tmalloc
166 void* Tmalloc(size_t size);
310 p = Tmalloc(params[i]); in CheckArgumentsOverflow()
361 *base = (char*)Tmalloc(2*maxAllocSize); in InvariantDataRealloc()
447 void* Tmalloc(size_t size) in Tmalloc() function
517 PtrSize *arr = (PtrSize*)Tmalloc(COUNT_ELEM*sizeof(PtrSize)); in AddrArifm()
525 arr[i].ptr=Tmalloc(arr[i].size); in AddrArifm()
645 void **buf_1024 = (void**)Tmalloc(MAXNUM_1024*sizeof(void*)); in NULLReturn()
680 tmp=Tmalloc(Size); in NULLReturn()
699 tmp=Tmalloc(Size); in NULLReturn()
820 int **MasPointer = (int **)Tmalloc(sizeof(int*)*COUNT_ELEM); in UniquePointer()
821 size_t *MasCountElem = (size_t*)Tmalloc(sizeof(size_t)*COUNT_ELEM); in UniquePointer()
830 MasPointer[i]=(int*)Tmalloc(MasCountElem[i]*sizeof(int)); in UniquePointer()