Home
last modified time | relevance | path

Searched refs:dupedExprSize (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c114221 static int dupedExprSize(const Expr *p){ function
114225 if( p->pLeft ) nByte += dupedExprSize(p->pLeft);
114226 if( p->pRight ) nByte += dupedExprSize(p->pRight);
114281 nAlloc = dupedExprSize(p);