| 21 | #endif // TF_LITE_STATIC_MEMORY |
| 22 | |
| 23 | size_t TfLiteIntArrayGetSizeInBytes(int size) { |
| 24 | static TfLiteIntArray dummy; |
| 25 | return sizeof(dummy) + sizeof(dummy.data[0]) * size; |
| 26 | } |
| 27 | |
| 28 | int TfLiteIntArrayEqual(const TfLiteIntArray* a, const TfLiteIntArray* b) { |
| 29 | if (a == b) return 1; |
no outgoing calls
no test coverage detected