Lines Matching refs:pLog
744 MallocLog *pLog; in test_memdebug_callback() local
759 pLog = (MallocLog *)Tcl_Alloc(sizeof(MallocLog)); in test_memdebug_callback()
760 memset(pLog, 0, sizeof(MallocLog)); in test_memdebug_callback()
761 Tcl_SetHashValue(pEntry, (ClientData)pLog); in test_memdebug_callback()
763 pLog = (MallocLog *)Tcl_GetHashValue(pEntry); in test_memdebug_callback()
766 pLog->nCall++; in test_memdebug_callback()
767 pLog->nByte += nByte; in test_memdebug_callback()
780 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry); in test_memdebug_log_clear() local
781 Tcl_Free((char *)pLog); in test_memdebug_log_clear()
838 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry); in test_memdebug_log() local
842 apElem[0] = Tcl_NewIntObj(pLog->nCall); in test_memdebug_log()
843 apElem[1] = Tcl_NewIntObj(pLog->nByte); in test_memdebug_log()