Lines Matching defs:mem1
25465 /************** Begin file mem1.c ********************************************/
25758 /************** End of mem1.c ************************************************/
86663 Mem mem1;
86667 mem1.enc = pKeyInfo->enc;
86668 mem1.db = pKeyInfo->db;
86669 /* mem1.flags = 0; // Will be initialized by sqlite3VdbeSerialGet() */
86670 VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */
86672 /* Compilers may complain that mem1.u.i is potentially uninitialized.
86674 ** But in fact, mem1.u.i will never actually be used uninitialized, and doing
86679 /* mem1.u.i = 0; // not needed, here to silence compiler warning */
86708 sqlite3VdbeSerialGet(&aKey1[d1], serial_type1, &mem1);
86713 rc = sqlite3MemCompare(&mem1, &pPKey2->aMem[i],
86716 assert( mem1.szMalloc==0 ); /* See comment below */
86718 && ((mem1.flags & MEM_Null) || (pPKey2->aMem[i].flags & MEM_Null))
86730 /* No memory allocation is ever used on mem1. Prove this using
86732 ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1).
86734 assert( mem1.szMalloc==0 );
87076 Mem mem1;
87106 VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */
87126 sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1);
87127 rc = -sqlite3IntFloatCompare(pRhs->u.i, mem1.u.r);
87151 sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1);
87153 if( mem1.u.r<pRhs->u.r ){
87155 }else if( mem1.u.r>pRhs->u.r ){
87159 rc = sqlite3IntFloatCompare(mem1.u.i, pRhs->u.r);
87173 mem1.n = (serial_type - 12) / 2;
87174 testcase( (d1+mem1.n)==(unsigned)nKey1 );
87175 testcase( (d1+mem1.n+1)==(unsigned)nKey1 );
87176 if( (d1+mem1.n) > (unsigned)nKey1
87182 mem1.enc = pKeyInfo->enc;
87183 mem1.db = pKeyInfo->db;
87184 mem1.flags = MEM_Str;
87185 mem1.z = (char*)&aKey1[d1];
87187 &mem1, pRhs, pKeyInfo->aColl[i], &pPKey2->errCode
87190 int nCmp = MIN(mem1.n, pRhs->n);
87192 if( rc==0 ) rc = mem1.n - pRhs->n;
87242 assert( mem1.szMalloc==0 ); /* See comment below */
87258 /* No memory allocation is ever used on mem1. Prove this using
87260 ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1). */
87261 assert( mem1.szMalloc==0 );