Searched refs:casein (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libnisdb/
H A Ddb_item_c.x66 %/* Equality test. 'casein' TRUE means case insensitive test. */
67 % bool_t equal( item *, bool_t casein = FALSE );
69 %/* Equality test. 'casein' TRUE means case insensitive test. */
70 % bool_t equal( char *, int, bool_t casein = FALSE );
81 %/* Return hash value. 'casein' TRUE means case insensitive test. */
82 % unsigned int get_hashval( bool_t casein = FALSE );
H A Ddb_item.cc83 /* Equality test. 'casein' TRUE means case insensitive test. */
85 item::equal(item* other, bool_t casein) argument
87 if (casein) // case-insensitive
96 item::equal(char* other, int olen, bool_t casein) argument
98 if (casein) // case-insensitive
104 /* Return hash value. 'casein' TRUE means case insensitive test. */
106 item::get_hashval(bool_t casein) argument
113 if (casein) { // case insensitive
H A Ddb_index_entry.cc143 db_index_entry::getnext(bool_t casein, unsigned long hval, item *i, entryp l) argument
149 (np->key->equal(i, casein)) && l == location) {
165 db_index_entry::lookup(bool_t casein, unsigned long hval, argument
171 if (np->hashval == hval && np->key->equal(i, casein) &&
188 db_index_entry::lookup(bool_t casein, unsigned long hval, argument
195 if ((fst->hashval == hval) && (fst->key->equal(i, casein))) {
208 (curr->key->equal(i, casein))) {
232 db_index_entry::remove(db_index_entry_p *head, bool_t casein, argument
239 if (np->hashval == hval && np->key->equal(i, casein) &&
278 db_index_entry::add(db_index_entry **head, bool_t casein, argument
[all...]

Completed in 16 milliseconds