Lines Matching refs:ihp
103 const char *ihp, *interpb, *interpe, *maxp, *optb, *opte, *fname; in exec_shell_imgact() local
137 ihp = &image_header[2]; in exec_shell_imgact()
144 while (ihp < maxp && ((*ihp == ' ') || (*ihp == '\t'))) in exec_shell_imgact()
145 ihp++; in exec_shell_imgact()
146 interpb = ihp; in exec_shell_imgact()
147 while (ihp < maxp && ((*ihp != ' ') && (*ihp != '\t') && (*ihp != '\n') in exec_shell_imgact()
148 && (*ihp != '\0'))) in exec_shell_imgact()
149 ihp++; in exec_shell_imgact()
150 interpe = ihp; in exec_shell_imgact()
161 while (ihp < maxp && ((*ihp == ' ') || (*ihp == '\t'))) in exec_shell_imgact()
162 ihp++; in exec_shell_imgact()
163 optb = ihp; in exec_shell_imgact()
164 while (ihp < maxp && ((*ihp != '\n') && (*ihp != '\0'))) in exec_shell_imgact()
165 ihp++; in exec_shell_imgact()
166 opte = ihp; in exec_shell_imgact()
169 while (--ihp > optb && ((*ihp == ' ') || (*ihp == '\t'))) in exec_shell_imgact()
170 opte = ihp; in exec_shell_imgact()