Lines Matching defs:oom
5785 char oom; /* True if an OOM is encountered */
5823 p->oom = 0;
5999 if( p==0 || p->oom ){
6086 if( p==0 || p->oom ){
6216 if( nDigit+1>SQLITE_DECIMAL_MAX_DIGIT ){ p->oom = 1; return; }
6219 p->oom = 1;
6246 if( pA->oom || pB==0 || pB->oom ){
6247 pA->oom = 1;
6264 if( pA->oom || pB->oom ){
6265 pA->oom = 1;
6319 if( pA==0 || pA->oom || pA->isNull
6320 || pB==0 || pB->oom || pB->isNull
6327 if( sumDigit>SQLITE_DECIMAL_MAX_DIGIT ){ pA->oom = 1; return; }
6330 pA->oom = 1;
6371 if( pA==0 || pA->oom ) goto pow2_fault;
6379 if( pX==0 || pX->oom ) goto pow2_fault;
6383 if( pA->oom ) goto pow2_fault;
6562 p->oom = 1;
6615 if( pA==0 || pA->oom || pA->isNull
6616 || pB==0 || pB->oom || pB->isNull
6621 if( pA->oom ){