• Home
  • Raw
  • Download

Lines Matching refs:RValue

228 	static std::string fmt(const RValue<Bool> &v) { return "%s"; }  in fmt()
229 static std::vector<Value *> val(const RValue<Bool> &v);
234 static std::string fmt(const RValue<Byte> &v) { return "%d"; } in fmt()
235 static std::vector<Value *> val(const RValue<Byte> &v);
240 static std::string fmt(const RValue<Byte4> &v) { return "[%d, %d, %d, %d]"; } in fmt()
241 static std::vector<Value *> val(const RValue<Byte4> &v);
246 static std::string fmt(const RValue<Int> &v) { return "%d"; } in fmt()
247 static std::vector<Value *> val(const RValue<Int> &v);
252 static std::string fmt(const RValue<Int2> &v) { return "[%d, %d]"; } in fmt()
253 static std::vector<Value *> val(const RValue<Int2> &v);
258 static std::string fmt(const RValue<Int4> &v) { return "[%d, %d, %d, %d]"; } in fmt()
259 static std::vector<Value *> val(const RValue<Int4> &v);
264 static std::string fmt(const RValue<UInt> &v) { return "%u"; } in fmt()
265 static std::vector<Value *> val(const RValue<UInt> &v);
270 static std::string fmt(const RValue<UInt2> &v) { return "[%u, %u]"; } in fmt()
271 static std::vector<Value *> val(const RValue<UInt2> &v);
276 static std::string fmt(const RValue<UInt4> &v) { return "[%u, %u, %u, %u]"; } in fmt()
277 static std::vector<Value *> val(const RValue<UInt4> &v);
282 static std::string fmt(const RValue<Short> &v) { return "%d"; } in fmt()
283 static std::vector<Value *> val(const RValue<Short> &v);
288 static std::string fmt(const RValue<Short4> &v) { return "[%d, %d, %d, %d]"; } in fmt()
289 static std::vector<Value *> val(const RValue<Short4> &v);
294 static std::string fmt(const RValue<UShort> &v) { return "%u"; } in fmt()
295 static std::vector<Value *> val(const RValue<UShort> &v);
300 static std::string fmt(const RValue<UShort4> &v) { return "[%u, %u, %u, %u]"; } in fmt()
301 static std::vector<Value *> val(const RValue<UShort4> &v);
306 static std::string fmt(const RValue<Float> &v) { return "%f"; } in fmt()
307 static std::vector<Value *> val(const RValue<Float> &v);
312 static std::string fmt(const RValue<Float4> &v) { return "[%f, %f, %f, %f]"; } in fmt()
313 static std::vector<Value *> val(const RValue<Float4> &v);
318 static std::string fmt(const RValue<Long> &v) { return "%lld"; } in fmt()
319 static std::vector<Value *> val(const RValue<Long> &v) { return { v.value }; } in val()
324 static std::string fmt(const RValue<Pointer<T>> &v) { return "%p"; } in fmt()
325 static std::vector<Value *> val(const RValue<Pointer<T>> &v) { return { v.value }; } in val()
334 struct PrintValue::Ty<RValue<T>>
336 static std::string fmt(const RValue<T> &v) { return PrintValue::Ty<T>::fmt(v); } in fmt()
337 static std::vector<Value *> val(const RValue<T> &v) { return PrintValue::Ty<T>::val(v); } in val()