Lines Matching defs:level
25 * (num levels, num blocks in each level, etc.) and initialize @params.
40 int level;
88 * level to the starting block of that level. Level 'num_levels - 1' is
89 * the root and is stored first. Level 0 is the level directly "above"
93 /* Compute number of levels and the number of blocks in each level */
104 /* temporarily using level_start[] to store blocks in level */
109 /* Compute the starting block of each level */
111 for (level = (int)params->num_levels - 1; level >= 0; level--) {
112 blocks = params->level_start[level];
113 params->level_start[level] = offset;
115 level, blocks, offset);