| 121 | } |
| 122 | |
| 123 | const char *kprintf::findTypeVSTORE(char *type) |
| 124 | { |
| 125 | size_t i; |
| 126 | |
| 127 | for(i=0; i<sizeof(vstoreTypes)/sizeof(const char*); i++) |
| 128 | { |
| 129 | if (strcmp(type, vstoreTypes[i]) == 0) |
| 130 | return vstoreTypes[i]; |
| 131 | } |
| 132 | return NULL; |
| 133 | } |
| 134 | |
| 135 | void kprintf::generateVecSuffix(char *p, int n) |
| 136 | { |
nothing calls this directly
no outgoing calls
no test coverage detected