Lines Matching refs:count
36 static int get_integer(const char *buf, size_t count) in get_integer() argument
41 if (count == 0) in get_integer()
43 count = min_t(size_t, count, 10); in get_integer()
44 memcpy(tmp, buf, count); in get_integer()
55 ssize_t count = 0; in b43_attr_interfmode_show() local
69 count = in b43_attr_interfmode_show()
74 count = in b43_attr_interfmode_show()
79 count = in b43_attr_interfmode_show()
89 return count; in b43_attr_interfmode_show()
94 const char *buf, size_t count) in b43_attr_interfmode_store() argument
103 mode = get_integer(buf, count); in b43_attr_interfmode_store()
135 return err ? err : count; in b43_attr_interfmode_store()