HelenOS sources

BLOCK_SIZE        576 uspace/srv/fs/cdfs/cdfs_ops.c 	uint32_t blocks = node->size / BLOCK_SIZE;
BLOCK_SIZE        577 uspace/srv/fs/cdfs/cdfs_ops.c 	if ((node->size % BLOCK_SIZE) != 0)
BLOCK_SIZE        588 uspace/srv/fs/cdfs/cdfs_ops.c 		for (size_t offset = 0; offset < BLOCK_SIZE;
BLOCK_SIZE        593 uspace/srv/fs/cdfs/cdfs_ops.c 			if (offset + dir->length > BLOCK_SIZE) {
BLOCK_SIZE        617 uspace/srv/fs/cdfs/cdfs_ops.c 			    (node->lba + i) * BLOCK_SIZE + offset);
BLOCK_SIZE        650 uspace/srv/fs/cdfs/cdfs_ops.c 	cdfs_lba_t lba = index / BLOCK_SIZE;
BLOCK_SIZE        651 uspace/srv/fs/cdfs/cdfs_ops.c 	size_t offset = index % BLOCK_SIZE;
BLOCK_SIZE        810 uspace/srv/fs/cdfs/cdfs_ops.c 	*size = BLOCK_SIZE;
BLOCK_SIZE        944 uspace/srv/fs/cdfs/cdfs_ops.c 		if (block_size != BLOCK_SIZE) {
BLOCK_SIZE       1009 uspace/srv/fs/cdfs/cdfs_ops.c 	if (block_size != BLOCK_SIZE) {
BLOCK_SIZE       1112 uspace/srv/fs/cdfs/cdfs_ops.c 	rc = block_cache_init(service_id, BLOCK_SIZE, 0, CACHE_MODE_WT);
BLOCK_SIZE       1175 uspace/srv/fs/cdfs/cdfs_ops.c 	rc = block_cache_init(service_id, BLOCK_SIZE, 0, CACHE_MODE_WT);
BLOCK_SIZE       1287 uspace/srv/fs/cdfs/cdfs_ops.c 			cdfs_lba_t lba = pos / BLOCK_SIZE;
BLOCK_SIZE       1288 uspace/srv/fs/cdfs/cdfs_ops.c 			size_t offset = pos % BLOCK_SIZE;
BLOCK_SIZE       1290 uspace/srv/fs/cdfs/cdfs_ops.c 			*rbytes = min(len, BLOCK_SIZE - offset);
HelenOS homepage, sources at GitHub