Home
last modified time | relevance | path

Searched refs:ZeroSized (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/bindgen/src/ir/analysis/
Dsizedness.rs34 ZeroSized, enumerator
67 SizednessResult::ZeroSized in default()
137 if let SizednessResult::ZeroSized = result { in insert()
224 ty.layout(self.ctx).map_or(SizednessResult::ZeroSized, |l| { in constrain()
227 SizednessResult::ZeroSized in constrain()
239 self.insert(id, SizednessResult::ZeroSized) in constrain()
287 self.insert(id, SizednessResult::ZeroSized) in constrain()
309 .fold(SizednessResult::ZeroSized, |a, b| a.join(*b)); in constrain()
343 .all(|v| { *v != SizednessResult::ZeroSized })); in from()
359 self.sizedness(ctx) == SizednessResult::ZeroSized in is_zero_sized()
/external/clang/test/CodeGen/
Dx86_32-fpcc-struct-return.c14 typedef struct { } ZeroSized; typedef
34 ZeroSized returnZero(ZeroSized x) { return x; } in returnZero()
/external/llvm-project/clang/test/CodeGen/X86/
Dx86_32-fpcc-struct-return.c14 typedef struct { } ZeroSized; typedef
34 ZeroSized returnZero(ZeroSized x) { return x; } in returnZero()
/external/rust/crates/bindgen/src/ir/
Dcontext.rs1255 .unwrap_or(SizednessResult::ZeroSized) in lookup_sizedness()