Home | History | Annotate | Download | only in eeprom

Lines Matching defs:svp

247 	const struct strvaltabent *svp;
251 for (svp = scrsizetab; svp->sv_str != NULL; ++svp)
252 if (strcmp(svp->sv_str, arg) == 0)
254 if (svp->sv_str == NULL)
257 scsize = svp->sv_val;
264 for (svp = scrsizetab; svp->sv_str != NULL; ++svp)
265 if (svp->sv_val == scsize)
267 if (svp->sv_str == NULL) {
273 printf("%s=%s\n", ktent->kt_keyword, svp->sv_str);
285 const struct strvaltabent *svp;
289 for (svp = truthtab; svp->sv_str != NULL; ++svp)
290 if (strcmp(svp->sv_str, arg) == 0)
292 if (svp->sv_str == NULL)
295 truth = svp->sv_val;
302 for (svp = truthtab; svp->sv_str != NULL; ++svp)
303 if (svp->sv_val == truth)
305 if (svp->sv_str == NULL) {
311 printf("%s=%s\n", ktent->kt_keyword, svp->sv_str);
420 const struct strvaltabent *svp;
424 for (svp = constab; svp->sv_str != NULL; ++svp)
425 if (strcmp(svp->sv_str, arg) == 0)
427 if (svp->sv_str == NULL)
430 cons = svp->sv_val;
437 for (svp = constab; svp->sv_str != NULL; ++svp)
438 if (svp->sv_val == cons)
440 if (svp->sv_str == NULL) {
446 printf("%s=%s\n", ktent->kt_keyword, svp->sv_str);