1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
---|
2 | <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> |
---|
3 | <title>mixpp: fix_factory.h Source File</title> |
---|
4 | <link href="tabs.css" rel="stylesheet" type="text/css"> |
---|
5 | <link href="doxygen.css" rel="stylesheet" type="text/css"> |
---|
6 | </head><body> |
---|
7 | <!-- Generated by Doxygen 1.5.8 --> |
---|
8 | <script type="text/javascript"> |
---|
9 | <!-- |
---|
10 | function changeDisplayState (e){ |
---|
11 | var num=this.id.replace(/[^[0-9]/g,''); |
---|
12 | var button=this.firstChild; |
---|
13 | var sectionDiv=document.getElementById('dynsection'+num); |
---|
14 | if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){ |
---|
15 | sectionDiv.style.display='block'; |
---|
16 | button.src='open.gif'; |
---|
17 | }else{ |
---|
18 | sectionDiv.style.display='none'; |
---|
19 | button.src='closed.gif'; |
---|
20 | } |
---|
21 | } |
---|
22 | function initDynSections(){ |
---|
23 | var divs=document.getElementsByTagName('div'); |
---|
24 | var sectionCounter=1; |
---|
25 | for(var i=0;i<divs.length-1;i++){ |
---|
26 | if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){ |
---|
27 | var header=divs[i]; |
---|
28 | var section=divs[i+1]; |
---|
29 | var button=header.firstChild; |
---|
30 | if (button!='IMG'){ |
---|
31 | divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild); |
---|
32 | button=document.createElement('img'); |
---|
33 | divs[i].insertBefore(button,divs[i].firstChild); |
---|
34 | } |
---|
35 | header.style.cursor='pointer'; |
---|
36 | header.onclick=changeDisplayState; |
---|
37 | header.id='dynheader'+sectionCounter; |
---|
38 | button.src='closed.gif'; |
---|
39 | section.id='dynsection'+sectionCounter; |
---|
40 | section.style.display='none'; |
---|
41 | section.style.marginLeft='14px'; |
---|
42 | sectionCounter++; |
---|
43 | } |
---|
44 | } |
---|
45 | } |
---|
46 | window.onload = initDynSections; |
---|
47 | --> |
---|
48 | </script> |
---|
49 | <div class="navigation" id="top"> |
---|
50 | <div class="tabs"> |
---|
51 | <ul> |
---|
52 | <li><a href="main.html"><span>Main Page</span></a></li> |
---|
53 | <li><a href="pages.html"><span>Related Pages</span></a></li> |
---|
54 | <li><a href="modules.html"><span>Modules</span></a></li> |
---|
55 | <li><a href="annotated.html"><span>Classes</span></a></li> |
---|
56 | <li class="current"><a href="files.html"><span>Files</span></a></li> |
---|
57 | </ul> |
---|
58 | </div> |
---|
59 | <div class="tabs"> |
---|
60 | <ul> |
---|
61 | <li><a href="files.html"><span>File List</span></a></li> |
---|
62 | <li><a href="globals.html"><span>File Members</span></a></li> |
---|
63 | </ul> |
---|
64 | </div> |
---|
65 | <h1>fix_factory.h</h1><a href="fix__factory_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 |
---|
66 | <a name="l00030"></a>00030 <span class="preprocessor">#ifndef FIX_FACTORY_H</span> |
---|
67 | <a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#define FIX_FACTORY_H</span> |
---|
68 | <a name="l00032"></a>00032 <span class="preprocessor"></span> |
---|
69 | <a name="l00033"></a>00033 <span class="preprocessor">#include <<a class="code" href="factory_8h.html" title="Base class for class factories and memory allocation functions.">itpp/base/factory.h</a>></span> |
---|
70 | <a name="l00034"></a>00034 <span class="preprocessor">#include <<a class="code" href="fix__base_8h.html" title="Definitions of a base class for fixed-point data types.">itpp/fixed/fix_base.h</a>></span> |
---|
71 | <a name="l00035"></a>00035 |
---|
72 | <a name="l00036"></a>00036 |
---|
73 | <a name="l00037"></a>00037 <span class="keyword">namespace </span>itpp |
---|
74 | <a name="l00038"></a>00038 { |
---|
75 | <a name="l00039"></a>00039 |
---|
76 | <a name="l00040"></a>00040 <span class="comment">// Forward declarations</span> |
---|
77 | <a name="l00041"></a>00041 <span class="keyword">class </span>Fix; |
---|
78 | <a name="l00042"></a>00042 <span class="keyword">class </span>CFix; |
---|
79 | <a name="l00043"></a>00043 |
---|
80 | <a name="l00046"></a>00046 |
---|
81 | <a name="l00119"></a><a class="code" href="classitpp_1_1Fix__Factory.html">00119</a> <span class="keyword">class </span><a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> : <span class="keyword">public</span> <a class="code" href="classitpp_1_1Factory.html" title="Base class for class factories.">Factory</a> |
---|
82 | <a name="l00120"></a>00120 { |
---|
83 | <a name="l00121"></a>00121 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classitpp_1_1Fix.html" title="Fixed-point data type.">Fix</a>; |
---|
84 | <a name="l00122"></a>00122 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classitpp_1_1CFix.html" title="Complex fixed-point data type.">CFix</a>; |
---|
85 | <a name="l00123"></a>00123 <span class="keyword">public</span>: |
---|
86 | <a name="l00125"></a><a class="code" href="classitpp_1_1Fix__Factory.html#eda0bed04ba1dd12dc91e032858e84fb">00125</a> <span class="keyword">explicit</span> <a class="code" href="classitpp_1_1Fix__Factory.html#eda0bed04ba1dd12dc91e032858e84fb" title="Constructor.">Fix_Factory</a>(<span class="keywordtype">int</span> w = <a class="code" href="group__fixed.html#g16660ef1accee4eb3c95d2807c0d7c9c" title="Max word length.">MAX_WORDLEN</a>, <a class="code" href="group__fixed.html#g3a204def662e60bf9bb54d27db09450d" title="Sign encoding modes (aligned with SystemC).">e_mode</a> e = <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#g18d0ad4d7280177b761737a7b8b5c45d" title="Overflow modes (aligned with SystemC).">o_mode</a> o = <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>, <a class="code" href="group__fixed.html#ga644362f0b3d795ce8521326e20fed11" title="Quantization modes (aligned with SystemC).">q_mode</a> q = <a class="code" href="group__fixed.html#gga644362f0b3d795ce8521326e20fed110566af00cff42134b7f719254d07bec1" title="Truncation.">TRN</a>, <a class="code" href="classitpp_1_1Stat.html" title="A class for sampling a signal and calculating statistics.">Stat</a> *ptr = 0) |
---|
87 | <a name="l00126"></a>00126 : <a class="code" href="classitpp_1_1Fix__Factory.html#925bb19eaaad983fded8fefcc7bc0b8b" title="Word length.">wordlen</a>(w), <a class="code" href="classitpp_1_1Fix__Factory.html#76fd5ebd9d282c163da0c33369c02981" title="Sign encoding mode.">emode</a>(e), <a class="code" href="classitpp_1_1Fix__Factory.html#deaafb710992a3ad23b6349e6698b62f" title="Overflow mode.">omode</a>(o), <a class="code" href="classitpp_1_1Fix__Factory.html#5fb29c23aeabf9c03346e536387eacdb" title="Quantization mode.">qmode</a>(q), <a class="code" href="classitpp_1_1Fix__Factory.html#15489b032eae2e03aeeb578d119a1135" title="Pointer to statistics object.">stat_ptr</a>(ptr) {} |
---|
88 | <a name="l00128"></a><a class="code" href="classitpp_1_1Fix__Factory.html#b9e876a7dd92e05d6a2863353eed94b9">00128</a> <span class="keyword">virtual</span> <a class="code" href="classitpp_1_1Fix__Factory.html#b9e876a7dd92e05d6a2863353eed94b9" title="Destructor.">~Fix_Factory</a>() {} |
---|
89 | <a name="l00130"></a><a class="code" href="classitpp_1_1Fix__Factory.html#3576b737190e17c85ae3682d581367f1">00130</a> <a class="code" href="classitpp_1_1Fix__Factory.html#3576b737190e17c85ae3682d581367f1" title="Conversion operator. Useful in templated code.">operator double</a>()<span class="keyword"> const </span>{<span class="keywordflow">return</span> 0.0;} |
---|
90 | <a name="l00132"></a>00132 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classitpp_1_1Fix__Factory.html#601a0d0a724e3073b012c6e31ee219c4" title="Create an n-length array of Fix.">create</a>(<a class="code" href="classitpp_1_1Fix.html" title="Fixed-point data type.">Fix</a>* &ptr, <span class="keyword">const</span> <span class="keywordtype">int</span> n) <span class="keyword">const</span>; |
---|
91 | <a name="l00134"></a>00134 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classitpp_1_1Fix__Factory.html#601a0d0a724e3073b012c6e31ee219c4" title="Create an n-length array of Fix.">create</a>(<a class="code" href="classitpp_1_1CFix.html" title="Complex fixed-point data type.">CFix</a>* &ptr, <span class="keyword">const</span> <span class="keywordtype">int</span> n) <span class="keyword">const</span>; |
---|
92 | <a name="l00135"></a>00135 <span class="keyword">protected</span>: |
---|
93 | <a name="l00137"></a><a class="code" href="classitpp_1_1Fix__Factory.html#925bb19eaaad983fded8fefcc7bc0b8b">00137</a> <span class="keywordtype">int</span> <a class="code" href="classitpp_1_1Fix__Factory.html#925bb19eaaad983fded8fefcc7bc0b8b" title="Word length.">wordlen</a>; |
---|
94 | <a name="l00139"></a><a class="code" href="classitpp_1_1Fix__Factory.html#76fd5ebd9d282c163da0c33369c02981">00139</a> <a class="code" href="group__fixed.html#g3a204def662e60bf9bb54d27db09450d" title="Sign encoding modes (aligned with SystemC).">e_mode</a> <a class="code" href="classitpp_1_1Fix__Factory.html#76fd5ebd9d282c163da0c33369c02981" title="Sign encoding mode.">emode</a>; |
---|
95 | <a name="l00141"></a><a class="code" href="classitpp_1_1Fix__Factory.html#deaafb710992a3ad23b6349e6698b62f">00141</a> <a class="code" href="group__fixed.html#g18d0ad4d7280177b761737a7b8b5c45d" title="Overflow modes (aligned with SystemC).">o_mode</a> <a class="code" href="classitpp_1_1Fix__Factory.html#deaafb710992a3ad23b6349e6698b62f" title="Overflow mode.">omode</a>; |
---|
96 | <a name="l00143"></a><a class="code" href="classitpp_1_1Fix__Factory.html#5fb29c23aeabf9c03346e536387eacdb">00143</a> <a class="code" href="group__fixed.html#ga644362f0b3d795ce8521326e20fed11" title="Quantization modes (aligned with SystemC).">q_mode</a> <a class="code" href="classitpp_1_1Fix__Factory.html#5fb29c23aeabf9c03346e536387eacdb" title="Quantization mode.">qmode</a>; |
---|
97 | <a name="l00145"></a><a class="code" href="classitpp_1_1Fix__Factory.html#15489b032eae2e03aeeb578d119a1135">00145</a> <a class="code" href="classitpp_1_1Stat.html" title="A class for sampling a signal and calculating statistics.">Stat</a> *<a class="code" href="classitpp_1_1Fix__Factory.html#15489b032eae2e03aeeb578d119a1135" title="Pointer to statistics object.">stat_ptr</a>; |
---|
98 | <a name="l00146"></a>00146 }; |
---|
99 | <a name="l00147"></a>00147 |
---|
100 | <a name="l00149"></a>00149 <span class="keyword">template</span><> |
---|
101 | <a name="l00150"></a>00150 <span class="keywordtype">void</span> <a class="code" href="group__fixed.html#g7cc2930b0607827d0d6448eccb3ba09a" title="Create an n-length array of Fix using Fix_Factory f.">create_elements<Fix></a>(<a class="code" href="classitpp_1_1Fix.html" title="Fixed-point data type.">Fix</a>* &ptr, <span class="keyword">const</span> <span class="keywordtype">int</span> n, <span class="keyword">const</span> <a class="code" href="classitpp_1_1Factory.html" title="Base class for class factories.">Factory</a> &f); |
---|
102 | <a name="l00151"></a>00151 |
---|
103 | <a name="l00153"></a>00153 <span class="keyword">template</span><> |
---|
104 | <a name="l00154"></a>00154 <span class="keywordtype">void</span> <a class="code" href="group__fixed.html#g001c744796a62848af9890ba1f4016a6" title="Create an n-length array of CFix using Fix_Factory f.">create_elements<CFix></a>(<a class="code" href="classitpp_1_1CFix.html" title="Complex fixed-point data type.">CFix</a>* &ptr, <span class="keyword">const</span> <span class="keywordtype">int</span> n, <span class="keyword">const</span> <a class="code" href="classitpp_1_1Factory.html" title="Base class for class factories.">Factory</a> &f); |
---|
105 | <a name="l00155"></a>00155 |
---|
106 | <a name="l00157"></a>00157 |
---|
107 | <a name="l00158"></a>00158 |
---|
108 | <a name="l00160"></a>00160 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX1(1, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
109 | <a name="l00162"></a>00162 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX2(2, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
110 | <a name="l00163"></a>00163 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX3(3, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
111 | <a name="l00164"></a>00164 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX4(4, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
112 | <a name="l00165"></a>00165 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX5(5, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
113 | <a name="l00166"></a>00166 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX6(6, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
114 | <a name="l00167"></a>00167 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX7(7, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
115 | <a name="l00168"></a>00168 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX8(8, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
116 | <a name="l00169"></a>00169 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX9(9, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
117 | <a name="l00170"></a>00170 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX10(10, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
118 | <a name="l00171"></a>00171 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX11(11, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
119 | <a name="l00172"></a>00172 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX12(12, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
120 | <a name="l00173"></a>00173 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX13(13, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
121 | <a name="l00174"></a>00174 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX14(14, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
122 | <a name="l00175"></a>00175 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX15(15, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
123 | <a name="l00176"></a>00176 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX16(16, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
124 | <a name="l00177"></a>00177 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX17(17, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
125 | <a name="l00178"></a>00178 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX18(18, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
126 | <a name="l00179"></a>00179 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX19(19, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
127 | <a name="l00180"></a>00180 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX20(20, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
128 | <a name="l00181"></a>00181 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX21(21, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
129 | <a name="l00182"></a>00182 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX22(22, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
130 | <a name="l00183"></a>00183 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX23(23, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
131 | <a name="l00184"></a>00184 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX24(24, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
132 | <a name="l00185"></a>00185 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX25(25, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
133 | <a name="l00186"></a>00186 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX26(26, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
134 | <a name="l00187"></a>00187 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX27(27, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
135 | <a name="l00188"></a>00188 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX28(28, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
136 | <a name="l00189"></a>00189 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX29(29, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
137 | <a name="l00190"></a>00190 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX30(30, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
138 | <a name="l00191"></a>00191 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX31(31, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
139 | <a name="l00192"></a>00192 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX32(32, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
140 | <a name="l00193"></a>00193 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX33(33, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
141 | <a name="l00194"></a>00194 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX34(34, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
142 | <a name="l00195"></a>00195 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX35(35, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
143 | <a name="l00196"></a>00196 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX36(36, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
144 | <a name="l00197"></a>00197 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX37(37, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
145 | <a name="l00198"></a>00198 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX38(38, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
146 | <a name="l00199"></a>00199 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX39(39, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
147 | <a name="l00200"></a>00200 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX40(40, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
148 | <a name="l00201"></a>00201 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX41(41, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
149 | <a name="l00202"></a>00202 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX42(42, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
150 | <a name="l00203"></a>00203 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX43(43, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
151 | <a name="l00204"></a>00204 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX44(44, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
152 | <a name="l00205"></a>00205 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX45(45, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
153 | <a name="l00206"></a>00206 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX46(46, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
154 | <a name="l00207"></a>00207 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX47(47, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
155 | <a name="l00208"></a>00208 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX48(48, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
156 | <a name="l00209"></a>00209 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX49(49, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
157 | <a name="l00210"></a>00210 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX50(50, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
158 | <a name="l00211"></a>00211 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX51(51, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
159 | <a name="l00212"></a>00212 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX52(52, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
160 | <a name="l00213"></a>00213 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX53(53, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
161 | <a name="l00214"></a>00214 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX54(54, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
162 | <a name="l00215"></a>00215 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX55(55, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
163 | <a name="l00216"></a>00216 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX56(56, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
164 | <a name="l00217"></a>00217 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX57(57, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
165 | <a name="l00218"></a>00218 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX58(58, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
166 | <a name="l00219"></a>00219 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX59(59, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
167 | <a name="l00220"></a>00220 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX60(60, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
168 | <a name="l00221"></a>00221 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX61(61, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
169 | <a name="l00222"></a>00222 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX62(62, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
170 | <a name="l00223"></a>00223 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX63(63, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
171 | <a name="l00224"></a>00224 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> FIX64(64, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
172 | <a name="l00226"></a>00226 |
---|
173 | <a name="l00228"></a>00228 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX1(1, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
174 | <a name="l00230"></a>00230 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX2(2, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
175 | <a name="l00231"></a>00231 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX3(3, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
176 | <a name="l00232"></a>00232 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX4(4, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
177 | <a name="l00233"></a>00233 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX5(5, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
178 | <a name="l00234"></a>00234 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX6(6, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
179 | <a name="l00235"></a>00235 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX7(7, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
180 | <a name="l00236"></a>00236 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX8(8, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
181 | <a name="l00237"></a>00237 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX9(9, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
182 | <a name="l00238"></a>00238 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX10(10, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
183 | <a name="l00239"></a>00239 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX11(11, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
184 | <a name="l00240"></a>00240 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX12(12, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
185 | <a name="l00241"></a>00241 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX13(13, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
186 | <a name="l00242"></a>00242 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX14(14, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
187 | <a name="l00243"></a>00243 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX15(15, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
188 | <a name="l00244"></a>00244 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX16(16, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
189 | <a name="l00245"></a>00245 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX17(17, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
190 | <a name="l00246"></a>00246 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX18(18, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
191 | <a name="l00247"></a>00247 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX19(19, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
192 | <a name="l00248"></a>00248 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX20(20, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
193 | <a name="l00249"></a>00249 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX21(21, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
194 | <a name="l00250"></a>00250 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX22(22, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
195 | <a name="l00251"></a>00251 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX23(23, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
196 | <a name="l00252"></a>00252 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX24(24, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
197 | <a name="l00253"></a>00253 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX25(25, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
198 | <a name="l00254"></a>00254 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX26(26, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
199 | <a name="l00255"></a>00255 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX27(27, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
200 | <a name="l00256"></a>00256 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX28(28, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
201 | <a name="l00257"></a>00257 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX29(29, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
202 | <a name="l00258"></a>00258 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX30(30, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
203 | <a name="l00259"></a>00259 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX31(31, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
204 | <a name="l00260"></a>00260 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX32(32, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
205 | <a name="l00261"></a>00261 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX33(33, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
206 | <a name="l00262"></a>00262 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX34(34, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
207 | <a name="l00263"></a>00263 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX35(35, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
208 | <a name="l00264"></a>00264 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX36(36, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
209 | <a name="l00265"></a>00265 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX37(37, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
210 | <a name="l00266"></a>00266 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX38(38, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
211 | <a name="l00267"></a>00267 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX39(39, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
212 | <a name="l00268"></a>00268 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX40(40, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
213 | <a name="l00269"></a>00269 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX41(41, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
214 | <a name="l00270"></a>00270 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX42(42, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
215 | <a name="l00271"></a>00271 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX43(43, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
216 | <a name="l00272"></a>00272 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX44(44, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
217 | <a name="l00273"></a>00273 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX45(45, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
218 | <a name="l00274"></a>00274 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX46(46, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
219 | <a name="l00275"></a>00275 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX47(47, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
220 | <a name="l00276"></a>00276 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX48(48, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
221 | <a name="l00277"></a>00277 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX49(49, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
222 | <a name="l00278"></a>00278 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX50(50, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
223 | <a name="l00279"></a>00279 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX51(51, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
224 | <a name="l00280"></a>00280 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX52(52, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
225 | <a name="l00281"></a>00281 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX53(53, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
226 | <a name="l00282"></a>00282 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX54(54, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
227 | <a name="l00283"></a>00283 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX55(55, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
228 | <a name="l00284"></a>00284 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX56(56, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
229 | <a name="l00285"></a>00285 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX57(57, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
230 | <a name="l00286"></a>00286 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX58(58, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
231 | <a name="l00287"></a>00287 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX59(59, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
232 | <a name="l00288"></a>00288 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX60(60, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
233 | <a name="l00289"></a>00289 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX61(61, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
234 | <a name="l00290"></a>00290 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX62(62, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
235 | <a name="l00291"></a>00291 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX63(63, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
236 | <a name="l00292"></a>00292 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> UFIX64(64, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45da7ea797d8579a3e2dc82f792e16e946b" title="Wrap-around.">WRAP</a>); |
---|
237 | <a name="l00294"></a>00294 |
---|
238 | <a name="l00296"></a>00296 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX1(1, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
239 | <a name="l00298"></a>00298 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX2(2, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
240 | <a name="l00299"></a>00299 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX3(3, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
241 | <a name="l00300"></a>00300 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX4(4, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
242 | <a name="l00301"></a>00301 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX5(5, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
243 | <a name="l00302"></a>00302 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX6(6, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
244 | <a name="l00303"></a>00303 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX7(7, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
245 | <a name="l00304"></a>00304 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX8(8, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
246 | <a name="l00305"></a>00305 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX9(9, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
247 | <a name="l00306"></a>00306 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX10(10, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
248 | <a name="l00307"></a>00307 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX11(11, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
249 | <a name="l00308"></a>00308 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX12(12, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
250 | <a name="l00309"></a>00309 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX13(13, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
251 | <a name="l00310"></a>00310 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX14(14, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
252 | <a name="l00311"></a>00311 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX15(15, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
253 | <a name="l00312"></a>00312 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX16(16, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
254 | <a name="l00313"></a>00313 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX17(17, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
255 | <a name="l00314"></a>00314 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX18(18, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
256 | <a name="l00315"></a>00315 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX19(19, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
257 | <a name="l00316"></a>00316 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX20(20, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
258 | <a name="l00317"></a>00317 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX21(21, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
259 | <a name="l00318"></a>00318 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX22(22, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
260 | <a name="l00319"></a>00319 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX23(23, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
261 | <a name="l00320"></a>00320 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX24(24, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
262 | <a name="l00321"></a>00321 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX25(25, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
263 | <a name="l00322"></a>00322 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX26(26, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
264 | <a name="l00323"></a>00323 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX27(27, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
265 | <a name="l00324"></a>00324 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX28(28, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
266 | <a name="l00325"></a>00325 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX29(29, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
267 | <a name="l00326"></a>00326 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX30(30, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
268 | <a name="l00327"></a>00327 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX31(31, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
269 | <a name="l00328"></a>00328 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX32(32, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
270 | <a name="l00329"></a>00329 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX33(33, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
271 | <a name="l00330"></a>00330 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX34(34, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
272 | <a name="l00331"></a>00331 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX35(35, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
273 | <a name="l00332"></a>00332 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX36(36, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
274 | <a name="l00333"></a>00333 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX37(37, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
275 | <a name="l00334"></a>00334 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX38(38, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
276 | <a name="l00335"></a>00335 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX39(39, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
277 | <a name="l00336"></a>00336 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX40(40, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
278 | <a name="l00337"></a>00337 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX41(41, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
279 | <a name="l00338"></a>00338 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX42(42, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
280 | <a name="l00339"></a>00339 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX43(43, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
281 | <a name="l00340"></a>00340 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX44(44, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
282 | <a name="l00341"></a>00341 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX45(45, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
283 | <a name="l00342"></a>00342 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX46(46, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
284 | <a name="l00343"></a>00343 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX47(47, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
285 | <a name="l00344"></a>00344 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX48(48, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
286 | <a name="l00345"></a>00345 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX49(49, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
287 | <a name="l00346"></a>00346 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX50(50, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
288 | <a name="l00347"></a>00347 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX51(51, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
289 | <a name="l00348"></a>00348 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX52(52, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
290 | <a name="l00349"></a>00349 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX53(53, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
291 | <a name="l00350"></a>00350 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX54(54, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
292 | <a name="l00351"></a>00351 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX55(55, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
293 | <a name="l00352"></a>00352 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX56(56, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
294 | <a name="l00353"></a>00353 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX57(57, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
295 | <a name="l00354"></a>00354 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX58(58, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
296 | <a name="l00355"></a>00355 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX59(59, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
297 | <a name="l00356"></a>00356 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX60(60, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
298 | <a name="l00357"></a>00357 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX61(61, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
299 | <a name="l00358"></a>00358 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX62(62, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
300 | <a name="l00359"></a>00359 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX63(63, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
301 | <a name="l00360"></a>00360 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SFIX64(64, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450df4bddf5c0c77795974633939360e6e4a" title="Two&#39;s complement.">TC</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
302 | <a name="l00362"></a>00362 |
---|
303 | <a name="l00364"></a>00364 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX1(1, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
304 | <a name="l00366"></a>00366 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX2(2, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
305 | <a name="l00367"></a>00367 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX3(3, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
306 | <a name="l00368"></a>00368 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX4(4, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
307 | <a name="l00369"></a>00369 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX5(5, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
308 | <a name="l00370"></a>00370 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX6(6, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
309 | <a name="l00371"></a>00371 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX7(7, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
310 | <a name="l00372"></a>00372 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX8(8, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
311 | <a name="l00373"></a>00373 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX9(9, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
312 | <a name="l00374"></a>00374 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX10(10, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
313 | <a name="l00375"></a>00375 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX11(11, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
314 | <a name="l00376"></a>00376 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX12(12, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
315 | <a name="l00377"></a>00377 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX13(13, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
316 | <a name="l00378"></a>00378 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX14(14, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
317 | <a name="l00379"></a>00379 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX15(15, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
318 | <a name="l00380"></a>00380 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX16(16, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
319 | <a name="l00381"></a>00381 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX17(17, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
320 | <a name="l00382"></a>00382 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX18(18, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
321 | <a name="l00383"></a>00383 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX19(19, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
322 | <a name="l00384"></a>00384 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX20(20, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
323 | <a name="l00385"></a>00385 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX21(21, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
324 | <a name="l00386"></a>00386 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX22(22, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
325 | <a name="l00387"></a>00387 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX23(23, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
326 | <a name="l00388"></a>00388 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX24(24, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
327 | <a name="l00389"></a>00389 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX25(25, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
328 | <a name="l00390"></a>00390 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX26(26, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
329 | <a name="l00391"></a>00391 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX27(27, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
330 | <a name="l00392"></a>00392 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX28(28, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
331 | <a name="l00393"></a>00393 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX29(29, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
332 | <a name="l00394"></a>00394 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX30(30, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
333 | <a name="l00395"></a>00395 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX31(31, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
334 | <a name="l00396"></a>00396 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX32(32, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
335 | <a name="l00397"></a>00397 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX33(33, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
336 | <a name="l00398"></a>00398 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX34(34, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
337 | <a name="l00399"></a>00399 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX35(35, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
338 | <a name="l00400"></a>00400 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX36(36, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
339 | <a name="l00401"></a>00401 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX37(37, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
340 | <a name="l00402"></a>00402 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX38(38, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
341 | <a name="l00403"></a>00403 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX39(39, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
342 | <a name="l00404"></a>00404 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX40(40, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
343 | <a name="l00405"></a>00405 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX41(41, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
344 | <a name="l00406"></a>00406 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX42(42, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
345 | <a name="l00407"></a>00407 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX43(43, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
346 | <a name="l00408"></a>00408 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX44(44, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
347 | <a name="l00409"></a>00409 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX45(45, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
348 | <a name="l00410"></a>00410 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX46(46, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
349 | <a name="l00411"></a>00411 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX47(47, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
350 | <a name="l00412"></a>00412 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX48(48, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
351 | <a name="l00413"></a>00413 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX49(49, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
352 | <a name="l00414"></a>00414 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX50(50, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
353 | <a name="l00415"></a>00415 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX51(51, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
354 | <a name="l00416"></a>00416 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX52(52, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
355 | <a name="l00417"></a>00417 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX53(53, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
356 | <a name="l00418"></a>00418 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX54(54, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
357 | <a name="l00419"></a>00419 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX55(55, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
358 | <a name="l00420"></a>00420 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX56(56, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
359 | <a name="l00421"></a>00421 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX57(57, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
360 | <a name="l00422"></a>00422 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX58(58, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
361 | <a name="l00423"></a>00423 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX59(59, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
362 | <a name="l00424"></a>00424 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX60(60, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
363 | <a name="l00425"></a>00425 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX61(61, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
364 | <a name="l00426"></a>00426 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX62(62, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
365 | <a name="l00427"></a>00427 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX63(63, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
366 | <a name="l00428"></a>00428 <span class="keyword">const</span> <a class="code" href="classitpp_1_1Fix__Factory.html" title="Class factory for fixed-point data types Fix and CFix.">Fix_Factory</a> SUFIX64(64, <a class="code" href="group__fixed.html#gg3a204def662e60bf9bb54d27db09450d1d95a58e7c118ad0647ea7003a0117e3" title="Unsigned.">US</a>, <a class="code" href="group__fixed.html#gg18d0ad4d7280177b761737a7b8b5c45d813f45e186a9d13fb81daea4bb065407" title="Saturation.">SAT</a>); |
---|
367 | <a name="l00430"></a>00430 |
---|
368 | <a name="l00431"></a>00431 } <span class="comment">// namespace itpp</span> |
---|
369 | <a name="l00432"></a>00432 |
---|
370 | <a name="l00433"></a>00433 <span class="preprocessor">#endif // #ifndef FIX_FACTORY_H</span> |
---|
371 | </pre></div></div> |
---|
372 | <hr size="1"><address style="text-align: right;"><small>Generated on Tue Jun 2 10:02:11 2009 for mixpp by |
---|
373 | <a href="http://www.doxygen.org/index.html"> |
---|
374 | <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address> |
---|
375 | </body> |
---|
376 | </html> |
---|