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