Searched defs:zKey1 (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.c3257 ** Return negative if zKey1<zKey2.
3258 ** Return zero if zKey1==zKey2.
3259 ** Return positive if zKey1>zKey2.
3262 const char *zKey1, int nKey1,
3266 int c = memcmp(zKey1, zKey2, min);
3303 char *zKey1, *zKey2; local
3333 zKey1 = sqliteMalloc( nLower+1 );
3334 memcpy(zKey1, zLowerBound, nLower);
3335 zKey1[nLower] = 0;
3337 zKey1
3261 keyCompare( const char *zKey1, int nKey1, const char *zKey2, int nKey2 ) argument
[all...]

Completed in 562 milliseconds