Home | History | Annotate | Download | only in dist

Lines Matching defs:mem1

15177 /************** Begin file mem1.c ********************************************/
15457 /************** End of mem1.c ************************************************/
62491 Mem mem1;
62494 mem1.enc = pKeyInfo->enc;
62495 mem1.db = pKeyInfo->db;
62496 /* mem1.flags = 0; // Will be initialized by sqlite3VdbeSerialGet() */
62497 VVA_ONLY( mem1.zMalloc = 0; ) /* Only needed by assert() statements */
62499 /* Compilers may complain that mem1.u.i is potentially uninitialized.
62501 ** But in fact, mem1.u.i will never actually be used uninitialized, and doing
62506 /* mem1.u.i = 0; // not needed, here to silence compiler warning */
62520 d1 += sqlite3VdbeSerialGet(&aKey1[d1], serial_type1, &mem1);
62524 rc = sqlite3MemCompare(&mem1, &pPKey2->aMem[i],
62527 assert( mem1.zMalloc==0 ); /* See comment below */
62541 assert( mem1.flags & MEM_Int );
62543 pPKey2->rowid = mem1.u.i;
62551 /* No memory allocation is ever used on mem1. Prove this using
62553 ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1).
62555 assert( mem1.zMalloc==0 );