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