Lines Matching refs:pNew
142 TestWindow *pNew; in test_create_window() local
154 pNew = (TestWindow*)ckalloc(sizeof(TestWindow)); in test_create_window()
155 memset(pNew, 0, sizeof(TestWindow)); in test_create_window()
156 pNew->xStep = Tcl_DuplicateObj(objv[3]); in test_create_window()
157 pNew->xFinal = Tcl_DuplicateObj(objv[4]); in test_create_window()
158 pNew->xValue = Tcl_DuplicateObj(objv[5]); in test_create_window()
159 pNew->xInverse = Tcl_DuplicateObj(objv[6]); in test_create_window()
160 pNew->interp = interp; in test_create_window()
162 Tcl_IncrRefCount(pNew->xStep); in test_create_window()
163 Tcl_IncrRefCount(pNew->xFinal); in test_create_window()
164 Tcl_IncrRefCount(pNew->xValue); in test_create_window()
165 Tcl_IncrRefCount(pNew->xInverse); in test_create_window()
167 rc = sqlite3_create_window_function(db, zName, -1, SQLITE_UTF8, (void*)pNew, in test_create_window()