Searched defs:Primitive (Results 1 – 2 of 2) sorted by relevance
809 union Primitive { union820 Primitive(uint64_t value) : u64(value) { } in Primitive() function821 Primitive(int64_t value) : i64(value) { } in Primitive() function822 Primitive(c2_cntr64_t value) : c64(value) { } in Primitive() function823 Primitive(uint32_t value) : u32(value) { } in Primitive() function824 Primitive(int32_t value) : i32(value) { } in Primitive() function825 Primitive(c2_cntr32_t value) : c32(value) { } in Primitive() function826 Primitive(uint8_t value) : u32(value) { } in Primitive() function827 Primitive(char value) : i32(value) { } in Primitive() function828 Primitive(float value) : fp(value) { } in Primitive() function[all …]
46 inline operator C2Value::Primitive() { return (T)_mValue; } in Primitive() function