Lines Matching defs:szp
124 int meta_sp_parsesize(char *s, sp_ext_length_t *szp);
125 static int meta_sp_parsesizestring(char *s, sp_ext_length_t *szp);
308 * OUTPUT: *szp - disk block count (0 for "all")
322 meta_sp_parsesize(char *s, sp_ext_length_t *szp)
324 if (s == NULL || szp == NULL) {
330 *szp = 0;
334 return (meta_sp_parsesizestring(s, szp));
340 * OUTPUT: *szp - disk block count
351 meta_sp_parsesizestring(char *s, sp_ext_length_t *szp)
356 if (s == NULL || szp == NULL) {
407 *szp = len;