MCPcopy Create free account
hub / github.com/Rust-GPU/rust-gpu / const_uint

Method const_uint

crates/rustc_codegen_spirv/src/codegen_cx/constant.rs:137–139  ·  view source on GitHub ↗
(&self, t: Self::Type, i: u64)

Source from the content-addressed store, hash-verified

135 self.constant_int(t, i as u64)
136 }
137 fn const_uint(&self, t: Self::Type, i: u64) -> Self::Value {
138 self.constant_int(t, i)
139 }
140 fn const_uint_big(&self, t: Self::Type, u: u128) -> Self::Value {
141 self.constant_int(t, u as u64)
142 }

Callers 1

fptoint_satMethod · 0.80

Calls 1

constant_intMethod · 0.80

Tested by

no test coverage detected