Searched refs:ui_indices (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dsse_minmax.h32 _mesa_uint_array_min_max(const unsigned *ui_indices, unsigned *min_index,
H A Dsse_minmax.c33 _mesa_uint_array_min_max(const unsigned *ui_indices, unsigned *min_index, argument
42 while (((uintptr_t)ui_indices & 15) && aligned_count) {
43 if (*ui_indices > max_ui)
44 max_ui = *ui_indices;
45 if (*ui_indices < min_ui)
46 min_ui = *ui_indices;
49 ui_indices++;
66 ui_indices_ptr = (__m128i *)ui_indices;
86 if (ui_indices[i] > max_ui)
87 max_ui = ui_indices[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dsse_minmax.h32 _mesa_uint_array_min_max(const unsigned *ui_indices, unsigned *min_index,
H A Dsse_minmax.c33 _mesa_uint_array_min_max(const unsigned *ui_indices, unsigned *min_index, argument
42 while (((uintptr_t)ui_indices & 15) && aligned_count) {
43 if (*ui_indices > max_ui)
44 max_ui = *ui_indices;
45 if (*ui_indices < min_ui)
46 min_ui = *ui_indices;
49 ui_indices++;
66 ui_indices_ptr = (__m128i *)ui_indices;
86 if (ui_indices[i] > max_ui)
87 max_ui = ui_indices[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/
H A Dvbo_minmax_index.c266 const GLuint *ui_indices = (const GLuint *)indices; local in function:vbo_get_minmax_index
271 if (ui_indices[i] != restartIndex) {
272 if (ui_indices[i] > max_ui) max_ui = ui_indices[i];
273 if (ui_indices[i] < min_ui) min_ui = ui_indices[i];
280 _mesa_uint_array_min_max(ui_indices, &min_ui, &max_ui, count);
285 if (ui_indices[i] > max_ui) max_ui = ui_indices[i];
286 if (ui_indices[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/vbo/
H A Dvbo_minmax_index.c240 const GLuint *ui_indices = (const GLuint *)indices; local in function:vbo_get_minmax_index_mapped
245 if (ui_indices[i] != restartIndex) {
246 if (ui_indices[i] > max_ui) max_ui = ui_indices[i];
247 if (ui_indices[i] < min_ui) min_ui = ui_indices[i];
254 _mesa_uint_array_min_max(ui_indices, &min_ui, &max_ui, count);
259 if (ui_indices[i] > max_ui) max_ui = ui_indices[i];
260 if (ui_indices[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_vbuf.c1038 const unsigned *ui_indices = (const unsigned*)indices; local in function:u_vbuf_get_minmax_index_mapped
1041 if (ui_indices[i] != info->restart_index) {
1042 if (ui_indices[i] > max) max = ui_indices[i];
1043 if (ui_indices[i] < min) min = ui_indices[i];
1049 if (ui_indices[i] > max) max = ui_indices[i];
1050 if (ui_indices[i] < min) min = ui_indices[
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_vbuf.c1228 const unsigned *ui_indices = (const unsigned*)indices; local in function:u_vbuf_get_minmax_index_mapped
1233 if (ui_indices[i] != info->restart_index) {
1234 if (ui_indices[i] > max) max = ui_indices[i];
1235 if (ui_indices[i] < min) min = ui_indices[i];
1241 if (ui_indices[i] > max) max = ui_indices[i];
1242 if (ui_indices[i] < min) min = ui_indices[
[all...]

Completed in 9 milliseconds