Home | History | Annotate | Download | only in cts

Lines Matching defs:tan

109     static native float tan(float x);
1005 static private Target.Floaty tan(double d, Target t) {
1007 double min = Math.tan(in.min());
1008 double max = Math.tan(in.max());
1009 /* If difference between in.max() and in.min() is larger than PI or if the tan of the min is
1015 return t.newFloaty(Math.tan(d), min, max);
1019 static private Target.Floaty tan(float f, Target t) {
1021 float min = tan(in.min32());
1022 float max = tan(in.max32());
1023 /* If difference between in.max() and in.min() is larger than PI or if the tan of the min is
1029 return t.new32(tan(f), min, max);
1051 double min = Math.tan(in.min());
1052 double max = Math.tan(in.max());
1054 /* If difference between in.max() and in.min() is larger than PI or if the tan of the min is
1060 return t.newFloaty(Math.tan(in.mid()), min, max);
1066 float min = tan(in.min32());
1067 float max = tan(in.max32());
1068 /* If difference between in.max() and in.min() is larger than PI or if the tan of the min is
1074 return t.new32(tan(in.mid32()), min, max);
2882 Target.Floaty expectedOut = tan(args.inVDouble, t);
2895 args.out = tan(args.inV, t);
3187 args.out = tan(args.inVDouble, t);
3192 args.out = tan(args.inV, t);