Searched refs:other (Results 1 - 25 of 747) sorted by path

1234567891011>>

/xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
H A DglutEvent.cpp48 GLUTtimer *timer, *other; local in function:glutTimerFunc
68 other = *prevptr;
69 while (other && (other->timeout < timer->timeout)) {
70 prevptr = &other->next;
71 other = *prevptr;
73 timer->next = other;
/xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
H A Dglut_event.c115 GLUTtimer *timer, *other; local in function:glutTimerFunc
148 other = *prevptr;
149 while (other && IS_AFTER(other->timeout, timer->timeout)) {
150 prevptr = &other->next;
151 other = *prevptr;
153 timer->next = other;
999 /* Set the dummy work bit, clearing all other bits, to
1007 redisplay and not these other types of work. Check for
/xsrc/external/mit/MesaLib.old/dist/docs/specs/
H A DMESA_copy_sub_buffer.spec35 when the back color buffer cannot be damaged by other windows.
66 damaged by other windows.
H A DMESA_drm_image.spec98 EGLImage can be shared with other processes by passing the
H A DMESA_multithread_makecurrent.spec79 If ctx is current to some other thread, then
82 If ctx is an indirect context current to some other thread,
86 If ctx is current to some other thread, then
89 If ctx is an indirect context current to some other thread,
116 The GLX context is unreferenced from that thread, and the other
142 doing multithread_makecurrent to require that other libraries
H A DMESA_query_renderer.spec50 may want to pick one over the other. One such situation is when the
337 17) What about SoCs and other systems that don't have PCI?
H A DMESA_swap_control.spec81 will be swapped at most every other video frame.) A return value
H A DMESA_texture_array.spec187 other target will result in an INVALID_OPERATION error."
208 special case discussed in section 3.8.11. The other parameters match
589 updated as in the other FramebufferTexture commands, except that
643 other get commands; tex is a symbolic value indicating which texture
791 GL_NV_gpu_program4 also adds support for other features that are
H A DMESA_texture_signed_rgba.spec107 is some leeway so other mappings are allowed for implementations which
116 Other than those subtle issues there are no other non-standard
129 and other extensions. The clamping or lack of clamping is left
130 to the core specification and other extensions.
H A DWL_bind_wayland_display.spec110 not an EGL wl_buffer (wl_shm and other wayland extensions can
H A DWL_create_wayland_buffer_from_image.spec50 possible to create buffers using other types of images although there is
/xsrc/external/mit/MesaLib.old/dist/docs/specs/OLD/
H A DMESA_program_debug.spec81 2. There aren't any other extensions that register callbacks with
92 functions and no other GL commands. It could be difficult to
204 Calling any other command from within the callback results in
/xsrc/external/mit/MesaLib.old/dist/include/CL/
H A Dcl2.hpp207 * applies to use of cl::Program construction and other program
997 * existence of Wrapper<T>::cl_type, and none of the other types having the
1094 * existence of Wrapper<T>::cl_type, and none of the other types having the
2405 * other than CL_SUCCESS is generated, then cl::Error exception is
3416 typedef SVMAllocator<U, SVMTrait> other; typedef in struct:cl::SVMAllocator::rebind
3433 SVMAllocator(const SVMAllocator &other) : argument
3434 context_(other.context_)
3439 SVMAllocator(const SVMAllocator<U, SVMTrait> &other) : argument
3440 context_(other.context_)
3556 typedef SVMAllocator<U, SVMTrait> other; typedef in struct:cl::SVMAllocator::rebind
[all...]
/xsrc/external/mit/MesaLib.old/dist/scripts/
H A Dget_reviewer.pl839 other automated tools that expect only ["name"] <email address>
/xsrc/external/mit/MesaLib.old/dist/src/amd/common/
H A Dsid_tables.py153 def __eq__(self, other):
154 return (self.s_name == other.s_name and
155 self.name == other.name and
156 len(self.values) == len(other.values) and
157 all(a[0] == b[0] and a[1] == b[1] for a, b, in zip(self.values, other.values)))
159 def __ne__(self, other):
160 return not (self == other)
223 def __eq__(self, other):
224 if not isinstance(other, Reg):
226 return (self.r_name == other
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
H A Dradv_extensions.py174 def __gt__(self, other):
176 # other's patch version match self.
177 if (self.patch is None) != (other.patch is None):
178 other = copy.copy(other)
179 other.patch = self.patch
181 return self.__int_ver() > other.__int_ver()
H A Dvk_format_parse.py75 def __eq__(self, other):
76 if other is None:
79 return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.size == other.size and self.scaled == other.scaled
81 def __ne__(self, other):
82 return not self == other
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/
H A Dglcpp-parse.y175 * HASH, DEFINE, and VERSION) to avoid conflicts with other symbols,
1019 _token_list_copy(glcpp_parser_t *parser, token_list_t *other)
1024 if (other == NULL)
1028 for (node = other->head; node; node = node->next) {
1199 /* Return a new token formed by pasting 'token' and 'other'. Note that this
1200 * function may return 'token' or 'other' directly rather than allocating
1206 _token_paste(glcpp_parser_t *parser, token_t *token, token_t *other)
1211 if (other->type == PLACEHOLDER)
1214 /* When 'token' is a placeholder, just return 'other'. */
1216 return other;
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dglsl_parser_extras.cpp703 /* All other extensions go here, sorted alphabetically.
1040 * flags, allowing us to ignore other irrelevant flags like
2057 enum ir_variable_mode other; local in function:opt_shader_and_create_symbol_table
2060 other = ir_var_shader_in;
2063 other = ir_var_shader_out;
2067 * doesn't remove anything other than uniforms or constants.
2069 other = ir_var_mode_count;
2073 optimize_dead_builtin_variables(shader->ir, other);
H A Dir_equals.cpp53 const ir_constant *other = ir->as_constant(); local in function:ir_constant::equals
54 if (!other)
57 if (type != other->type)
62 if (value.d[i] != other->value.d[i])
65 if (value.u[i] != other->value.u[i])
77 const ir_dereference_variable *other = ir->as_dereference_variable(); local in function:ir_dereference_variable::equals
78 if (!other)
81 return var == other->var;
88 const ir_dereference_array *other = ir->as_dereference_array(); local in function:ir_dereference_array::equals
89 if (!other)
108 const ir_swizzle *other = ir->as_swizzle(); local in function:ir_swizzle::equals
130 const ir_texture *other = ir->as_texture(); local in function:ir_texture::equals
195 const ir_expression *other = ir->as_expression(); local in function:ir_expression::equals
[all...]
H A Dir_function.cpp56 /* If all of the parameters from the other parameter list have been
108 /* If all of the parameters from the other parameter list have been
161 /* int -> uint and any other oddball conversions */
176 * is better than match involving any other implicit conversion.
184 * neither conversion is considered better than the other.
217 * other matching function definition, it will be used. Otherwise, a
220 for (ir_function_signature **other = matches; local in function:is_best_inexact_overload
221 other < matches + num_matches; other++) {
222 if (*other
[all...]
H A Dir_optimization.h167 enum ir_variable_mode other);
H A Dlinker.cpp492 * Only the final array index is parsed; if the string contains other array
708 * assembly, clipping, culling, and other fixed functionality
840 * primitives other than points, calling EmitStreamVertex(0) or
1061 * behavior matches the implemented behavior of at least one other
2028 * accumulate the results. The other values should replace. If there
2375 ir_function *const other = local in function:link_intrastage_shaders
2378 /* If the other shader has no function (and therefore no function
2381 if (other == NULL)
2389 other->exact_matching_signature(NULL, &sig->parameters);
2466 /* Move any instructions other tha
[all...]
H A Dopt_algebraic.cpp27 * Takes advantage of association, commutivity, and other algebraic
514 ir_rvalue *other = ir->operands[(i + 1) % 2]; local in function:ir_algebraic_visitor::handle_expression
515 if (other && op_expr[i]->operands[0]->equals(other)) {
H A Dopt_dead_builtin_variables.cpp36 enum ir_variable_mode other)
45 && var->data.mode != other)
51 if ((var->data.mode == other || var->data.mode == ir_var_system_value)
59 * are used by ftransform. No other built-in variable is used by a
35 optimize_dead_builtin_variables(exec_list * instructions,enum ir_variable_mode other) argument

Completed in 37 milliseconds

1234567891011>>