亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 900-nios2.patch

?? 這是一個實時嵌入式作業(yè)系統(tǒng) 實作了MCS51 ARM等MCU
?? PATCH
?? 第 1 頁 / 共 5 頁
字號:
+	return nan ();+      return a;+    }++  if (isinf (b))+    {+      a->fraction.ll = 0;+      a->normal_exp = 0;+      return a;+    }+  if (iszero (b))+    {+      a->class = CLASS_INFINITY;+      return a;+    }++  /* Calculate the mantissa by multiplying both 64bit numbers to get a+     128 bit number */+  {+    /* quotient =+       ( numerator / denominator) * 2^(numerator exponent -  denominator exponent)+     */++    a->normal_exp = a->normal_exp - b->normal_exp;+    numerator = a->fraction.ll;+    denominator = b->fraction.ll;++    if (numerator < denominator)+      {+	/* Fraction will be less than 1.0 */+	numerator *= 2;+	a->normal_exp--;+      }+    bit = IMPLICIT_1;+    quotient = 0;+    /* ??? Does divide one bit at a time.  Optimize.  */+    while (bit)+      {+	if (numerator >= denominator)+	  {+	    quotient |= bit;+	    numerator -= denominator;+	  }+	bit >>= 1;+	numerator *= 2;+      }++    if (!ROUND_TOWARDS_ZERO && (quotient & GARDMASK) == GARDMSB)+      {+	if (quotient & (1 << NGARDS))+	  {+	    /* half way, so round to even */+	    quotient += GARDROUND + 1;+	  }+	else if (numerator)+	  {+	    /* but we really weren't half way, more bits exist */+	    quotient += GARDROUND + 1;+	  }+      }++    a->fraction.ll = quotient;+    return (a);+  }+}++FLO_type+divide (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  fp_number_type *res;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  res = _fpdiv_parts (&a, &b);++  return pack_d (res);+}+#endif /* L_div_sf || L_div_df */++#if defined(L_fpcmp_parts_sf) || defined(L_fpcmp_parts_df) \+    || defined(L_fpcmp_parts_tf)+/* according to the demo, fpcmp returns a comparison with 0... thus+   a<b -> -1+   a==b -> 0+   a>b -> +1+ */++int+__fpcmp_parts (fp_number_type * a, fp_number_type * b)+{+#if 0+  /* either nan -> unordered. Must be checked outside of this routine.  */+  if (isnan (a) && isnan (b))+    {+      return 1;			/* still unordered! */+    }+#endif++  if (isnan (a) || isnan (b))+    {+      return 1;			/* how to indicate unordered compare? */+    }+  if (isinf (a) && isinf (b))+    {+      /* +inf > -inf, but +inf != +inf */+      /* b    \a| +inf(0)| -inf(1)+       ______\+--------+--------+       +inf(0)| a==b(0)| a<b(-1)+       -------+--------+--------+       -inf(1)| a>b(1) | a==b(0)+       -------+--------+--------+       So since unordered must be nonzero, just line up the columns...+       */+      return b->sign - a->sign;+    }+  /* but not both...  */+  if (isinf (a))+    {+      return a->sign ? -1 : 1;+    }+  if (isinf (b))+    {+      return b->sign ? 1 : -1;+    }+  if (iszero (a) && iszero (b))+    {+      return 0;+    }+  if (iszero (a))+    {+      return b->sign ? 1 : -1;+    }+  if (iszero (b))+    {+      return a->sign ? -1 : 1;+    }+  /* now both are "normal".  */+  if (a->sign != b->sign)+    {+      /* opposite signs */+      return a->sign ? -1 : 1;+    }+  /* same sign; exponents? */+  if (a->normal_exp > b->normal_exp)+    {+      return a->sign ? -1 : 1;+    }+  if (a->normal_exp < b->normal_exp)+    {+      return a->sign ? 1 : -1;+    }+  /* same exponents; check size.  */+  if (a->fraction.ll > b->fraction.ll)+    {+      return a->sign ? -1 : 1;+    }+  if (a->fraction.ll < b->fraction.ll)+    {+      return a->sign ? 1 : -1;+    }+  /* after all that, they're equal.  */+  return 0;+}+#endif++#if defined(L_compare_sf) || defined(L_compare_df) || defined(L_compoare_tf)+CMPtype+compare (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  return __fpcmp_parts (&a, &b);+}+#endif /* L_compare_sf || L_compare_df */++#ifndef US_SOFTWARE_GOFAST++/* These should be optimized for their specific tasks someday.  */++#if defined(L_eq_sf) || defined(L_eq_df) || defined(L_eq_tf)+CMPtype+_eq_f2 (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  if (isnan (&a) || isnan (&b))+    return 1;			/* false, truth == 0 */++  return __fpcmp_parts (&a, &b) ;+}+#endif /* L_eq_sf || L_eq_df */++#if defined(L_ne_sf) || defined(L_ne_df) || defined(L_ne_tf)+CMPtype+_ne_f2 (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  if (isnan (&a) || isnan (&b))+    return 1;			/* true, truth != 0 */++  return  __fpcmp_parts (&a, &b) ;+}+#endif /* L_ne_sf || L_ne_df */++#if defined(L_gt_sf) || defined(L_gt_df) || defined(L_gt_tf)+CMPtype+_gt_f2 (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  if (isnan (&a) || isnan (&b))+    return -1;			/* false, truth > 0 */++  return __fpcmp_parts (&a, &b);+}+#endif /* L_gt_sf || L_gt_df */++#if defined(L_ge_sf) || defined(L_ge_df) || defined(L_ge_tf)+CMPtype+_ge_f2 (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  if (isnan (&a) || isnan (&b))+    return -1;			/* false, truth >= 0 */+  return __fpcmp_parts (&a, &b) ;+}+#endif /* L_ge_sf || L_ge_df */++#if defined(L_lt_sf) || defined(L_lt_df) || defined(L_lt_tf)+CMPtype+_lt_f2 (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  if (isnan (&a) || isnan (&b))+    return 1;			/* false, truth < 0 */++  return __fpcmp_parts (&a, &b);+}+#endif /* L_lt_sf || L_lt_df */++#if defined(L_le_sf) || defined(L_le_df) || defined(L_le_tf)+CMPtype+_le_f2 (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  if (isnan (&a) || isnan (&b))+    return 1;			/* false, truth <= 0 */++  return __fpcmp_parts (&a, &b) ;+}+#endif /* L_le_sf || L_le_df */++#endif /* ! US_SOFTWARE_GOFAST */++#if defined(L_unord_sf) || defined(L_unord_df) || defined(L_unord_tf)+CMPtype+_unord_f2 (FLO_type arg_a, FLO_type arg_b)+{+  fp_number_type a;+  fp_number_type b;+  FLO_union_type au, bu;++  au.value = arg_a;+  bu.value = arg_b;++  unpack_d (&au, &a);+  unpack_d (&bu, &b);++  return (isnan (&a) || isnan (&b));+}+#endif /* L_unord_sf || L_unord_df */++#if defined(L_si_to_sf) || defined(L_si_to_df) || defined(L_si_to_tf)+FLO_type+si_to_float (SItype arg_a)+{+  fp_number_type in;++  in.class = CLASS_NUMBER;+  in.sign = arg_a < 0;+  if (!arg_a)+    {+      in.class = CLASS_ZERO;+    }+  else+    {+      in.normal_exp = FRACBITS + NGARDS;+      if (in.sign) +	{+	  /* Special case for minint, since there is no +ve integer+	     representation for it */+	  if (arg_a == (- MAX_SI_INT - 1))+	    {+	      return (FLO_type)(- MAX_SI_INT - 1);+	    }+	  in.fraction.ll = (-arg_a);+	}+      else+	in.fraction.ll = arg_a;++      while (in.fraction.ll < ((fractype)1 << (FRACBITS + NGARDS)))+	{+	  in.fraction.ll <<= 1;+	  in.normal_exp -= 1;+	}+    }+  return pack_d (&in);+}+#endif /* L_si_to_sf || L_si_to_df */++#if defined(L_usi_to_sf) || defined(L_usi_to_df) || defined(L_usi_to_tf)+FLO_type+usi_to_float (USItype arg_a)+{+  fp_number_type in;++  in.sign = 0;+  if (!arg_a)+    {+      in.class = CLASS_ZERO;+    }+  else+    {+      in.class = CLASS_NUMBER;+      in.normal_exp = FRACBITS + NGARDS;+      in.fraction.ll = arg_a;++      while (in.fraction.ll > ((fractype)1 << (FRACBITS + NGARDS)))+        {+          in.fraction.ll >>= 1;+          in.normal_exp += 1;+        }+      while (in.fraction.ll < ((fractype)1 << (FRACBITS + NGARDS)))+	{+	  in.fraction.ll <<= 1;+	  in.normal_exp -= 1;+	}+    }+  return pack_d (&in);+}+#endif++#if defined(L_sf_to_si) || defined(L_df_to_si) || defined(L_tf_to_si)+SItype+float_to_si (FLO_type arg_a)+{+  fp_number_type a;+  SItype tmp;+  FLO_union_type au;++  au.value = arg_a;+  unpack_d (&au, &a);++  if (iszero (&a))+    return 0;+  if (isnan (&a))+    return 0;+  /* get reasonable MAX_SI_INT...  */+  if (isinf (&a))+    return a.sign ? (-MAX_SI_INT)-1 : MAX_SI_INT;+  /* it is a number, but a small one */+  if (a.normal_exp < 0)+    return 0;+  if (a.normal_exp > BITS_PER_SI - 2)+    return a.sign ? (-MAX_SI_INT)-1 : MAX_SI_INT;+  tmp = a.fraction.ll >> ((FRACBITS + NGARDS) - a.normal_exp);+  return a.sign ? (-tmp) : (tmp);+}+#endif /* L_sf_to_si || L_df_to_si */++#if defined(L_sf_to_usi) || defined(L_df_to_usi) || defined(L_tf_to_usi)+#if defined US_SOFTWARE_GOFAST || defined(L_tf_to_usi)+/* While libgcc2.c defines its own __fixunssfsi and __fixunsdfsi routines,+   we also define them for GOFAST because the ones in libgcc2.c have the+   wrong names and I'd rather define these here and keep GOFAST CYG-LOC's+   out of libgcc2.c.  We can't define these here if not GOFAST because then+   there'd be duplicate copies.  */++USItype+float_to_usi (FLO_type arg_a)+{+  fp_number_type a;+  FLO_union_type au;++  au.value = arg_a;+  unpack_d (&au, &a);++  if (iszero (&a))+    return 0;+  if (isnan (&a))+    return 0;+  /* it is a negative number */+  if (a.sign)+    return 0;+  /* get reasonable MAX_USI_INT...  */+  if (isinf (&a))+    return MAX_USI_INT;+  /* it is a number, but a small one */+  if (a.normal_exp < 0)+    return 0;+  if (a.normal_exp > BITS_PER_SI - 1)+    return MAX_USI_INT;+  else if (a.normal_exp > (FRACBITS + NGARDS))+    return a.fraction.ll << (a.normal_exp - (FRACBITS + NGARDS));+  else+    return a.fraction.ll >> ((FRACBITS + NGARDS) - a.normal_exp);+}+#endif /* US_SOFTWARE_GOFAST */+#endif /* L_sf_to_usi || L_df_to_usi */++#if defined(L_negate_sf) || defined(L_negate_df) || defined(L_negate_tf)+FLO_type+negate (FLO_type arg_a)+{+  fp_number_type a;+  FLO_union_type au;++  au.value = arg_a;+  unpack_d (&au, &a);++  flip_sign (&a);+  return pack_d (&a);+}+#endif /* L_negate_sf || L_negate_df */++#ifdef FLOAT++#if defined(L_make_sf)+SFtype+__make_fp(fp_class_type class,+	     unsigned int sign,+	     int exp, +	     USItype frac)+{+  fp_number_type in;++  in.class = class;+  in.sign = sign;+  in.normal_exp = exp;+  in.fraction.ll = frac;+  return pack_d (&in);+}+#endif /* L_make_sf */++#ifndef FLOAT_ONLY++/* This enables one to build an fp library that supports float but not double.+   Otherwise, we would get an undefined reference to __make_dp.+   This is needed for some 8-bit ports that can't handle well values that+   are 8-bytes in size, so we just don't support double for them at all.  */++#if defined(L_sf_to_df)+DFtype+sf_to_df (SFtype arg_a)+{+  fp_number_type in;+  FLO_union_type au;++  au.value = arg_a;+  unpack_d (&au, &in);++  return __make_dp (in.class, in.sign, in.normal_exp,+		    ((UDItype) in.fraction.ll) << F_D_BITOFF);+}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区三区在线看| 欧美一级黄色片| 国产成人亚洲综合色影视| 免费的国产精品| 久久精品国产一区二区三| 日韩高清在线一区| 蜜桃av一区二区在线观看| 免费成人在线视频观看| 精品无码三级在线观看视频| 国产一区啦啦啦在线观看| 国产在线不卡一区| 国产91丝袜在线播放| proumb性欧美在线观看| 色综合中文综合网| 色88888久久久久久影院野外| 91色在线porny| 欧美色图片你懂的| 欧美一级精品大片| 国产精品视频在线看| 中文字幕不卡一区| 亚洲资源在线观看| 久久成人羞羞网站| 成人免费视频网站在线观看| 在线免费观看视频一区| 日韩欧美一区在线| 中文字幕国产精品一区二区| 亚洲一区在线播放| 国产精品亚洲人在线观看| 一本大道综合伊人精品热热| 91精品午夜视频| 国产精品理论在线观看| 亚洲成人av资源| 国产91丝袜在线18| 91精品久久久久久蜜臀| 国产精品丝袜一区| 老司机免费视频一区二区三区| 成人激情免费视频| 日韩精品综合一本久道在线视频| 欧美国产综合一区二区| 日韩成人av影视| 91亚洲精品久久久蜜桃网站| 69av一区二区三区| 亚洲欧美视频在线观看| 国产在线精品免费av| 欧美亚洲国产一区二区三区| 国产婷婷色一区二区三区在线| 亚洲国产精品视频| 99精品在线免费| 国产无遮挡一区二区三区毛片日本| 亚洲综合区在线| 成人免费视频国产在线观看| 日韩三级在线观看| 舔着乳尖日韩一区| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 夜夜嗨av一区二区三区| 国产一区二区三区黄视频| 欧美日韩国产片| 亚洲男女毛片无遮挡| 大胆欧美人体老妇| 久久久久国色av免费看影院| 久久精品久久精品| 日韩欧美视频在线| 日韩电影在线看| 欧美日本一道本在线视频| 亚洲欧美一区二区三区久本道91| 国产激情一区二区三区四区| 久久蜜桃av一区二区天堂| 免费在线观看一区| 日韩一区国产二区欧美三区| 无码av免费一区二区三区试看| 91官网在线免费观看| 亚洲免费在线观看| 91小宝寻花一区二区三区| 综合婷婷亚洲小说| 91美女片黄在线| 亚洲激情在线激情| 在线观看91精品国产入口| 亚洲黄色性网站| 欧美系列日韩一区| 日本一不卡视频| 欧美一区二区视频在线观看 | 91在线国产福利| 亚洲视频每日更新| 欧美探花视频资源| 亚洲1区2区3区视频| 日韩一区二区免费视频| 国内精品第一页| 国产女人aaa级久久久级| av电影在线观看不卡| 一区二区三区在线视频免费观看| 在线观看免费亚洲| 美女在线观看视频一区二区| 精品久久一区二区| av欧美精品.com| 天堂蜜桃一区二区三区| 久久久久久**毛片大全| 99久久久久久99| 视频一区视频二区中文| 久久日韩精品一区二区五区| 成人免费毛片嘿嘿连载视频| 亚洲在线视频网站| 精品蜜桃在线看| 一本色道a无线码一区v| 奇米色一区二区| 国产精品国产三级国产普通话蜜臀| 欧洲激情一区二区| 九九久久精品视频| 亚洲精品视频在线观看网站| 欧美一级欧美三级| 一本久道中文字幕精品亚洲嫩| 免费在线观看成人| 自拍偷拍亚洲欧美日韩| 日韩一区二区免费高清| av成人老司机| 久久国产免费看| 亚洲精品视频在线观看网站| 久久久亚洲精品石原莉奈| 欧美优质美女网站| 成人在线视频一区| 久久精品国内一区二区三区| 亚洲午夜羞羞片| 亚洲色图一区二区| 久久综合一区二区| 777久久久精品| 91国偷自产一区二区三区成为亚洲经典 | 欧美丰满一区二区免费视频| 国产成人av在线影院| 日韩电影在线观看网站| 亚洲啪啪综合av一区二区三区| 26uuu成人网一区二区三区| 欧美中文字幕一区二区三区| 不卡视频一二三| 国产黄色91视频| 老司机午夜精品| 日韩不卡一二三区| 亚洲成人免费视频| 亚洲美女电影在线| 亚洲人吸女人奶水| 国产精品欧美久久久久一区二区| 精品噜噜噜噜久久久久久久久试看| 欧美日韩国产天堂| 欧美日韩视频在线观看一区二区三区 | 蜜桃视频免费观看一区| 性欧美疯狂xxxxbbbb| 亚洲一区二区精品视频| 一区二区在线观看视频在线观看| 国产欧美日韩激情| 国产亚洲欧美日韩在线一区| 精品国产伦理网| 久久久久久久久久美女| 国产午夜精品在线观看| 久久精品一区四区| 久久久久亚洲蜜桃| 中文在线一区二区| 国产精品伦理在线| 综合色天天鬼久久鬼色| 亚洲欧美乱综合| 亚洲综合激情另类小说区| 亚洲一二三四在线| 日韩在线卡一卡二| 日韩av中文在线观看| 久久精品国产亚洲aⅴ| 极品少妇一区二区| 处破女av一区二区| 色综合久久中文综合久久97| 在线视频欧美区| 欧美丝袜丝交足nylons图片| 欧美日韩国产高清一区| 日韩三级在线观看| 日本一区二区三区在线观看| 中文字幕亚洲电影| 亚洲五月六月丁香激情| 日韩电影在线观看一区| 国产成人av在线影院| 色视频一区二区| 日韩小视频在线观看专区| 久久精品这里都是精品| 亚洲激情欧美激情| 久久av老司机精品网站导航| 成人av网站在线| 欧美私人免费视频| 国产三级久久久| 亚洲一区二区三区在线| 精品一区二区三区在线观看| 91在线视频18| 日韩精品综合一本久道在线视频| 中文字幕精品一区二区三区精品| 亚洲午夜精品网| 国产69精品久久99不卡| 欧美综合视频在线观看| 国产夜色精品一区二区av| 一区二区在线观看不卡| 国产综合久久久久影院| 色88888久久久久久影院野外| 精品日韩在线一区| 一区二区国产盗摄色噜噜| 国产成人自拍网| 欧美一区二区三区色| 一区二区三区在线视频免费| 国产精华液一区二区三区|