| 97 | } |
| 98 | |
| 99 | const char * kprintf::findVectorWidthType(char *type) |
| 100 | { |
| 101 | size_t i; |
| 102 | |
| 103 | for(i=0; i<sizeof(vectorWidthTypes)/sizeof(const char*); i++) |
| 104 | { |
| 105 | if (strcmp(type, vectorWidthTypes[i]) == 0) |
| 106 | return vectorWidthTypes[i]; |
| 107 | } |
| 108 | return NULL; |
| 109 | } |
| 110 | |
| 111 | const char *kprintf::findTypeVLOAD(char *type) |
| 112 | { |
nothing calls this directly
no outgoing calls
no test coverage detected