Line | Source Code | Coverage |
---|
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | QContiguousCacheData *QContiguousCacheData::allocateData(int size, int alignment) | - |
7 | { | - |
8 | return static_cast<QContiguousCacheData *>(qMallocAligned(size, alignment)); executed: return static_cast<QContiguousCacheData *>(qMallocAligned(size, alignment)); Execution Count:26 | 26 |
9 | } | - |
10 | | - |
11 | void QContiguousCacheData::freeData(QContiguousCacheData *data) | - |
12 | { | - |
13 | qFreeAligned(data); | - |
14 | } executed: } Execution Count:23 | 23 |
15 | | - |
16 | | - |
| | |