Home | History | Annotate | Download | only in switchback

Lines Matching refs:InternalFPF

515 } InternalFPF;
518 void SetupCPUEmFloatArrays(InternalFPF *abase,
519 InternalFPF *bbase, InternalFPF *cbase, ulong arraysize);
521 ulong DoEmFloatIteration(InternalFPF *abase,
522 InternalFPF *bbase, InternalFPF *cbase,
525 static void SetInternalFPFZero(InternalFPF *dest,
527 static void SetInternalFPFInfinity(InternalFPF *dest,
529 static void SetInternalFPFNaN(InternalFPF *dest);
535 static void StickyShiftRightMant(InternalFPF *ptr,int amount);
536 static void normalize(InternalFPF *ptr);
537 static void denormalize(InternalFPF *ptr,int minimum_exponent);
538 static void RoundInternalFPF(InternalFPF *ptr);
539 static void choose_nan(InternalFPF *x,InternalFPF *y,InternalFPF *z,
541 static void AddSubInternalFPF(uchar operation,InternalFPF *x,
542 InternalFPF *y,InternalFPF *z);
543 static void MultiplyInternalFPF(InternalFPF *x,InternalFPF *y,
544 InternalFPF *z);
545 static void DivideInternalFPF(InternalFPF *x,InternalFPF *y,
546 InternalFPF *z);
549 InternalFPF *dest);
551 InternalFPF *src);
576 void SetupCPUEmFloatArrays(InternalFPF *abase,
577 InternalFPF *bbase,
578 InternalFPF *cbase,
582 InternalFPF locFPF1,locFPF2;
602 ulong DoEmFloatIteration(InternalFPF *abase,
603 InternalFPF *bbase,
604 InternalFPF *cbase,
692 static void SetInternalFPFZero(InternalFPF *dest,
712 static void SetInternalFPFInfinity(InternalFPF *dest,
732 static void SetInternalFPFNaN(InternalFPF *dest)
868 static void StickyShiftRightMant(InternalFPF *ptr,
914 static void normalize(InternalFPF *ptr)
940 static void denormalize(InternalFPF *ptr,
979 void RoundInternalFPF(InternalFPF *ptr)
1022 static void choose_nan(InternalFPF *x,
1023 InternalFPF *y,
1024 InternalFPF *z,
1038 my_memmove((void *)x,(void *)z,sizeof(InternalFPF));
1043 my_memmove((void *)y,(void *)z,sizeof(InternalFPF));
1053 my_memmove((void *)x,(void *)z,sizeof(InternalFPF));
1056 my_memmove((void *)y,(void *)z,sizeof(InternalFPF));
1069 InternalFPF *x,
1070 InternalFPF *y,
1071 InternalFPF *z)
1077 InternalFPF locx,locy; /* Needed since we alter them */
1086 my_memmove((void *)x,(void *)z,sizeof(InternalFPF));
1102 my_memmove((void *)x,(void *)z,sizeof(InternalFPF));
1110 my_memmove((void *)y,(void *)z,sizeof(InternalFPF));
1118 my_memmove((void *)y,(void *)z,sizeof(InternalFPF));
1130 my_memmove((void *)&locx,(void *)x,sizeof(InternalFPF));
1131 my_memmove((void *)&locy,(void *)y,sizeof(InternalFPF));
1277 static void MultiplyInternalFPF(InternalFPF *x,
1278 InternalFPF *y,
1279 InternalFPF *z)
1285 InternalFPF locy; /* Needed since this will be altered */
1299 my_memmove((void *)x,(void *)z,sizeof(InternalFPF));
1307 my_memmove((void *)y,(void *)z,sizeof(InternalFPF));
1320 my_memmove((void *)x,(void *)z,sizeof(InternalFPF));
1327 my_memmove((void *)y,(void *)z,sizeof(InternalFPF));
1339 my_memmove((void *)&locy,(void *)y,sizeof(InternalFPF));
1439 static void DivideInternalFPF(InternalFPF *x,
1440 InternalFPF *y,
1441 InternalFPF *z)
1447 InternalFPF locx; /* Local for x number */
1494 my_memmove((void *)x,(void *)z,sizeof(InternalFPF));
1501 my_memmove((void *)y,(void *)z,sizeof(InternalFPF));
1512 my_memmove((void *)&locx,(void *)x,sizeof(InternalFPF));
1599 InternalFPF *dest)
1666 InternalFPF *src)
1668 InternalFPF locFPFNum; /* Local for src (will be altered) */
1669 InternalFPF IFPF10; /* Floating-point 10 */
1670 InternalFPF IFPFComp; /* For doing comparisons */
1707 my_memcpy((void *)&locFPFNum,(void *)src,sizeof(InternalFPF));
1737 my_memcpy((void *)&locFPFNum,(void *)&IFPFComp,sizeof(InternalFPF));
1751 my_memcpy((void *)&locFPFNum,(void *)&IFPFComp,sizeof(InternalFPF));
1811 sizeof(InternalFPF));
1824 sizeof(InternalFPF));
1886 InternalFPF *abase; /* Base of A array */
1887 InternalFPF *bbase; /* Base of B array */
1888 InternalFPF *cbase; /* Base of C array */
1911 abase=(InternalFPF *)AllocateMemory(locemfloatstruct->arraysize*sizeof(InternalFPF),
1914 bbase=(InternalFPF *)AllocateMemory(locemfloatstruct->arraysize*sizeof(InternalFPF),
1917 cbase=(InternalFPF *)AllocateMemory(locemfloatstruct->arraysize*sizeof(InternalFPF),