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

/xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
H A Dt_rebase.c67 TYPE *tmp_indices = malloc(count * sizeof(TYPE)); \
69 if (tmp_indices == NULL) { \
75 tmp_indices[i] = in[i] - min_index; \
77 return (void *)tmp_indices; \
120 void *tmp_indices = NULL; local in function:REBASE
168 tmp_indices = rebase_GLuint( ptr, ib->count, min_index );
171 tmp_indices = rebase_GLushort( ptr, ib->count, min_index );
174 tmp_indices = rebase_GLubyte( ptr, ib->count, min_index );
181 if (tmp_indices == NULL) {
186 tmp_ib.ptr = tmp_indices;
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
H A Dt_rebase.c67 TYPE *tmp_indices = malloc((start + count) * sizeof(TYPE)); \
69 if (tmp_indices == NULL) { \
75 tmp_indices[start + i] = in[start + i] - min_index; \
77 return (void *)tmp_indices; \
120 void *tmp_indices = NULL; local in function:REBASE
187 tmp_indices = rebase_GLuint(ptr, start, ib->count, min_index);
190 tmp_indices = rebase_GLushort(ptr, start, ib->count, min_index);
193 tmp_indices = rebase_GLubyte(ptr, start, ib->count, min_index);
200 if (tmp_indices == NULL)
204 tmp_ib.ptr = tmp_indices;
[all...]

Completed in 9 milliseconds