Lines Matching refs:tmp_indices
64 TYPE *tmp_indices = malloc(count * sizeof(TYPE)); \
66 if (tmp_indices == NULL) { \
72 tmp_indices[i] = in[i] - min_index; \
74 return (void *)tmp_indices; \
139 void *tmp_indices = NULL; in vbo_rebase_prims() local
187 tmp_indices = rebase_GLuint( ptr, ib->count, min_index ); in vbo_rebase_prims()
190 tmp_indices = rebase_GLushort( ptr, ib->count, min_index ); in vbo_rebase_prims()
193 tmp_indices = rebase_GLubyte( ptr, ib->count, min_index ); in vbo_rebase_prims()
200 if (tmp_indices == NULL) { in vbo_rebase_prims()
205 tmp_ib.ptr = tmp_indices; in vbo_rebase_prims()
266 free(tmp_indices); in vbo_rebase_prims()