Lines Matching refs:hi2
1080 hashitem_T *hi2; in dict_extend() local
1091 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2) in dict_extend()
1093 if (!HASHITEM_EMPTY(hi2)) in dict_extend()
1096 di1 = dict_find(d1, hi2->hi_key, -1); in dict_extend()
1102 && HI2DI(hi2)->di_tv.v_type == VAR_FUNC in dict_extend()
1103 && var_wrong_func_name(hi2->hi_key, di1 == NULL)) in dict_extend()
1105 if (!valid_varname(hi2->hi_key, TRUE)) in dict_extend()
1110 && check_typval_arg_type(type, &HI2DI(hi2)->di_tv, in dict_extend()
1116 di1 = dictitem_copy(HI2DI(hi2)); in dict_extend()
1122 semsg(_("E737: Key already exists: %s"), hi2->hi_key); in dict_extend()
1125 else if (*action == 'f' && HI2DI(hi2) != di1) in dict_extend()
1130 if (dict_wrong_func_name(d1, &HI2DI(hi2)->di_tv, hi2->hi_key)) in dict_extend()
1133 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv); in dict_extend()