Home | History | Annotate | Download | only in Fuzzer

Lines Matching refs:Args

36 // - function argument types are obtained (Args...)
37 // - data is unpacked into std::tuple<Args...> one by one
38 // - function is called with std::tuple<Args...> containing arguments.
129 template <typename... Args>
130 bool Unpack(const uint8_t *Data, size_t Size, std::tuple<Args...> *Tuple) {
131 return UnpackImpl<0, std::tuple<Args...>>(Data, Size, Tuple);
147 template <typename ReturnType, typename... Args>
148 struct FnTraits<ReturnType (*)(Args...)> {
149 enum { Arity = sizeof...(Args) };
150 typedef std::tuple<Args...> ArgsTupleT;