Searched defs:sgn (Results 1 - 11 of 11) sorted by relevance

/external/fdlibm/
H A De_jn.c60 int i,hx,ix,lx, sgn; local
79 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
211 if(sgn==1) return -b; else return b;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
H A DICUDurationTest.java78 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { argument
79 sign = sgn;
89 private ICUTestDuration(int sgn, Map<Field, Number> f) { argument
90 sign = sgn;
153 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { argument
154 return new ICUTestDuration(sgn, -1, -1, d, h, m, s);
156 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) { argument
157 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s);
159 private static final ICUTestDuration newDuration(int sgn, float s) { argument
160 return new ICUTestDuration(sgn,
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
H A DICUDurationTest.java74 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { argument
75 sign = sgn;
85 private ICUTestDuration(int sgn, Map<Field, Number> f) { argument
86 sign = sgn;
149 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { argument
150 return new ICUTestDuration(sgn, -1, -1, d, h, m, s);
152 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) { argument
153 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s);
155 private static final ICUTestDuration newDuration(int sgn, float s) { argument
156 return new ICUTestDuration(sgn,
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.cc240 int sgn = 1; local
245 sgn = 1;
248 sgn = -1;
261 if (sgn > 0) {
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h454 friend int sgn(const mpreal& v); // returns -1 or +1
1927 inline int sgn(const mpreal& op) function in namespace:mpfr
2403 m.setSign(sgn(y)); // make sure result has the same sign as Y
/external/webrtc/webrtc/modules/audio_processing/aecm/
H A Daecm_core_mips.c1544 int32_t tt, sgn; local
1546 sgn = ((int)tt) >> 31;
1547 out[0].real = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn);
1549 sgn = ((int)tt) >> 31;
1550 out[0].imag = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn);
1553 sgn = ((int)tt) >> 31;
1554 out[i].real = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn);
[all...]
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc1802 int sgn; local
1803 double res = lgamma_r(1.1, &sgn);
1805 EXPECT_NOT_POISONED(sgn);
1809 int sgn; local
1810 float res = lgammaf_r(1.1, &sgn);
1812 EXPECT_NOT_POISONED(sgn);
1818 int sgn; local
1819 long double res = lgammal_r(1.1, &sgn);
1821 EXPECT_NOT_POISONED(sgn);
/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmscgats.c572 int sgn; local
574 NextCh(it8); sgn = 1;
578 sgn = -1; NextCh(it8);
583 sgn = +1;
596 e = sgn*e;
647 int sgn; local
650 sgn = 1;
654 sgn = -1;
660 sgn = +1;
673 e = sgn*
[all...]
/external/v8/test/mjsunit/asm/embenchen/
H A Dlua_binarytrees.js6872 function sgn(value) {
6877 if ((compare = sgn(date1.getFullYear()-date2.getFullYear())) === 0) {
6878 if ((compare = sgn(date1.getMonth()-date2.getMonth())) === 0) {
6879 compare = sgn(date1.getDate()-date2.getDate());
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c16220 int sgn = 0; local
16227 sgn = -1;
16229 sgn = +1;
16241 p->tz = sgn*(nMn + nHr*60);
[all...]
/external/sqlite/dist/
H A Dsqlite3.c16220 int sgn = 0; local
16227 sgn = -1;
16229 sgn = +1;
16241 p->tz = sgn*(nMn + nHr*60);
[all...]

Completed in 7479 milliseconds