Lines Matching defs:num
214 void jsonw_float_fmt(json_writer_t *self, const char *fmt, double num)
216 jsonw_printf(self, fmt, num);
220 void jsonw_float(json_writer_t *self, double num)
222 jsonw_printf(self, "%g", num);
226 void jsonw_hu(json_writer_t *self, unsigned short num)
228 jsonw_printf(self, "%hu", num);
231 void jsonw_uint(json_writer_t *self, uint64_t num)
233 jsonw_printf(self, "%"PRIu64, num);
236 void jsonw_lluint(json_writer_t *self, unsigned long long int num)
238 jsonw_printf(self, "%llu", num);
241 void jsonw_int(json_writer_t *self, int64_t num)
243 jsonw_printf(self, "%"PRId64, num);
276 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num)
279 jsonw_uint(self, num);
282 void jsonw_hu_field(json_writer_t *self, const char *prop, unsigned short num)
285 jsonw_hu(self, num);
290 unsigned long long int num)
293 jsonw_lluint(self, num);
296 void jsonw_int_field(json_writer_t *self, const char *prop, int64_t num)
299 jsonw_int(self, num);