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

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

?? softfloat-macros.h

?? QEMU 0.91 source code, supports ARM processor including S3C24xx series
?? H
?? 第 1 頁 / 共 2 頁
字號:
/*============================================================================This C source fragment is part of the SoftFloat IEC/IEEE Floating-pointArithmetic Package, Release 2b.Written by John R. Hauser.  This work was made possible in part by theInternational Computer Science Institute, located at Suite 600, 1947 CenterStreet, Berkeley, California 94704.  Funding was partially provided by theNational Science Foundation under grant MIP-9311980.  The original versionof this code was written as part of a project to build a fixed-point vectorprocessor in collaboration with the University of California at Berkeley,overseen by Profs. Nelson Morgan and John Wawrzynek.  More informationis available through the Web page `http://www.cs.berkeley.edu/~jhauser/arithmetic/SoftFloat.html'.THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort hasbeen made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT TIMESRESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO PERSONSAND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ALL LOSSES,COSTS, OR OTHER PROBLEMS THEY INCUR DUE TO THE SOFTWARE, AND WHO FURTHERMOREEFFECTIVELY INDEMNIFY JOHN HAUSER AND THE INTERNATIONAL COMPUTER SCIENCEINSTITUTE (possibly via similar legal notice) AGAINST ALL LOSSES, COSTS, OROTHER PROBLEMS INCURRED BY THEIR CUSTOMERS AND CLIENTS DUE TO THE SOFTWARE.Derivative works are acceptable, even for commercial purposes, so long as(1) the source code for the derivative work includes prominent notice thatthe work is derivative, and (2) the source code includes prominent notice withthese four paragraphs for those parts of this code that are retained.=============================================================================*//*----------------------------------------------------------------------------| Shifts `a' right by the number of bits given in `count'.  If any nonzero| bits are shifted off, they are ``jammed'' into the least significant bit of| the result by setting the least significant bit to 1.  The value of `count'| can be arbitrarily large; in particular, if `count' is greater than 32, the| result will be either 0 or 1, depending on whether `a' is zero or nonzero.| The result is stored in the location pointed to by `zPtr'.*----------------------------------------------------------------------------*/INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr ){    bits32 z;    if ( count == 0 ) {        z = a;    }    else if ( count < 32 ) {        z = ( a>>count ) | ( ( a<<( ( - count ) & 31 ) ) != 0 );    }    else {        z = ( a != 0 );    }    *zPtr = z;}/*----------------------------------------------------------------------------| Shifts `a' right by the number of bits given in `count'.  If any nonzero| bits are shifted off, they are ``jammed'' into the least significant bit of| the result by setting the least significant bit to 1.  The value of `count'| can be arbitrarily large; in particular, if `count' is greater than 64, the| result will be either 0 or 1, depending on whether `a' is zero or nonzero.| The result is stored in the location pointed to by `zPtr'.*----------------------------------------------------------------------------*/INLINE void shift64RightJamming( bits64 a, int16 count, bits64 *zPtr ){    bits64 z;    if ( count == 0 ) {        z = a;    }    else if ( count < 64 ) {        z = ( a>>count ) | ( ( a<<( ( - count ) & 63 ) ) != 0 );    }    else {        z = ( a != 0 );    }    *zPtr = z;}/*----------------------------------------------------------------------------| Shifts the 128-bit value formed by concatenating `a0' and `a1' right by 64| _plus_ the number of bits given in `count'.  The shifted result is at most| 64 nonzero bits; this is stored at the location pointed to by `z0Ptr'.  The| bits shifted off form a second 64-bit result as follows:  The _last_ bit| shifted off is the most-significant bit of the extra result, and the other| 63 bits of the extra result are all zero if and only if _all_but_the_last_| bits shifted off were all zero.  This extra result is stored in the location| pointed to by `z1Ptr'.  The value of `count' can be arbitrarily large.|     (This routine makes more sense if `a0' and `a1' are considered to form| a fixed-point value with binary point between `a0' and `a1'.  This fixed-| point value is shifted right by the number of bits given in `count', and| the integer part of the result is returned at the location pointed to by| `z0Ptr'.  The fractional part of the result may be slightly corrupted as| described above, and is returned at the location pointed to by `z1Ptr'.)*----------------------------------------------------------------------------*/INLINE void shift64ExtraRightJamming(     bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr ){    bits64 z0, z1;    int8 negCount = ( - count ) & 63;    if ( count == 0 ) {        z1 = a1;        z0 = a0;    }    else if ( count < 64 ) {        z1 = ( a0<<negCount ) | ( a1 != 0 );        z0 = a0>>count;    }    else {        if ( count == 64 ) {            z1 = a0 | ( a1 != 0 );        }        else {            z1 = ( ( a0 | a1 ) != 0 );        }        z0 = 0;    }    *z1Ptr = z1;    *z0Ptr = z0;}/*----------------------------------------------------------------------------| Shifts the 128-bit value formed by concatenating `a0' and `a1' right by the| number of bits given in `count'.  Any bits shifted off are lost.  The value| of `count' can be arbitrarily large; in particular, if `count' is greater| than 128, the result will be 0.  The result is broken into two 64-bit pieces| which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.*----------------------------------------------------------------------------*/INLINE void shift128Right(     bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr ){    bits64 z0, z1;    int8 negCount = ( - count ) & 63;    if ( count == 0 ) {        z1 = a1;        z0 = a0;    }    else if ( count < 64 ) {        z1 = ( a0<<negCount ) | ( a1>>count );        z0 = a0>>count;    }    else {        z1 = ( count < 64 ) ? ( a0>>( count & 63 ) ) : 0;        z0 = 0;    }    *z1Ptr = z1;    *z0Ptr = z0;}/*----------------------------------------------------------------------------| Shifts the 128-bit value formed by concatenating `a0' and `a1' right by the| number of bits given in `count'.  If any nonzero bits are shifted off, they| are ``jammed'' into the least significant bit of the result by setting the| least significant bit to 1.  The value of `count' can be arbitrarily large;| in particular, if `count' is greater than 128, the result will be either| 0 or 1, depending on whether the concatenation of `a0' and `a1' is zero or| nonzero.  The result is broken into two 64-bit pieces which are stored at| the locations pointed to by `z0Ptr' and `z1Ptr'.*----------------------------------------------------------------------------*/INLINE void shift128RightJamming(     bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr ){    bits64 z0, z1;    int8 negCount = ( - count ) & 63;    if ( count == 0 ) {        z1 = a1;        z0 = a0;    }    else if ( count < 64 ) {        z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );        z0 = a0>>count;    }    else {        if ( count == 64 ) {            z1 = a0 | ( a1 != 0 );        }        else if ( count < 128 ) {            z1 = ( a0>>( count & 63 ) ) | ( ( ( a0<<negCount ) | a1 ) != 0 );        }        else {            z1 = ( ( a0 | a1 ) != 0 );        }        z0 = 0;    }    *z1Ptr = z1;    *z0Ptr = z0;}/*----------------------------------------------------------------------------| Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' right| by 64 _plus_ the number of bits given in `count'.  The shifted result is| at most 128 nonzero bits; these are broken into two 64-bit pieces which are| stored at the locations pointed to by `z0Ptr' and `z1Ptr'.  The bits shifted| off form a third 64-bit result as follows:  The _last_ bit shifted off is| the most-significant bit of the extra result, and the other 63 bits of the| extra result are all zero if and only if _all_but_the_last_ bits shifted off| were all zero.  This extra result is stored in the location pointed to by| `z2Ptr'.  The value of `count' can be arbitrarily large.|     (This routine makes more sense if `a0', `a1', and `a2' are considered| to form a fixed-point value with binary point between `a1' and `a2'.  This| fixed-point value is shifted right by the number of bits given in `count',| and the integer part of the result is returned at the locations pointed to| by `z0Ptr' and `z1Ptr'.  The fractional part of the result may be slightly| corrupted as described above, and is returned at the location pointed to by| `z2Ptr'.)*----------------------------------------------------------------------------*/INLINE void shift128ExtraRightJamming(     bits64 a0,     bits64 a1,     bits64 a2,     int16 count,     bits64 *z0Ptr,     bits64 *z1Ptr,     bits64 *z2Ptr ){    bits64 z0, z1, z2;    int8 negCount = ( - count ) & 63;    if ( count == 0 ) {        z2 = a2;        z1 = a1;        z0 = a0;    }    else {        if ( count < 64 ) {            z2 = a1<<negCount;            z1 = ( a0<<negCount ) | ( a1>>count );            z0 = a0>>count;        }        else {            if ( count == 64 ) {                z2 = a1;                z1 = a0;            }            else {                a2 |= a1;                if ( count < 128 ) {                    z2 = a0<<negCount;                    z1 = a0>>( count & 63 );                }                else {                    z2 = ( count == 128 ) ? a0 : ( a0 != 0 );                    z1 = 0;                }            }            z0 = 0;        }        z2 |= ( a2 != 0 );    }    *z2Ptr = z2;    *z1Ptr = z1;    *z0Ptr = z0;}/*----------------------------------------------------------------------------| Shifts the 128-bit value formed by concatenating `a0' and `a1' left by the| number of bits given in `count'.  Any bits shifted off are lost.  The value| of `count' must be less than 64.  The result is broken into two 64-bit| pieces which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.*----------------------------------------------------------------------------*/INLINE void shortShift128Left(     bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr ){    *z1Ptr = a1<<count;    *z0Ptr =        ( count == 0 ) ? a0 : ( a0<<count ) | ( a1>>( ( - count ) & 63 ) );}/*----------------------------------------------------------------------------| Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' left| by the number of bits given in `count'.  Any bits shifted off are lost.| The value of `count' must be less than 64.  The result is broken into three| 64-bit pieces which are stored at the locations pointed to by `z0Ptr',| `z1Ptr', and `z2Ptr'.*----------------------------------------------------------------------------*/INLINE void shortShift192Left(     bits64 a0,     bits64 a1,     bits64 a2,     int16 count,     bits64 *z0Ptr,     bits64 *z1Ptr,     bits64 *z2Ptr ){    bits64 z0, z1, z2;    int8 negCount;    z2 = a2<<count;    z1 = a1<<count;    z0 = a0<<count;    if ( 0 < count ) {        negCount = ( ( - count ) & 63 );        z1 |= a2>>negCount;        z0 |= a1>>negCount;    }    *z2Ptr = z2;    *z1Ptr = z1;    *z0Ptr = z0;}/*----------------------------------------------------------------------------| Adds the 128-bit value formed by concatenating `a0' and `a1' to the 128-bit| value formed by concatenating `b0' and `b1'.  Addition is modulo 2^128, so| any carry out is lost.  The result is broken into two 64-bit pieces which| are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.*----------------------------------------------------------------------------*/INLINE void add128(     bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr ){    bits64 z1;    z1 = a1 + b1;    *z1Ptr = z1;    *z0Ptr = a0 + b0 + ( z1 < a1 );}/*----------------------------------------------------------------------------| Adds the 192-bit value formed by concatenating `a0', `a1', and `a2' to the| 192-bit value formed by concatenating `b0', `b1', and `b2'.  Addition is| modulo 2^192, so any carry out is lost.  The result is broken into three| 64-bit pieces which are stored at the locations pointed to by `z0Ptr',| `z1Ptr', and `z2Ptr'.*----------------------------------------------------------------------------*/INLINE void add192(     bits64 a0,     bits64 a1,     bits64 a2,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美极品aⅴ影院| 欧美日韩综合在线免费观看| 精品一区二区三区欧美| 国产在线一区观看| 99九九99九九九视频精品| 91久久一区二区| 67194成人在线观看| 中文字幕一区三区| 男女性色大片免费观看一区二区 | 欧美精品自拍偷拍| 精品女同一区二区| 亚洲综合一二区| 国产精品123区| 日韩三级av在线播放| 亚洲免费视频中文字幕| 麻豆极品一区二区三区| 色琪琪一区二区三区亚洲区| 亚洲国产精品传媒在线观看| 成人av综合在线| 欧美一区日本一区韩国一区| 综合激情成人伊人| 99久久夜色精品国产网站| 久久综合九色综合欧美亚洲| 亚洲一二三四区| av中文字幕在线不卡| 久久久亚洲综合| 国产在线一区二区| 欧美不卡视频一区| 美国十次了思思久久精品导航| 91黄视频在线| 香蕉av福利精品导航| 91精品国产高清一区二区三区蜜臀| 日韩一区欧美小说| 成人动漫视频在线| 国产精品免费观看视频| 精品少妇一区二区三区在线视频 | 成人妖精视频yjsp地址| 国产农村妇女毛片精品久久麻豆 | 国产精品素人视频| 日本精品视频一区二区三区| 亚洲国产日韩av| 精品国产欧美一区二区| 国产乱国产乱300精品| 中文字幕亚洲一区二区va在线| 99久精品国产| 日本午夜精品视频在线观看| 欧美一二三四区在线| 国产成人av网站| 亚洲免费三区一区二区| 精品乱码亚洲一区二区不卡| 成人动漫av在线| 日本vs亚洲vs韩国一区三区| 国产精品欧美久久久久一区二区| 91麻豆蜜桃一区二区三区| 九九精品一区二区| 亚洲一区二区免费视频| 欧美激情在线观看视频免费| 欧美三区免费完整视频在线观看| 国产乱码精品1区2区3区| 亚洲精品你懂的| 国产精品卡一卡二| 久久精品视频在线看| 欧美精品第1页| 7878成人国产在线观看| 亚洲精品成人a在线观看| 亚洲电影一区二区三区| 成人亚洲精品久久久久软件| 国产专区综合网| 国产999精品久久| 色综合色狠狠综合色| 欧美日韩精品二区第二页| 欧美日韩综合色| 99精品久久久久久| 久久er精品视频| 午夜成人免费电影| 亚洲精品国产精品乱码不99| 国产日本欧美一区二区| 欧美一区二区三级| 欧美日韩高清一区二区| 一本大道久久a久久精品综合| 国产91精品久久久久久久网曝门| 日韩av在线发布| 午夜精品福利一区二区蜜股av | 亚州成人在线电影| 一区二区三区日韩| 一区二区不卡在线播放| 一区二区日韩电影| 亚洲一区二区三区三| 国产精品影视在线观看| 午夜成人免费视频| 国产精品1024| 欧美日韩国产123区| 亚洲国产电影在线观看| 伊人色综合久久天天| 日本不卡一区二区三区| 丰满少妇在线播放bd日韩电影| 91视频免费播放| 久久久www成人免费毛片麻豆| 一区二区三区小说| 国产99精品视频| 欧美成人性战久久| 日韩中文欧美在线| 成人97人人超碰人人99| 欧美刺激午夜性久久久久久久| 日韩理论片一区二区| 91丝袜呻吟高潮美腿白嫩在线观看| 91啦中文在线观看| 国产农村妇女毛片精品久久麻豆| 日本不卡在线视频| 欧美日韩国产高清一区二区| 亚洲欧洲av一区二区三区久久| 蜜乳av一区二区三区| 欧美丝袜丝交足nylons图片| 国产精品人成在线观看免费| 中文字幕在线免费不卡| 一区在线播放视频| 日本韩国欧美在线| 美国精品在线观看| 中文字幕精品一区| 欧美一区二区三区公司| 国产98色在线|日韩| 亚洲第一狼人社区| 欧美日韩mp4| 久久国产尿小便嘘嘘尿| 国产欧美一区二区精品性| 91视频观看视频| 视频一区免费在线观看| 日韩欧美国产系列| 99久久夜色精品国产网站| 亚洲成av人影院| 久久综合狠狠综合久久综合88| eeuss鲁片一区二区三区在线观看| 一区二区三区在线影院| 欧美tk丨vk视频| 91在线视频官网| 麻豆精品一区二区av白丝在线 | 亚洲成a人v欧美综合天堂下载| 日韩欧美在线一区二区三区| 成人动漫av在线| 蜜桃av一区二区| 精品在线免费观看| 亚洲免费在线电影| 精品国产乱码久久久久久免费| eeuss鲁一区二区三区| 日韩制服丝袜先锋影音| 综合久久一区二区三区| 中文字幕中文字幕中文字幕亚洲无线| 91在线国产观看| 国产成人综合亚洲91猫咪| 日韩精品成人一区二区在线| 亚洲美女电影在线| 亚洲欧洲美洲综合色网| 国产欧美一区二区精品婷婷| 在线不卡中文字幕| 欧美精品久久一区二区三区| 91福利国产成人精品照片| 色香色香欲天天天影视综合网| 国产iv一区二区三区| 国内精品在线播放| 国产乱码字幕精品高清av| 精品一区二区三区免费| 另类中文字幕网| 国产成人综合在线| 97精品视频在线观看自产线路二| eeuss鲁片一区二区三区在线看| 国产99久久精品| 色综合久久久网| 欧美三区在线观看| 精品欧美乱码久久久久久1区2区| 欧美电影免费观看完整版| 久久午夜国产精品| 亚洲视频一区二区免费在线观看| 亚洲乱码国产乱码精品精小说| 亚洲精品自拍动漫在线| 日韩精品一卡二卡三卡四卡无卡| 日韩福利电影在线观看| 成人激情小说网站| 欧美一级精品大片| 亚洲综合在线观看视频| 国产美女一区二区三区| 欧美日韩国产另类不卡| 国产女主播在线一区二区| 亚洲成人精品一区二区| 久久精品国产澳门| 丁香激情综合国产| 91在线视频免费91| 欧美日韩精品免费| 国产欧美日韩综合精品一区二区| 亚洲三级电影全部在线观看高清| 亚洲国产日产av| 丁香啪啪综合成人亚洲小说| 欧美日韩成人在线一区| 精品电影一区二区| 亚洲一区中文日韩| 成人免费黄色大片| 精品少妇一区二区三区在线视频| 亚洲天堂福利av| 国产精品一线二线三线| 欧美日韩黄色影视| 亚洲女女做受ⅹxx高潮|