Home
last modified time | relevance | path

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

/third_party/rust/crates/nom/tests/
Dfloat.rs12 let float_bytes = recognize(alt(( in unsigned_float() localVariable
16 let float_str = map_res(float_bytes, str::from_utf8); in unsigned_float()
/third_party/protobuf/python/google/protobuf/internal/
Ddecoder.py328 float_bytes = buffer[pos:new_pos].tobytes()
333 if (float_bytes[3:4] in b'\x7F\xFF' and float_bytes[2:3] >= b'\x80'):
335 if float_bytes[0:3] != b'\x00\x00\x80':
338 if float_bytes[3:4] == b'\xFF':
345 result = local_unpack('<f', float_bytes)[0]
/third_party/rust/crates/nom/benchmarks/benches/
Djson.rs174 fn float_bytes(c: &mut Criterion) { in float_bytes() function
221 float_bytes,