Take s=a+b+c, then the equation becomes s^3-s=987654320.a+123456788.b. The gcd of the two constants is 4. Let p=987654320/4=246913580 and q=123456788/4=30864197. The equation is then:
p = 246913580
q = 30864197
s^3-s = 4(p.a+q.b).
For each value of s such that s^3-s is a multiple of 4 (i.e. s%4!=2) you have an infinity of solutions, and no solutions when s%4=2.
You just need to find Bezout coefficients; a0 and b0 such that p.a0-q.b0=1:
a0 = 23148148
b0 = 185185187
Then for a given s, compute h=(s^3-s)/4, solutions are:
a = h.a0 + i.q
b = -h.b0 - i.p
c = s - (a+b) = s + 162037039.h + 216049383.i
Example: s=999, gives all solutions:
h = 249250500
a = 584231 + 30864197.i
b = -4673840 - 246913580.i
c = 4090608 + 216049383.i
Here is a list of all "small" solutions, including the 5 solutions with non negative values:
0, 0, 0
0, 0, 1
21, -168, 154
45, -360, 324
210, -1680, 1485
255, -2040, 1801
306, -2448, 2159
759, -6072, 5336
975, -7800, 6850
1860, -14880, 13051
2046, -16368, 14354
2244, -17952, 15741
3705, -29640, 25974
4305, -34440, 30176
6001, -46630, 46170
450, 4500, 5050
9492, -38427, 45603
7854, -23268, 32381
7350, 6000, 6650
16450, -30310, 37071
27150, 1500, 1350
29250, -11760, 12671
28542, 34110, -30772
40971, -13350, 6238
66300, -12000, -14300