Lines Matching refs:decimal
139 fn decimal(i: &[u8]) -> nom::IResult<&[u8], u8> { in decimal() function
274 map_opt(many1(complete(decimal)), |v| c_int_radix(v, 10)), in c_int()
294 pair(opt(byte!(b'-' | b'+')), many1(complete(decimal))), in float_exp()
303 many1(complete(decimal)), in c_float()
305 many0(complete(decimal)), in c_float()
311 many0(complete(decimal)), in c_float()
313 many1(complete(decimal)), in c_float()
319 many0(complete(decimal)), in c_float()
321 many1(complete(decimal)), in c_float()
328 many1(complete(decimal)), in c_float()
330 many0(complete(decimal)), in c_float()
335 terminated(recognize(many1(complete(decimal))), float_width), in c_float()