Lines Matching defs:size
46 * large (e.g. 64k) hash size. 256 will be sufficient.
654 u32 size; /* Memory size allocated for this entry. */
1002 int size);
1005 int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
1013 int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
1044 void *tomoyo_commit_ok(void *data, const unsigned int size);
1059 void tomoyo_print_ip(char *buf, const unsigned int size,
1285 * @size: Size to be rounded up.
1287 * Returns @size.
1289 * Since SLOB does not round up, this function simply returns @size.
1291 static inline int tomoyo_round2(size_t size)
1293 return size;
1301 * @size: Size to be rounded up.
1303 * Returns rounded size.
1308 static inline int tomoyo_round2(size_t size)
1315 if (!size)
1317 while (size > bsize)