What you have there is a line of code, not a method call.
EDIT: In response to your edited question...what you would need for that is a vector processor (discussed more below). The idea, as I remember it, is that you have a series of values, and you perform the same operations, repeatedly, in parallel, on all of them at the same time. They're typically used for large-scale math/physics, simulation, and graphics type stuff (including PC/console 3D graphics, I think).
If I remember correctly, in C, you can stick multiple statements on one "line of code", like so:
int a, b, c;
a = 1, b = 2, c = 3;
However, this is no different than writing:
int a, b, c;
a = 1; b = 2; c = 3;
which in turn is identical to
int a, b, c;
a = 1;
b = 2;
c = 3;
and all of these translate to the same thing in the compiler. So while one of them only uses one syntactical "statement", and two of them are written on a single line, they are all identical except for the syntax.
There are languages that can generate more than one value with a single call to one of the normal, basic elements of the language; for example, in Lisp you can use maphash
to run the same function on every element of a hash table, and if the function writes back to the hash table again, then one "line of code" is writing many values. But it's a meaningless measure, because that one line of code is running a lot of stuff under the hood.
Probably a better example is certain parallel programming models. Vector processors are designed to allow you to run one instruction on (4/8/16/N) different data elements simultaneously and in parallel; you could meaningfully say that it's doing what you're asking about, but then you'd need to learn how to code in assembly for vector machines. Also, some parallel programming models assume that you have one parallel piece of code that runs in N threads simultaneously, starting from N different sets of input data and calculating correct output for each of them. Any implementation of the model is supposed to be able to guarantee that the different executions "come together" at particular points in the code, where everything syncs up and they can read other processes' data and act on it.
So, er, yeah, this can be a very simple question or a very deep one, depending on how far down the rabbit hole you want to go.