Home
last modified time | relevance | path

Searched refs:divisor (Results 1 – 10 of 10) sorted by relevance

/frameworks/compile/libbcc/runtime/test/Unit/
Dmuldc3_test.c55 double _Complex divisor; in test__muldc3() local
59 __real__ divisor = c; in test__muldc3() local
60 __imag__ divisor = d; in test__muldc3() local
65 switch (classify(divisor)) in test__muldc3()
90 switch (classify(divisor)) in test__muldc3()
117 switch (classify(divisor)) in test__muldc3()
142 switch (classify(divisor)) in test__muldc3()
167 switch (classify(divisor)) in test__muldc3()
Ddivxc3_test.c58 long double _Complex divisor; in test__divxc3() local
62 __real__ divisor = c; in test__divxc3() local
63 __imag__ divisor = d; in test__divxc3() local
68 switch (classify(divisor)) in test__divxc3()
93 switch (classify(divisor)) in test__divxc3()
124 switch (classify(divisor)) in test__divxc3()
149 switch (classify(divisor)) in test__divxc3()
174 switch (classify(divisor)) in test__divxc3()
Ddivdc3_test.c55 double _Complex divisor; in test__divdc3() local
59 __real__ divisor = c; in test__divdc3() local
60 __imag__ divisor = d; in test__divdc3() local
65 switch (classify(divisor)) in test__divdc3()
90 switch (classify(divisor)) in test__divdc3()
121 switch (classify(divisor)) in test__divdc3()
146 switch (classify(divisor)) in test__divdc3()
171 switch (classify(divisor)) in test__divdc3()
Ddivtc3_test.c59 long double _Complex divisor; in test__divtc3() local
63 __real__ divisor = c; in test__divtc3() local
64 __imag__ divisor = d; in test__divtc3() local
69 switch (classify(divisor)) in test__divtc3()
94 switch (classify(divisor)) in test__divtc3()
125 switch (classify(divisor)) in test__divtc3()
150 switch (classify(divisor)) in test__divtc3()
175 switch (classify(divisor)) in test__divtc3()
Dmulxc3_test.c58 long double _Complex divisor; in test__mulxc3() local
62 __real__ divisor = c; in test__mulxc3() local
63 __imag__ divisor = d; in test__mulxc3() local
68 switch (classify(divisor)) in test__mulxc3()
93 switch (classify(divisor)) in test__mulxc3()
120 switch (classify(divisor)) in test__mulxc3()
145 switch (classify(divisor)) in test__mulxc3()
170 switch (classify(divisor)) in test__mulxc3()
Ddivsc3_test.c55 float _Complex divisor; in test__divsc3() local
59 __real__ divisor = c; in test__divsc3() local
60 __imag__ divisor = d; in test__divsc3() local
65 switch (classify(divisor)) in test__divsc3()
90 switch (classify(divisor)) in test__divsc3()
121 switch (classify(divisor)) in test__divsc3()
146 switch (classify(divisor)) in test__divsc3()
171 switch (classify(divisor)) in test__divsc3()
Dmultc3_test.c58 long double _Complex divisor; in test__multc3() local
62 __real__ divisor = c; in test__multc3() local
63 __imag__ divisor = d; in test__multc3() local
68 switch (classify(divisor)) in test__multc3()
93 switch (classify(divisor)) in test__multc3()
120 switch (classify(divisor)) in test__multc3()
145 switch (classify(divisor)) in test__multc3()
170 switch (classify(divisor)) in test__multc3()
Dmulsc3_test.c55 float _Complex divisor; in test__mulsc3() local
59 __real__ divisor = c; in test__mulsc3() local
60 __imag__ divisor = d; in test__mulsc3() local
65 switch (classify(divisor)) in test__mulsc3()
90 switch (classify(divisor)) in test__mulsc3()
121 switch (classify(divisor)) in test__mulsc3()
146 switch (classify(divisor)) in test__mulsc3()
171 switch (classify(divisor)) in test__mulsc3()
/frameworks/base/core/java/com/android/internal/widget/
DPointerLocationView.java692 int divisor = 1000000000; in append()
694 while (value < divisor) { in append()
695 divisor /= 10; in append()
703 int digit = value / divisor; in append()
704 value -= digit * divisor; in append()
705 divisor /= 10; in append()
707 } while (divisor != 0); in append()
/frameworks/base/core/java/android/widget/
DCalendarView.java1397 int divisor = 2 * nDays; in drawWeekNumbers() local
1400 int x = mWidth / divisor; in drawWeekNumbers()
1407 int x = (2 * i + 1) * mWidth / divisor; in drawWeekNumbers()