Home
last modified time | relevance | path

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

/external/rust/crates/bindgen/src/codegen/
Dhelpers.rs135 use crate::ir::ty::FloatKind;
177 fk: FloatKind, in float_kind_rust_type() argument
185 (FloatKind::Float, true) => quote! { f32 }, in float_kind_rust_type()
186 (FloatKind::Double, true) => quote! { f64 }, in float_kind_rust_type()
187 (FloatKind::Float, false) => raw_type(ctx, "c_float"), in float_kind_rust_type()
188 (FloatKind::Double, false) => raw_type(ctx, "c_double"), in float_kind_rust_type()
189 (FloatKind::LongDouble, _) => { in float_kind_rust_type()
210 (FloatKind::Float128, _) => { in float_kind_rust_type()
/external/rust/crates/bindgen/src/ir/
Dcontext.rs21 use super::ty::{FloatKind, Type, TypeKind};
1950 CXType_Float => TypeKind::Float(FloatKind::Float), in build_builtin_ty()
1951 CXType_Double => TypeKind::Float(FloatKind::Double), in build_builtin_ty()
1952 CXType_LongDouble => TypeKind::Float(FloatKind::LongDouble), in build_builtin_ty()
1953 CXType_Float128 => TypeKind::Float(FloatKind::Float128), in build_builtin_ty()
1958 CXType_Float => FloatKind::Float, in build_builtin_ty()
1959 CXType_Double => FloatKind::Double, in build_builtin_ty()
1960 CXType_LongDouble => FloatKind::LongDouble, in build_builtin_ty()
1961 CXType_Float128 => FloatKind::Float128, in build_builtin_ty()
Dvar.rs9 use super::ty::{FloatKind, TypeKind};
253 (TypeKind::Float(FloatKind::Double), VarType::Float(f)) in parse()
Dty.rs607 pub enum FloatKind { enum
640 Float(FloatKind),
643 Complex(FloatKind),
/external/starlark-go/lib/proto/
Dproto.go510 case protoreflect.FloatKind:
591 case protoreflect.DoubleKind, protoreflect.FloatKind: