[211bd8a5] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2005 Josef Cejka
|
---|
[211bd8a5] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[231a60a] | 29 | /** @addtogroup softfloat generic
|
---|
| 30 | * @ingroup sfl
|
---|
[846848a6] | 31 | * @brief Architecture independent parts of FPU software emulation library.
|
---|
| 32 | * @{
|
---|
| 33 | */
|
---|
| 34 | /** @file
|
---|
| 35 | */
|
---|
| 36 |
|
---|
[211bd8a5] | 37 | #include<softfloat.h>
|
---|
[b5440cf] | 38 | #include<sftypes.h>
|
---|
[12c6f2d] | 39 |
|
---|
| 40 | #include<add.h>
|
---|
| 41 | #include<sub.h>
|
---|
| 42 | #include<mul.h>
|
---|
| 43 | #include<div.h>
|
---|
| 44 |
|
---|
[b5440cf] | 45 | #include<conversion.h>
|
---|
| 46 | #include<comparison.h>
|
---|
| 47 | #include<other.h>
|
---|
[211bd8a5] | 48 |
|
---|
[afffa1e] | 49 | #include<functions.h>
|
---|
| 50 |
|
---|
[b5440cf] | 51 | /* Arithmetic functions */
|
---|
[e799e3a] | 52 |
|
---|
| 53 | float __addsf3(float a, float b)
|
---|
| 54 | {
|
---|
| 55 | float32 fa, fb;
|
---|
[1266543] | 56 | fa.f = a;
|
---|
| 57 | fb.f = b;
|
---|
| 58 | if (fa.parts.sign != fb.parts.sign) {
|
---|
[b5440cf] | 59 | if (fa.parts.sign) {
|
---|
[1266543] | 60 | fa.parts.sign = 0;
|
---|
| 61 | return subFloat32(fb, fa).f;
|
---|
[b5440cf] | 62 | };
|
---|
[1266543] | 63 | fb.parts.sign = 0;
|
---|
| 64 | return subFloat32(fa, fb).f;
|
---|
[b5440cf] | 65 | }
|
---|
[1266543] | 66 | return addFloat32(fa, fb).f;
|
---|
[56a39dde] | 67 | }
|
---|
[e799e3a] | 68 |
|
---|
[a96c570] | 69 | double __adddf3(double a, double b)
|
---|
| 70 | {
|
---|
| 71 | float64 da, db;
|
---|
[1266543] | 72 | da.d = a;
|
---|
| 73 | db.d = b;
|
---|
| 74 | if (da.parts.sign != db.parts.sign) {
|
---|
[a96c570] | 75 | if (da.parts.sign) {
|
---|
[1266543] | 76 | da.parts.sign = 0;
|
---|
| 77 | return subFloat64(db, da).d;
|
---|
[a96c570] | 78 | };
|
---|
[1266543] | 79 | db.parts.sign = 0;
|
---|
| 80 | return subFloat64(da, db).d;
|
---|
[a96c570] | 81 | }
|
---|
[1266543] | 82 | return addFloat64(da, db).d;
|
---|
[a96c570] | 83 | }
|
---|
| 84 |
|
---|
[e799e3a] | 85 | float __subsf3(float a, float b)
|
---|
| 86 | {
|
---|
| 87 | float32 fa, fb;
|
---|
[1266543] | 88 | fa.f = a;
|
---|
| 89 | fb.f = b;
|
---|
| 90 | if (fa.parts.sign != fb.parts.sign) {
|
---|
| 91 | fb.parts.sign = !fb.parts.sign;
|
---|
| 92 | return addFloat32(fa, fb).f;
|
---|
[b5440cf] | 93 | }
|
---|
[1266543] | 94 | return subFloat32(fa, fb).f;
|
---|
[56a39dde] | 95 | }
|
---|
[e799e3a] | 96 |
|
---|
[a96c570] | 97 | double __subdf3(double a, double b)
|
---|
| 98 | {
|
---|
| 99 | float64 da, db;
|
---|
| 100 | da.d = a;
|
---|
| 101 | db.d = b;
|
---|
| 102 | if (da.parts.sign != db.parts.sign) {
|
---|
| 103 | db.parts.sign = !db.parts.sign;
|
---|
| 104 | return addFloat64(da, db).d;
|
---|
| 105 | }
|
---|
| 106 | return subFloat64(da, db).d;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
[3af72dc] | 109 | float __mulsf3(float a, float b)
|
---|
| 110 | {
|
---|
| 111 | float32 fa, fb;
|
---|
[1266543] | 112 | fa.f = a;
|
---|
| 113 | fb.f = b;
|
---|
[3af72dc] | 114 | return mulFloat32(fa, fb).f;
|
---|
| 115 | }
|
---|
| 116 |
|
---|
[bff16dd] | 117 | double __muldf3(double a, double b)
|
---|
| 118 | {
|
---|
| 119 | float64 da, db;
|
---|
| 120 | da.d = a;
|
---|
| 121 | db.d = b;
|
---|
| 122 | return mulFloat64(da, db).d;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
[feef1cd] | 125 | float __divsf3(float a, float b)
|
---|
| 126 | {
|
---|
| 127 | float32 fa, fb;
|
---|
[1266543] | 128 | fa.f = a;
|
---|
| 129 | fb.f = b;
|
---|
| 130 | return divFloat32(fa, fb).f;
|
---|
[56a39dde] | 131 | }
|
---|
[feef1cd] | 132 |
|
---|
[e6a40ac] | 133 | double __divdf3(double a, double b)
|
---|
| 134 | {
|
---|
| 135 | float64 da, db;
|
---|
| 136 | da.d = a;
|
---|
| 137 | db.d = b;
|
---|
| 138 | return divFloat64(da, db).d;
|
---|
| 139 | }
|
---|
| 140 |
|
---|
[e799e3a] | 141 | float __negsf2(float a)
|
---|
| 142 | {
|
---|
| 143 | float32 fa;
|
---|
[1266543] | 144 | fa.f = a;
|
---|
| 145 | fa.parts.sign = !fa.parts.sign;
|
---|
[e799e3a] | 146 | return fa.f;
|
---|
[56a39dde] | 147 | }
|
---|
[e799e3a] | 148 |
|
---|
| 149 | double __negdf2(double a)
|
---|
| 150 | {
|
---|
| 151 | float64 fa;
|
---|
[1266543] | 152 | fa.d = a;
|
---|
| 153 | fa.parts.sign = !fa.parts.sign;
|
---|
[7afd2aca] | 154 | return fa.d;
|
---|
[56a39dde] | 155 | }
|
---|
[e799e3a] | 156 |
|
---|
[b5440cf] | 157 | /* Conversion functions */
|
---|
[e799e3a] | 158 |
|
---|
[feef1cd] | 159 | double __extendsfdf2(float a)
|
---|
| 160 | {
|
---|
| 161 | float32 fa;
|
---|
| 162 | fa.f = a;
|
---|
| 163 | return convertFloat32ToFloat64(fa).d;
|
---|
[56a39dde] | 164 | }
|
---|
[feef1cd] | 165 |
|
---|
| 166 | float __truncdfsf2(double a)
|
---|
| 167 | {
|
---|
| 168 | float64 da;
|
---|
| 169 | da.d = a;
|
---|
| 170 | return convertFloat64ToFloat32(da).f;
|
---|
| 171 | }
|
---|
[56a39dde] | 172 |
|
---|
[afffa1e] | 173 | int __fixsfsi(float a)
|
---|
| 174 | {
|
---|
| 175 | float32 fa;
|
---|
| 176 | fa.f = a;
|
---|
| 177 |
|
---|
| 178 | return float32_to_int(fa);
|
---|
| 179 | }
|
---|
| 180 | int __fixdfsi(double a)
|
---|
| 181 | {
|
---|
[a82695c] | 182 | float64 da;
|
---|
| 183 | da.d = a;
|
---|
| 184 |
|
---|
| 185 | return float64_to_int(da);
|
---|
[afffa1e] | 186 | }
|
---|
| 187 |
|
---|
| 188 | long __fixsfdi(float a)
|
---|
| 189 | {
|
---|
| 190 | float32 fa;
|
---|
| 191 | fa.f = a;
|
---|
| 192 |
|
---|
| 193 | return float32_to_long(fa);
|
---|
| 194 | }
|
---|
| 195 | long __fixdfdi(double a)
|
---|
| 196 | {
|
---|
[a82695c] | 197 | float64 da;
|
---|
| 198 | da.d = a;
|
---|
| 199 |
|
---|
| 200 | return float64_to_long(da);
|
---|
[afffa1e] | 201 | }
|
---|
| 202 |
|
---|
| 203 | long long __fixsfti(float a)
|
---|
| 204 | {
|
---|
[a82695c] | 205 | float32 fa;
|
---|
| 206 | fa.f = a;
|
---|
| 207 |
|
---|
| 208 | return float32_to_longlong(fa);
|
---|
[afffa1e] | 209 | }
|
---|
| 210 | long long __fixdfti(double a)
|
---|
| 211 | {
|
---|
[a82695c] | 212 | float64 da;
|
---|
| 213 | da.d = a;
|
---|
| 214 |
|
---|
| 215 | return float64_to_longlong(da);
|
---|
[afffa1e] | 216 | }
|
---|
| 217 |
|
---|
| 218 | unsigned int __fixunssfsi(float a)
|
---|
| 219 | {
|
---|
| 220 | float32 fa;
|
---|
| 221 | fa.f = a;
|
---|
| 222 |
|
---|
| 223 | return float32_to_uint(fa);
|
---|
| 224 | }
|
---|
| 225 | unsigned int __fixunsdfsi(double a)
|
---|
| 226 | {
|
---|
[a82695c] | 227 | float64 da;
|
---|
| 228 | da.d = a;
|
---|
| 229 |
|
---|
| 230 | return float64_to_uint(da);
|
---|
[afffa1e] | 231 | }
|
---|
| 232 |
|
---|
| 233 | unsigned long __fixunssfdi(float a)
|
---|
| 234 | {
|
---|
| 235 | float32 fa;
|
---|
| 236 | fa.f = a;
|
---|
| 237 |
|
---|
[2cb202e] | 238 | return float32_to_ulong(fa);
|
---|
[afffa1e] | 239 | }
|
---|
| 240 | unsigned long __fixunsdfdi(double a)
|
---|
| 241 | {
|
---|
[a82695c] | 242 | float64 da;
|
---|
| 243 | da.d = a;
|
---|
| 244 |
|
---|
| 245 | return float64_to_ulong(da);
|
---|
[afffa1e] | 246 | }
|
---|
| 247 |
|
---|
| 248 | unsigned long long __fixunssfti(float a)
|
---|
| 249 | {
|
---|
[a82695c] | 250 | float32 fa;
|
---|
| 251 | fa.f = a;
|
---|
| 252 |
|
---|
| 253 | return float32_to_ulonglong(fa);
|
---|
[afffa1e] | 254 | }
|
---|
| 255 | unsigned long long __fixunsdfti(double a)
|
---|
| 256 | {
|
---|
[a82695c] | 257 | float64 da;
|
---|
| 258 | da.d = a;
|
---|
| 259 |
|
---|
| 260 | return float64_to_ulonglong(da);
|
---|
[afffa1e] | 261 | }
|
---|
| 262 |
|
---|
| 263 | float __floatsisf(int i)
|
---|
| 264 | {
|
---|
[1d83419] | 265 | float32 fa;
|
---|
| 266 |
|
---|
| 267 | fa = int_to_float32(i);
|
---|
| 268 | return fa.f;
|
---|
[afffa1e] | 269 | }
|
---|
| 270 | double __floatsidf(int i)
|
---|
| 271 | {
|
---|
[f37d769] | 272 | float64 da;
|
---|
| 273 |
|
---|
| 274 | da = int_to_float64(i);
|
---|
| 275 | return da.d;
|
---|
[afffa1e] | 276 | }
|
---|
| 277 |
|
---|
| 278 | float __floatdisf(long i)
|
---|
| 279 | {
|
---|
[1d83419] | 280 | float32 fa;
|
---|
| 281 |
|
---|
| 282 | fa = long_to_float32(i);
|
---|
| 283 | return fa.f;
|
---|
[afffa1e] | 284 | }
|
---|
| 285 | double __floatdidf(long i)
|
---|
| 286 | {
|
---|
[f37d769] | 287 | float64 da;
|
---|
| 288 |
|
---|
| 289 | da = long_to_float64(i);
|
---|
| 290 | return da.d;
|
---|
[afffa1e] | 291 | }
|
---|
| 292 |
|
---|
| 293 | float __floattisf(long long i)
|
---|
| 294 | {
|
---|
[1d83419] | 295 | float32 fa;
|
---|
| 296 |
|
---|
| 297 | fa = longlong_to_float32(i);
|
---|
| 298 | return fa.f;
|
---|
[afffa1e] | 299 | }
|
---|
| 300 | double __floattidf(long long i)
|
---|
| 301 | {
|
---|
[f37d769] | 302 | float64 da;
|
---|
| 303 |
|
---|
| 304 | da = longlong_to_float64(i);
|
---|
| 305 | return da.d;
|
---|
[afffa1e] | 306 | }
|
---|
| 307 |
|
---|
| 308 | float __floatunsisf(unsigned int i)
|
---|
| 309 | {
|
---|
[1d83419] | 310 | float32 fa;
|
---|
| 311 |
|
---|
| 312 | fa = uint_to_float32(i);
|
---|
| 313 | return fa.f;
|
---|
[afffa1e] | 314 | }
|
---|
| 315 | double __floatunsidf(unsigned int i)
|
---|
| 316 | {
|
---|
[f37d769] | 317 | float64 da;
|
---|
| 318 |
|
---|
| 319 | da = uint_to_float64(i);
|
---|
| 320 | return da.d;
|
---|
[afffa1e] | 321 | }
|
---|
| 322 |
|
---|
| 323 | float __floatundisf(unsigned long i)
|
---|
| 324 | {
|
---|
[1d83419] | 325 | float32 fa;
|
---|
| 326 |
|
---|
| 327 | fa = ulong_to_float32(i);
|
---|
| 328 | return fa.f;
|
---|
[afffa1e] | 329 | }
|
---|
| 330 | double __floatundidf(unsigned long i)
|
---|
| 331 | {
|
---|
[f37d769] | 332 | float64 da;
|
---|
| 333 |
|
---|
| 334 | da = ulong_to_float64(i);
|
---|
| 335 | return da.d;
|
---|
[afffa1e] | 336 | }
|
---|
| 337 |
|
---|
| 338 | float __floatuntisf(unsigned long long i)
|
---|
| 339 | {
|
---|
[1d83419] | 340 | float32 fa;
|
---|
| 341 |
|
---|
| 342 | fa = ulonglong_to_float32(i);
|
---|
| 343 | return fa.f;
|
---|
[afffa1e] | 344 | }
|
---|
| 345 | double __floatuntidf(unsigned long long i)
|
---|
| 346 | {
|
---|
[f37d769] | 347 | float64 da;
|
---|
| 348 |
|
---|
| 349 | da = ulonglong_to_float64(i);
|
---|
| 350 | return da.d;
|
---|
[afffa1e] | 351 | }
|
---|
| 352 |
|
---|
| 353 | /* Comparison functions */
|
---|
[b5440cf] | 354 | /* Comparison functions */
|
---|
[e799e3a] | 355 |
|
---|
[7e557805] | 356 | /* a<b .. -1
|
---|
| 357 | * a=b .. 0
|
---|
| 358 | * a>b .. 1
|
---|
| 359 | * */
|
---|
| 360 |
|
---|
[cf4a823] | 361 | int __cmpsf2(float a, float b)
|
---|
[7e557805] | 362 | {
|
---|
[1266543] | 363 | float32 fa, fb;
|
---|
| 364 | fa.f = a;
|
---|
| 365 | fb.f = b;
|
---|
| 366 | if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
|
---|
[7e557805] | 367 | return 1; /* no special constant for unordered - maybe signaled? */
|
---|
| 368 | };
|
---|
| 369 |
|
---|
| 370 |
|
---|
[1266543] | 371 | if (isFloat32eq(fa, fb)) {
|
---|
[7e557805] | 372 | return 0;
|
---|
| 373 | };
|
---|
| 374 |
|
---|
[1266543] | 375 | if (isFloat32lt(fa, fb)) {
|
---|
[7e557805] | 376 | return -1;
|
---|
| 377 | };
|
---|
| 378 | return 1;
|
---|
| 379 | }
|
---|
| 380 |
|
---|
| 381 | int __unordsf2(float a, float b)
|
---|
| 382 | {
|
---|
[1266543] | 383 | float32 fa, fb;
|
---|
| 384 | fa.f = a;
|
---|
| 385 | fb.f = b;
|
---|
| 386 | return ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) );
|
---|
[56a39dde] | 387 | }
|
---|
[7e557805] | 388 |
|
---|
| 389 | /**
|
---|
| 390 | * @return zero, if neither argument is a NaN and are equal
|
---|
| 391 | * */
|
---|
| 392 | int __eqsf2(float a, float b)
|
---|
| 393 | {
|
---|
[1266543] | 394 | float32 fa, fb;
|
---|
| 395 | fa.f = a;
|
---|
| 396 | fb.f = b;
|
---|
| 397 | if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
|
---|
[7e557805] | 398 | /* TODO: sigNaNs*/
|
---|
| 399 | return 1;
|
---|
| 400 | };
|
---|
[1266543] | 401 | return isFloat32eq(fa, fb) - 1;
|
---|
[56a39dde] | 402 | }
|
---|
[7e557805] | 403 |
|
---|
| 404 | /* strange behavior, but it was in gcc documentation */
|
---|
| 405 | int __nesf2(float a, float b)
|
---|
| 406 | {
|
---|
[1266543] | 407 | return __eqsf2(a, b);
|
---|
[56a39dde] | 408 | }
|
---|
[e649dfa] | 409 |
|
---|
| 410 | /* return value >= 0 if a>=b and neither is NaN */
|
---|
| 411 | int __gesf2(float a, float b)
|
---|
| 412 | {
|
---|
[1266543] | 413 | float32 fa, fb;
|
---|
| 414 | fa.f = a;
|
---|
| 415 | fb.f = b;
|
---|
| 416 | if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
|
---|
[e649dfa] | 417 | /* TODO: sigNaNs*/
|
---|
[cf4a823] | 418 | return -1;
|
---|
[e649dfa] | 419 | };
|
---|
| 420 |
|
---|
[1266543] | 421 | if (isFloat32eq(fa, fb)) {
|
---|
[e649dfa] | 422 | return 0;
|
---|
| 423 | };
|
---|
| 424 |
|
---|
[1266543] | 425 | if (isFloat32gt(fa, fb)) {
|
---|
[e649dfa] | 426 | return 1;
|
---|
| 427 | };
|
---|
| 428 |
|
---|
| 429 | return -1;
|
---|
| 430 | }
|
---|
| 431 |
|
---|
| 432 | /** Return negative value, if a<b and neither is NaN*/
|
---|
| 433 | int __ltsf2(float a, float b)
|
---|
| 434 | {
|
---|
[1266543] | 435 | float32 fa, fb;
|
---|
| 436 | fa.f = a;
|
---|
| 437 | fb.f = b;
|
---|
| 438 | if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
|
---|
[e649dfa] | 439 | /* TODO: sigNaNs*/
|
---|
| 440 | return 1;
|
---|
| 441 | };
|
---|
| 442 | if (isFloat32lt(fa, fb)) {
|
---|
| 443 | return -1;
|
---|
| 444 | };
|
---|
| 445 | return 0;
|
---|
| 446 | }
|
---|
| 447 |
|
---|
| 448 | /* return value <= 0 if a<=b and neither is NaN */
|
---|
| 449 | int __lesf2(float a, float b)
|
---|
| 450 | {
|
---|
[1266543] | 451 | float32 fa, fb;
|
---|
| 452 | fa.f = a;
|
---|
| 453 | fb.f = b;
|
---|
| 454 | if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
|
---|
[e649dfa] | 455 | /* TODO: sigNaNs*/
|
---|
| 456 | return 1;
|
---|
| 457 | };
|
---|
| 458 |
|
---|
[1266543] | 459 | if (isFloat32eq(fa, fb)) {
|
---|
[e649dfa] | 460 | return 0;
|
---|
| 461 | };
|
---|
| 462 |
|
---|
[1266543] | 463 | if (isFloat32lt(fa, fb)) {
|
---|
[e649dfa] | 464 | return -1;
|
---|
| 465 | };
|
---|
| 466 |
|
---|
| 467 | return 1;
|
---|
| 468 | }
|
---|
| 469 |
|
---|
| 470 | /** Return positive value, if a>b and neither is NaN*/
|
---|
[cf4a823] | 471 | int __gtsf2(float a, float b)
|
---|
[e649dfa] | 472 | {
|
---|
[1266543] | 473 | float32 fa, fb;
|
---|
| 474 | fa.f = a;
|
---|
| 475 | fb.f = b;
|
---|
| 476 | if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
|
---|
[e649dfa] | 477 | /* TODO: sigNaNs*/
|
---|
[cf4a823] | 478 | return -1;
|
---|
[e649dfa] | 479 | };
|
---|
| 480 | if (isFloat32gt(fa, fb)) {
|
---|
| 481 | return 1;
|
---|
| 482 | };
|
---|
| 483 | return 0;
|
---|
| 484 | }
|
---|
| 485 |
|
---|
[b5440cf] | 486 | /* Other functions */
|
---|
[e799e3a] | 487 |
|
---|
[56a39dde] | 488 | float __powisf2(float a, int b)
|
---|
| 489 | {
|
---|
[1266543] | 490 | /* TODO: */
|
---|
[e591928] | 491 | float32 fa;
|
---|
| 492 | fa.binary = FLOAT32_NAN;
|
---|
| 493 | return fa.f;
|
---|
[56a39dde] | 494 | }
|
---|
| 495 |
|
---|
[846848a6] | 496 |
|
---|
[231a60a] | 497 | /** @}
|
---|
[846848a6] | 498 | */
|
---|
| 499 |
|
---|