Home
last modified time | relevance | path

Searched refs:type_fmt (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_printf.c87 char type_fmt[6] = " %x"; in lp_build_print_value() local
105 type_fmt[2] = '.'; in lp_build_print_value()
106 type_fmt[3] = '9'; in lp_build_print_value()
107 type_fmt[4] = 'g'; in lp_build_print_value()
108 type_fmt[5] = '\0'; in lp_build_print_value()
113 strncpy(type_fmt + 2, PRId64, flen); in lp_build_print_value()
115 type_fmt[2] = 'u'; in lp_build_print_value()
117 type_fmt[2] = 'i'; in lp_build_print_value()
120 type_fmt[2] = 'p'; in lp_build_print_value()
127 assert(strlen(format) + strlen(type_fmt) * length + 2 <= sizeof format); in lp_build_print_value()
[all …]