Lines Matching refs:p
164 char *p; in kstrndup_noeol() local
167 p = strchr(s, '\n'); in kstrndup_noeol()
168 if (p) in kstrndup_noeol()
169 *p = 0; in kstrndup_noeol()
303 char *p; in remove_trail_spaces() local
306 p = str + strlen(str) - 1; in remove_trail_spaces()
307 for (; isspace(*p); p--) { in remove_trail_spaces()
308 *p = 0; in remove_trail_spaces()
309 if (p == str) in remove_trail_spaces()
432 const char *p; in snd_hda_get_bool_hint() local
436 p = snd_hda_get_hint(codec, key); in snd_hda_get_bool_hint()
437 if (!p || !*p) in snd_hda_get_bool_hint()
440 switch (toupper(*p)) { in snd_hda_get_bool_hint()
458 const char *p; in snd_hda_get_int_hint() local
463 p = snd_hda_get_hint(codec, key); in snd_hda_get_int_hint()
464 if (!p) in snd_hda_get_int_hint()
466 else if (kstrtoul(p, 0, &val)) in snd_hda_get_int_hint()
666 const char *p = *fw_data_p; in get_line_from_fw() local
668 while (isspace(*p) && fw_size) { in get_line_from_fw()
669 p++; in get_line_from_fw()
676 if (!*p) in get_line_from_fw()
678 if (*p == '\n') { in get_line_from_fw()
679 p++; in get_line_from_fw()
684 *buf++ = *p++; in get_line_from_fw()
688 *fw_data_p = p; in get_line_from_fw()