Lines Matching defs:count
1236 * Move the swapped pages for an inode to page cache. Returns the count
2946 dget(dentry); /* Extra count - pin the dentry in core */
3019 dget(dentry); /* Extra pinning count for the created dentry */
3035 dput(dentry); /* Undo the count from "create" - this does all the work */
3099 * we just have to decrement the usage count for the target if
4058 int i, count;
4060 for (i = 0, count = 0; i < ARRAY_SIZE(values); i++) {
4063 count += sprintf(buf + count, fmt,
4066 buf[count - 1] = '\n';
4067 return count;
4071 struct kobj_attribute *attr, const char *buf, size_t count)
4076 if (count + 1 > sizeof(tmp))
4078 memcpy(tmp, buf, count);
4079 tmp[count] = '\0';
4080 if (count && tmp[count - 1] == '\n')
4081 tmp[count - 1] = '\0';
4093 return count;