Lines Matching refs:size
259 if ((strncmp (lp, "buffer-size", 11) == 0) && isspace (lp[11])) {
267 DBG (5, "sane_get_devices: config option \"buffer-size\" \
273 DBG (5, "sane_get_devices: config option \"buffer-size\" \
277 DBG (15, "sane_get_devices: setting \"buffer-size\" to %d\n",
450 DBG (5, "connect_fd: cannot get requested buffer size (%d/%d)\n",
725 s->opt[i].size = sizeof (SANE_Word);
979 opt->size = maxStringSize (opt->constraint.string_list);
1006 opt->size = maxStringSize (opt->constraint.string_list);
1246 * value (determined by member size in the corresponding option
2842 * Convenience method to determine longest string size in a list.
2847 size_t size, max_size = 0;
2851 size = strlen (strings[i]) + 1;
2852 if (size > max_size)
2853 max_size = size;