Lines Matching refs:list
107 vorbis_floor1_entry *list, int values)
110 list[0].sort = 0;
111 list[1].sort = 1;
114 list[i].low = 0;
115 list[i].high = 1;
116 list[i].sort = i;
118 int tmp = list[j].x;
119 if (tmp < list[i].x) {
120 if (tmp > list[list[i].low].x)
121 list[i].low = j;
123 if (tmp < list[list[i].high].x)
124 list[i].high = j;
131 if (list[i].x == list[j].x) {
136 if (list[list[i].sort].x > list[list[j].sort].x) {
137 int tmp = list[i].sort;
138 list[i].sort = list[j].sort;
139 list[j].sort = tmp;
196 void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values,
204 int pos = list[i].sort;
206 int x1 = list[pos].x;