Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/misc/
H A Ddecimal.c36 char isNull; /* True if holds a NULL rather than a number */ member
79 p->isNull = 0; in decimal_new()
88 p->isNull = 1; in decimal_new()
191 if( p->isNull ){ in decimal_result()
300 if( pA==0 || pA->isNull ) goto cmp_done; in decimalCmpFunc()
302 if( pB==0 || pB->isNull ) goto cmp_done; in decimalCmpFunc()
355 if( pA->isNull || pB->isNull ){ in decimal_add()
356 pA->isNull = 1; in decimal_add()
551 if( pA==0 || pA->oom || pA->isNull in decimalMulFunc()
552 || pB==0 || pB->oom || pB->isNull in decimalMulFunc()