Searched refs:min_index_ptr (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Ddraw.c1170 uintptr_t min_index_ptr, max_index_ptr; local in function:_mesa_validated_multidrawelements
1183 min_index_ptr = (uintptr_t) indices[0];
1186 min_index_ptr = MIN2(min_index_ptr, (uintptr_t) indices[i]);
1199 if ((((uintptr_t) indices[i] - min_index_ptr) % index_type_size) !=
1225 ib.count = (max_index_ptr - min_index_ptr) / index_type_size;
1228 ib.ptr = (void *) min_index_ptr;
1236 ((uintptr_t) indices[i] - min_index_ptr) / index_type_size;
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Ddraw.c2093 uintptr_t min_index_ptr, max_index_ptr; local in function:_mesa_validated_multidrawelements
2102 min_index_ptr = (uintptr_t) indices[0];
2105 min_index_ptr = MIN2(min_index_ptr, (uintptr_t) indices[i]);
2118 if ((((uintptr_t) indices[i] - min_index_ptr) &
2145 info.index.user = (void*)min_index_ptr;
2151 /* "max_index_ptr - min_index_ptr >> index_size_shift" is stored
2158 max_index_ptr - min_index_ptr <= UINT32_MAX)) {
2166 ((uintptr_t)indices[i] - min_index_ptr) >> index_size_shift;

Completed in 8 milliseconds