| 450 | } |
| 451 | |
| 452 | static S32 HIPLReadFloats(st_HIPLOADDATA* lddata, F32* data, S32 cnt) |
| 453 | { |
| 454 | S32 got; |
| 455 | |
| 456 | if (lddata->bypass) |
| 457 | { |
| 458 | got = HIPLBypassRead(lddata, data, cnt, sizeof(F32)); |
| 459 | } |
| 460 | else |
| 461 | { |
| 462 | got = HIPLBlockRead(lddata, data, cnt, sizeof(F32)); |
| 463 | } |
| 464 | |
| 465 | got /= sizeof(F32); |
| 466 | |
| 467 | return got; |
| 468 | } |
| 469 | |
| 470 | static S32 HIPLReadString(st_HIPLOADDATA* lddata, char* buf) |
| 471 | { |
nothing calls this directly
no test coverage detected