| 109 | } |
| 110 | |
| 111 | const char *kprintf::findTypeVLOAD(char *type) |
| 112 | { |
| 113 | size_t i; |
| 114 | |
| 115 | for(i=0; i<sizeof(vloadTypes)/sizeof(const char*); i++) |
| 116 | { |
| 117 | if (strcmp(type, vloadTypes[i]) == 0) |
| 118 | return vloadTypes[i]; |
| 119 | } |
| 120 | return NULL; |
| 121 | } |
| 122 | |
| 123 | const char *kprintf::findTypeVSTORE(char *type) |
| 124 | { |
nothing calls this directly
no outgoing calls
no test coverage detected