Home | History | Annotate | Download | only in gen

Lines Matching full:type_size

329 					type_size = param.size() / count
339 if type_size == 1:
359 swap_func = self.swap_name(type_size)
361 print ' %s = (%s) %s( (%s *) (pc + %s), %s );' % (param.name, param.type_string(), swap_func, self.real_types[type_size], o, compsize)
411 type_size = 0
423 type_size = (param.size() / c)
424 if type_size == 1:
427 size_scale = " * %u" % (type_size)
433 print ' %s %s = __glXGetAnswerBuffer(cl, compsize%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, size_scale, type_size )
443 print ' %s %s = __glXGetAnswerBuffer(cl, %s%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, param.counter, size_scale, type_size)
462 type_size = (param.size() / c)
464 if type_size > 1:
465 swap_name = self.swap_name( type_size )
466 print ' (void) %s( (uint%u_t *) %s, %s );' % (swap_name, 8 * type_size, param.name, answer_count)
473 print ' %s(cl->client, %s, %s, %u, %s, %s);' % (reply_func, answer_string, answer_count, type_size, is_array_string, retval_string)