Lines Matching refs:val
26 const char *val; /* contained in the same alloc as key */
172 unsigned long val; \
173 int err = kstrtoul(buf, 0, &val); \
176 codec->field = val; \
275 hint->key, hint->val);
310 char *key, *val;
322 /* extract key and val */
323 val = strchr(key, '=');
324 if (!val) {
328 *val++ = 0;
329 val = skip_spaces(val);
331 remove_trail_spaces(val);
338 hint->val = val;
348 hint->val = val;
421 return hint ? hint->val : NULL;
473 unsigned long val;
480 else if (kstrtoul(p, 0, &val))
483 *valp = val;
595 unsigned long val; \
596 if (!kstrtoul(buf, 0, &val)) \
597 (*codecp)->core.name = val; \
791 kfree(hint->key); /* we don't need to free hint->val */