Lines Matching defs:eql
1483 uint32_t hash, eqlfunc_t *eql) {
1490 if (eql(e->key, key)) return e;
1496 uint32_t hash, eqlfunc_t *eql) {
1497 return (upb_tabent*)findentry(t, key, hash, eql);
1501 uint32_t hash, eqlfunc_t *eql) {
1502 const upb_tabent *e = findentry(t, key, hash, eql);
1516 hashfunc_t *hashfunc, eqlfunc_t *eql) {
1520 UPB_ASSERT(findentry(t, key, hash, eql) == NULL);
1556 UPB_ASSERT(findentry(t, key, hash, eql) == our_e);
1560 upb_tabkey *removed, uint32_t hash, eqlfunc_t *eql) {
1563 if (eql(chain->key, key)) {
1579 while (chain->next && !eql(chain->next->key, key)) {