Home | History | Annotate | Download | only in vulkan-validation-layers

Lines Matching full:param_count

142     param_count = 'NONE' # track params that give array sizes
148 param_count = p.name
154 if is_ptr and 'const' in p.ty and param_count != 'NONE':
155 array_len = "[%s]" % param_count
164 if 'NONE' != param_count:
165 struct_name = "%s[%s]" % (struct_name, param_count)
1218 param_count = 'NONE' # keep track of arrays passed directly into API functions
1222 param_count = p.name
1225 if '*' in p.ty and 'const' in p.ty and param_count != 'NONE':
1226 loop_params[param_count].append(p.name)
1227 loop_types[param_count].append(str(p.ty[6:-1]))
1243 if param_count != 'NONE':
1245 if 's' == p.name[-1] or param_count.lower().replace('count', '') in p.name.lower():
1252 if param_count != 'NONE': # this will be a double-embedded loop, use comma delineated 'count,name' for param_name
1254 loop_params[param_count].append('%s,%s' % (loop_count, param_name))
1255 loop_types[param_count].append('%s' % (vk_helper.struct_dict[struct_type][m]['type']))
1262 loop_params[param_count].append(param_name)
1263 loop_types[param_count].append('%s' % (vk_helper.struct_dict[struct_type][m]['type']))