Lines Matching refs:zKey
188 char *zKey; /* Key. zero-terminated string. Must be unique */ member
288 static amatch_avl *amatchAvlSearch(amatch_avl *p, const char *zKey){ in amatchAvlSearch() argument
290 while( p && (c = strcmp(zKey, p->zKey))!=0 ){ in amatchAvlSearch()
328 assert( strcmp(p->zKey, pHead->zKey)<0 );
330 assert( strcmp(p->zKey, pHead->zKey)<0 );
335 assert( strcmp(p->zKey, pHead->zKey)>0 );
337 assert( strcmp(p->zKey, pHead->zKey)>0 );
346 assert( strcmp(p->zKey, pNext->zKey)<0 );
364 c = strcmp(pNew->zKey, p->zKey); in amatchAvlInsert()
813 static const char *amatchValueOfKey(const char *zKey, const char *zStr){ in amatchValueOfKey() argument
814 int nKey = (int)strlen(zKey); in amatchValueOfKey()
818 if( memcmp(zStr, zKey, nKey)!=0 ) return 0; in amatchValueOfKey()
1082 pWord->sCost.zKey = pWord->zCost; in amatchAddWord()
1086 pWord->sWord.zKey = pWord->zWord; in amatchAddWord()