Lines Matching defs:variables
257 # variables: C code to create any local variables determined to
272 variables = []
323 variables.append(" %s converted_%s;" % (paramConvertToType, paramName))
332 if (" int convert_%s_value = 1;" % paramName) not in variables:
333 variables.append(" int convert_%s_value = 1;" % paramName)
356 if " register unsigned int i;" not in variables:
357 variables.append(" register unsigned int i;")
364 variables.append(" unsigned int n_%s = %d;" % (paramName, paramMaxVecSize))
367 variables.append(" %s converted_%s[%d];" % (paramConvertToType, paramName, paramMaxVecSize))
379 if (" int convert_%s_value = 1;" % paramName) not in variables:
380 variables.append(" int convert_%s_value = 1;" % paramName)
414 if (" int convert_%s_value = 1;" % paramName) not in variables:
415 variables.append(" int convert_%s_value = 1;" % paramName)
632 if (not variables and
645 # variables we need. This unusual syntax joins the
646 # lines in the variables[] array with the "\n" separator.
647 if len(variables) > 0:
648 print "\n".join(variables) + "\n"