HelenOS sources

extent             92 uspace/app/sbi/src/builtin/bi_task.c 	dim = array->extent[0];
extent            302 uspace/app/sbi/src/rdata.c 	array->extent = calloc(rank, sizeof(int));
extent            462 uspace/app/sbi/src/rdata.c 		dim = dim * array->extent[didx];
extent           1161 uspace/app/sbi/src/rdata.c 		n_elems = n_elems * array_v->extent[d];
extent           1162 uspace/app/sbi/src/rdata.c 		array_v->extent[d] = 0;
extent           1173 uspace/app/sbi/src/rdata.c 	free(array_v->extent);
extent             95 uspace/app/sbi/src/rdata_t.h 	int *extent;
extent           1286 uspace/app/sbi/src/run.c 		array->extent[0] = n_vargs;
extent           1477 uspace/app/sbi/src/run_expr.c 		array->extent[i] = iextent;
extent           1478 uspace/app/sbi/src/run_expr.c 		length = length * array->extent[i];
extent           2333 uspace/app/sbi/src/run_expr.c 		if (rc != EOK || arg_val < 0 || arg_val >= array->extent[i]) {
extent           2347 uspace/app/sbi/src/run_expr.c 		elem_index = elem_index * array->extent[i] + arg_val;
extent            288 uspace/app/sbi/src/tdata.c 	stree_expr_t *extent;
extent            301 uspace/app/sbi/src/tdata.c 		extent = list_node_data(ext_n, stree_expr_t *);
extent            302 uspace/app/sbi/src/tdata.c 		list_append(&tnew->extents, extent);
extent            826 uspace/lib/cpp/include/__bits/type_traits/type_traits.hpp     struct extent<T[], I>: extent<T, I - 1>
extent            834 uspace/lib/cpp/include/__bits/type_traits/type_traits.hpp     struct extent<T[N], I>: extent<T, I - 1>
extent            535 uspace/lib/ext4/include/ext4/types.h 	ext4_extent_t *extent;
extent             53 uspace/lib/ext4/src/extent.c uint32_t ext4_extent_get_first_block(ext4_extent_t *extent)
extent             55 uspace/lib/ext4/src/extent.c 	return uint32_t_le2host(extent->first_block);
extent             64 uspace/lib/ext4/src/extent.c void ext4_extent_set_first_block(ext4_extent_t *extent, uint32_t iblock)
extent             66 uspace/lib/ext4/src/extent.c 	extent->first_block = host2uint32_t_le(iblock);
extent             76 uspace/lib/ext4/src/extent.c uint16_t ext4_extent_get_block_count(ext4_extent_t *extent)
extent             78 uspace/lib/ext4/src/extent.c 	return uint16_t_le2host(extent->block_count);
extent             87 uspace/lib/ext4/src/extent.c void ext4_extent_set_block_count(ext4_extent_t *extent, uint16_t count)
extent             89 uspace/lib/ext4/src/extent.c 	extent->block_count = host2uint16_t_le(count);
extent             99 uspace/lib/ext4/src/extent.c uint64_t ext4_extent_get_start(ext4_extent_t *extent)
extent            101 uspace/lib/ext4/src/extent.c 	return ((uint64_t)uint16_t_le2host(extent->start_hi)) << 32 |
extent            102 uspace/lib/ext4/src/extent.c 	    ((uint64_t)uint32_t_le2host(extent->start_lo));
extent            111 uspace/lib/ext4/src/extent.c void ext4_extent_set_start(ext4_extent_t *extent, uint64_t fblock)
extent            113 uspace/lib/ext4/src/extent.c 	extent->start_lo = host2uint32_t_le((fblock << 32) >> 32);
extent            114 uspace/lib/ext4/src/extent.c 	extent->start_hi = host2uint16_t_le((uint16_t)(fblock >> 32));
extent            329 uspace/lib/ext4/src/extent.c     ext4_extent_t **extent, uint32_t iblock)
extent            340 uspace/lib/ext4/src/extent.c 		*extent = NULL;
extent            360 uspace/lib/ext4/src/extent.c 	*extent = l - 1;
extent            422 uspace/lib/ext4/src/extent.c 	ext4_extent_t *extent = NULL;
extent            423 uspace/lib/ext4/src/extent.c 	ext4_extent_binsearch(header, &extent, iblock);
extent            426 uspace/lib/ext4/src/extent.c 	if (extent == NULL) {
extent            431 uspace/lib/ext4/src/extent.c 		uint32_t first = ext4_extent_get_first_block(extent);
extent            432 uspace/lib/ext4/src/extent.c 		phys_block = ext4_extent_get_start(extent) + iblock - first;
extent            485 uspace/lib/ext4/src/extent.c 		tmp_path[pos].extent = NULL;
extent            506 uspace/lib/ext4/src/extent.c 	tmp_path[pos].extent = NULL;
extent            510 uspace/lib/ext4/src/extent.c 	ext4_extent_binsearch(tmp_path[pos].header, &tmp_path[pos].extent, iblock);
extent            545 uspace/lib/ext4/src/extent.c     ext4_extent_t *extent)
extent            548 uspace/lib/ext4/src/extent.c 	uint64_t start = ext4_extent_get_start(extent);
extent            549 uspace/lib/ext4/src/extent.c 	uint16_t block_count = ext4_extent_get_block_count(extent);
extent            634 uspace/lib/ext4/src/extent.c 	assert(path_ptr->extent != NULL);
extent            638 uspace/lib/ext4/src/extent.c 	    ext4_extent_get_first_block(path_ptr->extent);
extent            640 uspace/lib/ext4/src/extent.c 	    ext4_extent_get_start(path_ptr->extent) + iblock_from - first_iblock;
extent            642 uspace/lib/ext4/src/extent.c 	uint16_t block_count = ext4_extent_get_block_count(path_ptr->extent);
extent            645 uspace/lib/ext4/src/extent.c 	    (first_fblock - ext4_extent_get_start(path_ptr->extent));
extent            654 uspace/lib/ext4/src/extent.c 	ext4_extent_set_block_count(path_ptr->extent, block_count);
extent            659 uspace/lib/ext4/src/extent.c 	ext4_extent_t *tmp_ext = path_ptr->extent + 1;
extent            818 uspace/lib/ext4/src/extent.c 				path_ptr->extent = EXT4_EXTENT_FIRST(path_ptr->header);
extent            819 uspace/lib/ext4/src/extent.c 				ext4_extent_set_first_block(path_ptr->extent, iblock);
extent            842 uspace/lib/ext4/src/extent.c 				path_ptr->extent = EXT4_EXTENT_FIRST(path_ptr->header) + entries;
extent            843 uspace/lib/ext4/src/extent.c 				ext4_extent_set_first_block(path_ptr->extent, iblock);
extent            905 uspace/lib/ext4/src/extent.c 			old_root->extent = NULL;
extent            909 uspace/lib/ext4/src/extent.c 			old_root->extent = EXT4_EXTENT_FIRST(old_root->header) + entries;
extent            910 uspace/lib/ext4/src/extent.c 			ext4_extent_set_first_block(old_root->extent, iblock);
extent            923 uspace/lib/ext4/src/extent.c 		new_root->extent = NULL;
extent            940 uspace/lib/ext4/src/extent.c 			path->extent = EXT4_EXTENT_FIRST(path->header) + entries;
extent            941 uspace/lib/ext4/src/extent.c 			ext4_extent_set_first_block(path->extent, iblock);
extent            993 uspace/lib/ext4/src/extent.c 	if (path_ptr->extent == NULL)
extent            996 uspace/lib/ext4/src/extent.c 	uint16_t block_count = ext4_extent_get_block_count(path_ptr->extent);
extent           1009 uspace/lib/ext4/src/extent.c 			ext4_extent_set_first_block(path_ptr->extent, new_block_idx);
extent           1010 uspace/lib/ext4/src/extent.c 			ext4_extent_set_start(path_ptr->extent, phys_block);
extent           1011 uspace/lib/ext4/src/extent.c 			ext4_extent_set_block_count(path_ptr->extent, 1);
extent           1024 uspace/lib/ext4/src/extent.c 			phys_block = ext4_extent_get_start(path_ptr->extent);
extent           1025 uspace/lib/ext4/src/extent.c 			phys_block += ext4_extent_get_block_count(path_ptr->extent);
extent           1039 uspace/lib/ext4/src/extent.c 			ext4_extent_set_block_count(path_ptr->extent, block_count + 1);
extent           1073 uspace/lib/ext4/src/extent.c 	ext4_extent_set_block_count(path_ptr->extent, 1);
extent           1074 uspace/lib/ext4/src/extent.c 	ext4_extent_set_first_block(path_ptr->extent, new_block_idx);
extent           1075 uspace/lib/ext4/src/extent.c 	ext4_extent_set_start(path_ptr->extent, phys_block);
HelenOS homepage, sources at GitHub