HomeSort by: relevance | last modified time | path
    Searched refs:c_type (Results 1 - 11 of 11) sorted by relevancy

  /xsrc/external/mit/libxcb/dist/src/
c_client.py 394 self.c_type = _t(name + postfix)
395 self.c_wiretype = 'char' if self.c_type == 'void' else self.c_type
510 if self.c_type not in finished_switch:
511 finished_switch.append(self.c_type)
817 add_param(params, ('const %s' % self.c_type, '*', aux_var))
819 add_param(params, ('%s' % self.c_type, '**', aux_var))
821 add_param(params, ('%s' % self.c_type, '*', aux_var))
1062 code_lines.append('%s /* %s.%s */' % (space, self.c_type, field.c_field_name))
1064 scoped_name = [obj.c_type if idx==0 else name for idx, (name, _, obj) in enumerate(prefix)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/perf/
gen_perf.py 335 def sizeof(c_type):
336 return c_type_sizes[c_type]
401 c_type = data_type
403 if "uint" in c_type:
404 c_type = c_type + "_t"
430 current_offset = pot_align(current_offset, sizeof(c_type))
437 return current_offset + sizeof(c_type)
  /xsrc/external/mit/MesaLib.old/dist/src/intel/perf/
gen_perf.py 327 def sizeof(c_type):
328 return c_type_sizes[c_type]
356 c_type = data_type
358 if "uint" in c_type:
359 c_type = c_type + "_t"
382 current_offset = pot_align(current_offset, sizeof(c_type))
389 return current_offset + sizeof(c_type)
  /xsrc/external/mit/MesaLib/dist/src/mapi/
mapi_abi.py 113 c_type = m.group('type').strip()
118 return (c_type, c_name, c_array)
  /xsrc/external/mit/MesaLib.old/dist/src/mapi/
mapi_abi.py 115 c_type = m.group('type').strip()
120 return (c_type, c_name, c_array)
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
ir_expression_operation.py 27 def __init__(self, c_type, union_field, glsl_type):
28 self.c_type = c_type
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
ir_expression_operation.py 27 def __init__(self, c_type, union_field, glsl_type):
28 self.c_type = c_type
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_algebraic.py 152 def c_type(self): member in class:Value
215 return "static const {} {} = {}\n".format(self.c_type, self.name,
nir.h 4265 #define NIR_SRC_AS_(name, c_type, type_enum, cast_macro) \
4266 static inline c_type * \
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_algebraic.py 159 def c_type(self): member in class:Value
221 return "static const {} {} = {}\n".format(self.c_type, self.name,
nir.h 2969 #define NIR_SRC_AS_(name, c_type, type_enum, cast_macro) \
2970 static inline c_type * \

Completed in 18 milliseconds