• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/math-emu/

Lines Matching refs:st0_tag

336 int FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag,
345 if (st0_tag != TAG_Empty) {
378 int FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag, double __user *dfloat)
388 if (st0_tag == TAG_Valid) {
395 if ((precision_loss = FPU_round_to_int(&tmp, st0_tag))) {
492 } else if (st0_tag == TAG_Zero) {
494 } else if (st0_tag == TAG_Special) {
495 st0_tag = FPU_Special(st0_ptr);
496 if (st0_tag == TW_Denormal) {
507 } else if (st0_tag == TW_Infinity) {
509 } else if (st0_tag == TW_NaN) {
534 } else if (st0_tag == TAG_Empty) {
563 int FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag, float __user *single)
571 if (st0_tag == TAG_Valid) {
581 if ((precision_loss = FPU_round_to_int(&tmp, st0_tag))) {
673 } else if (st0_tag == TAG_Zero) {
675 } else if (st0_tag == TAG_Special) {
676 st0_tag = FPU_Special(st0_ptr);
677 if (st0_tag == TW_Denormal) {
689 } else if (st0_tag == TW_Infinity) {
691 } else if (st0_tag == TW_NaN) {
719 } else if (st0_tag == TAG_Empty) {
752 int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, long long __user *d)
758 if (st0_tag == TAG_Empty) {
762 } else if (st0_tag == TAG_Special) {
763 st0_tag = FPU_Special(st0_ptr);
764 if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
771 precision_loss = FPU_round_to_int(&t, st0_tag);
802 int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, long __user *d)
807 if (st0_tag == TAG_Empty) {
811 } else if (st0_tag == TAG_Special) {
812 st0_tag = FPU_Special(st0_ptr);
813 if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
820 precision_loss = FPU_round_to_int(&t, st0_tag);
848 int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, short __user *d)
853 if (st0_tag == TAG_Empty) {
857 } else if (st0_tag == TAG_Special) {
858 st0_tag = FPU_Special(st0_ptr);
859 if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
866 precision_loss = FPU_round_to_int(&t, st0_tag);
894 int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char __user *d)
902 if (st0_tag == TAG_Empty) {
906 } else if (st0_tag == TAG_Special) {
907 st0_tag = FPU_Special(st0_ptr);
908 if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
915 precision_loss = FPU_round_to_int(&t, st0_tag);