| 1079 | #endif |
| 1080 | |
| 1081 | static void* stbi__malloc_mad3(int a, int b, int c, int add) { |
| 1082 | if (!stbi__mad3sizes_valid(a, b, c, add)) |
| 1083 | return NULL; |
| 1084 | return stbi__malloc(a * b * c + add); |
| 1085 | } |
| 1086 | |
| 1087 | #if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) |
| 1088 | static void* stbi__malloc_mad4(int a, int b, int c, int d, int add) { |
no test coverage detected