Lines Matching refs:table
1138 intable(struct interval *table, size_t size, int c) in intable() argument
1143 if (c < table[0].first) in intable()
1152 if (table[mid].last < c) in intable()
1154 else if (table[mid].first > c) in intable()
3140 convertStruct table[], in utf_convert() argument
3152 if (table[mid].rangeEnd < a) in utf_convert()
3158 && table[start].rangeStart <= a in utf_convert()
3159 && a <= table[start].rangeEnd in utf_convert()
3160 && (a - table[start].rangeStart) % table[start].step == 0) in utf_convert()
3161 return (a + table[start].offset); in utf_convert()
5512 cw_interval_T *table; in f_setcellwidths() local
5595 table = ALLOC_MULT(cw_interval_T, l->lv_len); in f_setcellwidths()
5596 if (table == NULL) in f_setcellwidths()
5610 if (item > 0 && n1 <= table[item - 1].last) in f_setcellwidths()
5614 vim_free(table); in f_setcellwidths()
5617 table[item].first = n1; in f_setcellwidths()
5619 table[item].last = lili->li_tv.vval.v_number; in f_setcellwidths()
5621 table[item].width = lili->li_tv.vval.v_number; in f_setcellwidths()
5628 cw_table = table; in f_setcellwidths()
5638 vim_free(table); in f_setcellwidths()
5653 vim_free(table); in f_setcellwidths()