Lines Matching defs:left
188 struct user_mem_map *left = &user_mem_maps->maps[i];
191 if (user_mem_map_cmp(left, right) == 0) {
192 memset(left, 0, sizeof(*left));
207 struct user_mem_map *left = &user_mem_maps->maps[i];
211 if (is_null_map(left)) {
212 memcpy(left, right, sizeof(*left));
221 merge_map(struct user_mem_map *left, struct user_mem_map *right)
224 if (memcmp(left, right, sizeof(struct user_mem_map)) == 0)
227 if (left->addr + left->len != right->addr)
229 if (left->iova + left->len != right->iova)
231 if (left->chunk != right->chunk)
233 left->len += right->len;