Home | History | Annotate | Download | only in src

Lines Matching refs:newtable

842             void** newtable;
844 int newrawsize = newsize*sizeof(newtable[0]);
850 CV_CALL( newtable = (void**)cvAlloc( newrawsize ));
851 memset( newtable, 0, newrawsize );
858 node->next = (CvSparseNode*)newtable[newidx];
859 newtable[newidx] = node;
864 mat->hashtable = newtable;