Real number arithmetic is prone to rounding errors in javascript and apps-script. See Is JavaScript's Floating-Point Math Broken?. If you're watching your function in the debugger, you'll see rounding errors esp. with (c/60). But that's not likely causing a factor-of-100 error.
Most likely, your parameters aren't what you thing they are. If b arrives as a string, for instance, the calculation of (a * 60) + b + (c/60) will effectively ignore b. The other two parameters, however, will get changed to numbers to to complete the multiplication and division operations. (You can avoid that by using b * 1.)
Anyway, to confirm what you're getting as parameters, try replacing the first few lines of your function with this:
function calcTime(a,b,c) {
var params = {
a:{type:typeof a, value:a},
b:{type:typeof b, value:b},
c:{type:typeof c, value:c}}
Logger.log(params);
var x;
...
Verify that you're getting what you need. If any of the parameters are arriving as date objects, for instance, your math will be wildly incorrect. You may just need to enforce types for your data source.
typeofa, b, and c could be at fault. YourstartPtcalculation is entirely with vars inside the function, which are clearly numbers. We don't know about those in the endPt calculation. I experimented withbas a string (enter '5 in cell b comes from, for example), and it dropped out of the calculation. That's because the formula treats a and c as numbers within the brackets, but then the three-element addition would have number + string + number, and ignore the string. Still doesn't explain a factor-of-100 issue, though. – Mogsdad Jan 27 at 3:25