Lines Matching defs:eql
1508 uint32_t hash, eqlfunc_t *eql) {
1515 if (eql(e->key, key)) return e;
1521 uint32_t hash, eqlfunc_t *eql) {
1522 return (upb_tabent*)findentry(t, key, hash, eql);
1526 uint32_t hash, eqlfunc_t *eql) {
1527 const upb_tabent *e = findentry(t, key, hash, eql);
1541 hashfunc_t *hashfunc, eqlfunc_t *eql) {
1545 UPB_ASSERT(findentry(t, key, hash, eql) == NULL);
1581 UPB_ASSERT(findentry(t, key, hash, eql) == our_e);
1585 upb_tabkey *removed, uint32_t hash, eqlfunc_t *eql) {
1588 if (eql(chain->key, key)) {
1604 while (chain->next && !eql(chain->next->key, key)) {