HelenOS sources

BLOCK_SIZE        577 uspace/srv/fs/cdfs/cdfs_ops.c 	uint32_t blocks = node->size / BLOCK_SIZE;
BLOCK_SIZE        578 uspace/srv/fs/cdfs/cdfs_ops.c 	if ((node->size % BLOCK_SIZE) != 0)
BLOCK_SIZE        589 uspace/srv/fs/cdfs/cdfs_ops.c 		for (size_t offset = 0; offset < BLOCK_SIZE;
BLOCK_SIZE        594 uspace/srv/fs/cdfs/cdfs_ops.c 			if (offset + dir->length > BLOCK_SIZE) {
BLOCK_SIZE        618 uspace/srv/fs/cdfs/cdfs_ops.c 			    (node->lba + i) * BLOCK_SIZE + offset);
BLOCK_SIZE        651 uspace/srv/fs/cdfs/cdfs_ops.c 	cdfs_lba_t lba = index / BLOCK_SIZE;
BLOCK_SIZE        652 uspace/srv/fs/cdfs/cdfs_ops.c 	size_t offset = index % BLOCK_SIZE;
BLOCK_SIZE        811 uspace/srv/fs/cdfs/cdfs_ops.c 	*size = BLOCK_SIZE;
BLOCK_SIZE        945 uspace/srv/fs/cdfs/cdfs_ops.c 		if (block_size != BLOCK_SIZE) {
BLOCK_SIZE       1010 uspace/srv/fs/cdfs/cdfs_ops.c 	if (block_size != BLOCK_SIZE) {
BLOCK_SIZE       1113 uspace/srv/fs/cdfs/cdfs_ops.c 	rc = block_cache_init(service_id, BLOCK_SIZE, 0, CACHE_MODE_WT);
BLOCK_SIZE       1176 uspace/srv/fs/cdfs/cdfs_ops.c 	rc = block_cache_init(service_id, BLOCK_SIZE, 0, CACHE_MODE_WT);
BLOCK_SIZE       1288 uspace/srv/fs/cdfs/cdfs_ops.c 			cdfs_lba_t lba = pos / BLOCK_SIZE;
BLOCK_SIZE       1289 uspace/srv/fs/cdfs/cdfs_ops.c 			size_t offset = pos % BLOCK_SIZE;
BLOCK_SIZE       1291 uspace/srv/fs/cdfs/cdfs_ops.c 			*rbytes = min(len, BLOCK_SIZE - offset);
HelenOS homepage, sources at GitHub