HomeSort by relevance Sort by last modified time
    Searched defs:aT (Results 1 - 14 of 14) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_atan.c 6 * Developed at SunPro, a Sun Microsystems, Inc. business.
55 static const double aT[] = {
112 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
113 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
114 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))))
    [all...]
s_atanf.c 9 * Developed at SunPro, a Sun Microsystems, Inc. business.
36 static const float aT[] = {
84 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
85 s1 = z*(aT[0]+w*(aT[2]+w*aT[4]));
86 s2 = w*(aT[1]+w*aT[3]);
  /device/google/contexthub/firmware/external/freebsd/lib/msun/src/
s_atanf.c 9 * Developed at SunPro, a Sun Microsystems, Inc. business.
36 static const float aT[] = {
84 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
85 s1 = z*(aT[0]+w*(aT[2]+w*aT[4]));
86 s2 = w*(aT[1]+w*aT[3]);
  /device/google/contexthub/firmware/lib/libm/
sf_atan.c 9 * Developed at SunPro, a Sun Microsystems, Inc. business.
42 static const float aT[] = {
44 static float aT[] = {
107 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
108 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))))
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_atan.c 6 * Developed at SunPro, a Sun Microsystems, Inc. business.
55 static const double aT[] = {
112 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
113 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
114 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
    [all...]
  /external/fdlibm/
s_atan.c 7 * Developed at SunSoft, a Sun Microsystems, Inc. business.
60 static const double aT[] = {
62 static double aT[] = {
126 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
127 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))))
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
invtrig.c 73 const long double aT[] = {
invtrig.h 67 #define aT _ItL_aT
77 extern const long double atanhi[], atanlo[], aT[];
101 return (aT[0] + x * (aT[2] + x * (aT[4] + x * (aT[6] + x * \
102 (aT[8] + x * (aT[10] + x * (aT[12] + x * (aT[14] + x *
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/stubbing/
InvocationContainerImplTest.java 72 for (Thread aT : t) {
73 aT.join();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 44 T *aT;
46 aT = (T *)realloc(m_aT,nNewAllocSize *sizeof(T));
47 if(!aT) return FALSE;
49 m_aT = aT;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UTS46Test.java 483 StringBuilder aT=new StringBuilder(), uT=new StringBuilder();
508 trans.nameToASCII(input, aT, aTInfo);
562 if(!hasCertainErrors(aTInfo, severeErrors) && !isASCII(aT)) {
564 i, testCase.s, aTInfo.getErrors(), prettify(aT.toString())));
    [all...]
  /external/icu/icu4c/source/test/intltest/
uts46test.cpp 608 UnicodeString aT, uT, aN, uN;
610 trans->nameToASCII(input, aT, aTInfo, errorCode);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UTS46Test.java 480 StringBuilder aT=new StringBuilder(), uT=new StringBuilder();
505 trans.nameToASCII(input, aT, aTInfo);
559 if(!hasCertainErrors(aTInfo, severeErrors) && !isASCII(aT)) {
561 i, testCase.s, aTInfo.getErrors(), prettify(aT.toString())));
    [all...]
  /external/v8/src/base/
ieee754.cc 6 // Developed at SunSoft, a Sun Microsystems, Inc. business.
46 * Unlike the original code, we determine the endianness at compile
47 * time, not at run time; I don't see much benefit to selecting
48 * endianness at run time.
357 * magnitude of the latter is at least a quarter of x*x/2,
    [all...]

Completed in 309 milliseconds