Lines Matching defs:amt
3130 int amt, offset, end, payloadSize;
3202 amt = end - offset;
3203 if( amt<0 || offset<0 || end>payloadSize ){
3208 /* amt and offset now hold the offset to the start of data and the
3211 pTos->n = amt;
3212 if( amt==0 ){
3218 if( amt<=NBFS ){
3222 char *z = sqliteMallocRaw( amt );
3228 sqliteBtreeKey(pCrsr, offset, amt, pTos->z);
3230 sqliteBtreeData(pCrsr, offset, amt, pTos->z);
3289 int amt;
3293 sqliteBtreeKeySize(pCrsr, &amt);
3294 if( amt<=0 ){
3298 if( amt>NBFS ){
3299 z = sqliteMallocRaw( amt );
3306 sqliteBtreeKey(pCrsr, 0, amt, z);
3308 pTos->n = amt;