| 94 | |
| 95 | |
| 96 | void |
| 97 | nextPattern(StorageCacheImpl* cache, unsigned int* func, unsigned int* patt) |
| 98 | { |
| 99 | BlasFunctionInfo* bFunc = &cache->functionInfo[*func]; |
| 100 | |
| 101 | (*patt)++; |
| 102 | if (bFunc->numPatterns == *patt) { |
| 103 | (*func)++; |
| 104 | *patt = 0; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | //////////////////////////////////////////////////////////////////////////////// |
| 109 | bool |