Home | History | Annotate | Download | only in turbojpeg

Lines Matching defs:denom

37   public TJScalingFactor(int num, int denom) {
38 if (num < 1 || denom < 1)
41 this.denom = denom;
59 return denom;
70 return (dimension * num + denom - 1) / denom;
81 return this.num == other.num && this.denom == other.denom;
92 return num == 1 && denom == 1;
103 private int denom = 1;