Lines Matching refs:di
2098 dictitem_T *di = find_var_in_ht(ht, 0, name, TRUE); in exec_instructions() local
2100 if (di == NULL) in exec_instructions()
2110 copy_tv(&di->di_tv, STACK_TV_BOT(0)); in exec_instructions()
2122 dictitem_T *di = NULL; in exec_instructions() local
2147 di = find_var_in_ht(ht, 0, iptr->isn_arg.string, TRUE); in exec_instructions()
2149 if (di == NULL) in exec_instructions()
2160 copy_tv(&di->di_tv, STACK_TV_BOT(0)); in exec_instructions()
2269 dictitem_T *di = find_var_in_ht(ht, 0, name + 2, TRUE); in exec_instructions() local
2272 if (di == NULL) in exec_instructions()
2277 if (var_check_permission(di, name) == FAIL) in exec_instructions()
2282 clear_tv(&di->di_tv); in exec_instructions()
2283 di->di_tv = *STACK_TV_BOT(0); in exec_instructions()
2378 dictitem_T *di; in exec_instructions() local
2401 di = find_var_in_ht(ht, 0, name, TRUE); in exec_instructions()
2402 if (di == NULL) in exec_instructions()
2407 if (var_check_permission(di, name) == FAIL) in exec_instructions()
2409 clear_tv(&di->di_tv); in exec_instructions()
2410 di->di_tv = *STACK_TV_BOT(0); in exec_instructions()
2510 dictitem_T *di; in exec_instructions() local
2520 di = dict_find(dict, key, -1); in exec_instructions()
2521 if (di != NULL) in exec_instructions()
2523 if (error_if_locked(di->di_tv.v_lock, in exec_instructions()
2527 clear_tv(&di->di_tv); in exec_instructions()
2528 di->di_tv = *tv; in exec_instructions()
2761 dictitem_T *di = NULL; in exec_instructions() local
2766 di = dict_find(d, key, (int)STRLEN(key)); in exec_instructions()
2767 if (di == NULL) in exec_instructions()
2777 dictitem_remove(d, di); in exec_instructions()
4100 dictitem_T *di; in exec_instructions() local
4113 if ((di = dict_find(dict, key, -1)) == NULL) in exec_instructions()
4136 copy_tv(&di->di_tv, tv); in exec_instructions()
4144 dictitem_T *di; in exec_instructions() local
4155 if ((di = dict_find(dict, iptr->isn_arg.string, -1)) in exec_instructions()
4167 copy_tv(&di->di_tv, tv); in exec_instructions()