Lines Matching refs:tmp
530 double tmp = b.intField + b.doubleField; in constructBase() local
531 return (b.objectField != null) ? tmp : -tmp; in constructBase()
558 double tmp = b.intField + b.doubleField; in constructBaseWith0DoubleNull() local
559 return (b.objectField != null) ? tmp : -tmp; in constructBaseWith0DoubleNull()
582 double tmp = b.intField + b.doubleField; in constructBase() local
583 tmp = (b.objectField != null) ? tmp : -tmp; in constructBase()
584 return (b.stringField != null) ? 2.0 * tmp : 0.5 * tmp; in constructBase()
646 double tmp = b.intField + b.doubleField; in constructBase() local
647 return (b.objectField != null) ? tmp + 1.0 : tmp - 1.0; in constructBase()
819 double tmp = d.intField + d.doubleField; in constructDerived() local
820 return (d.objectField != null) ? tmp : -tmp; in constructDerived()
843 double tmp = d.intField + d.doubleField; in constructDerived() local
844 tmp = (d.objectField != null) ? tmp : -tmp; in constructDerived()
845 return (d.stringField != null) ? 2.0 * tmp : 0.5 * tmp; in constructDerived()
905 double tmp = d.intField + d.doubleField + d.floatField; in constructDerived() local
906 return (d.objectField != null) ? tmp : -tmp; in constructDerived()