Lines Matching full:terminator
73 /* ignore last entry as it is the terminator */ in omfs_shrink_inode()
119 struct omfs_extent_entry *terminator; in omfs_grow_extent() local
137 /* should always have a terminator */ in omfs_grow_extent()
142 terminator = entry + extent_count - 1; in omfs_grow_extent()
144 entry = terminator-1; in omfs_grow_extent()
150 terminator->e_blocks = ~(cpu_to_be64( in omfs_grow_extent()
151 be64_to_cpu(~terminator->e_blocks) + 1)); in omfs_grow_extent()
167 /* copy terminator down an entry */ in omfs_grow_extent()
168 entry = terminator; in omfs_grow_extent()
169 terminator++; in omfs_grow_extent()
170 memcpy(terminator, entry, sizeof(struct omfs_extent_entry)); in omfs_grow_extent()
175 terminator->e_blocks = ~(cpu_to_be64( in omfs_grow_extent()
176 be64_to_cpu(~terminator->e_blocks) + (u64) new_count)); in omfs_grow_extent()
194 /* count > 1 because of terminator */ in find_block()