Lines Matching defs:size
70 * Create a new, unique, anonymous file of the given size, and
73 * the given size at offset zero.
85 * for the file at the given size. If disk space is insufficient, errno
89 static int createAnonymousFile(off_t size)
133 ret = ftruncate(fd, size);
135 ret = posix_fallocate(fd, 0, size);
155 "Wayland: Failed to create buffer file of size %d: %s",
412 // Only change the framebuffer size if the scale changed.
1319 size_t size = 0;
1326 if (requiredSize > size)
1337 size = requiredSize;
1498 // requires us to load a different theme for each size.
1638 uint32_t size)
1654 mapStr = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
1664 munmap(mapStr, size);