Lines Matching defs:ubptr
13545 GLubyte *ubptr;
13558 ubptr = (GLubyte *) get_pointer(&n[3]);
13560 replace_op_vertex_list_recursively(ctx, _mesa_lookup_list(ctx, (int)ubptr[i], true));
13588 ubptr = (GLubyte *) get_pointer(&n[3]);
13591 _mesa_lookup_list(ctx, (int)ubptr[2 * i] * 256 +
13592 (int)ubptr[2 * i + 1], true));
13596 ubptr = (GLubyte *) get_pointer(&n[3]);
13599 _mesa_lookup_list(ctx, (int)ubptr[3 * i] * 65536 +
13600 (int)ubptr[3 * i + 1] * 256 +
13601 (int)ubptr[3 * i + 2], true));
13605 ubptr = (GLubyte *) get_pointer(&n[3]);
13608 _mesa_lookup_list(ctx, (int)ubptr[4 * i] * 16777216 +
13609 (int)ubptr[4 * i + 1] * 65536 +
13610 (int)ubptr[4 * i + 2] * 256 +
13611 (int)ubptr[4 * i + 3], true));
13872 GLubyte *ubptr;
13891 ubptr = (GLubyte *) lists;
13893 execute_list(ctx, base + (int)ubptr[i]);
13921 ubptr = (GLubyte *) lists;
13924 (int)ubptr[2 * i] * 256 +
13925 (int)ubptr[2 * i + 1]);
13929 ubptr = (GLubyte *) lists;
13932 (int)ubptr[3 * i] * 65536 +
13933 (int)ubptr[3 * i + 1] * 256 +
13934 (int)ubptr[3 * i + 2]);
13938 ubptr = (GLubyte *) lists;
13941 (int)ubptr[4 * i] * 16777216 +
13942 (int)ubptr[4 * i + 1] * 65536 +
13943 (int)ubptr[4 * i + 2] * 256 +
13944 (int)ubptr[4 * i + 3]);