Lines Matching defs:args
290 static int Count(Arg arg, Args... args) {
291 return 1 + CountPushHelper<Args...>::Count(args...);
296 static int Count(interpreter::RegisterList list, Args... args) {
297 return list.register_count() + CountPushHelper<Args...>::Count(args...);
304 inline void PushAll(BaselineAssembler* basm, Args... args) {
305 PushAllHelper<Args...>::Push(basm, args...);
308 inline void PushAllReverse(BaselineAssembler* basm, Args... args) {
309 PushAllHelper<Args...>::PushReverse(basm, args...);
328 Args... args) {
334 PushAll(basm, args...);
337 Args... args) {
338 PushAllReverse(basm, args...);