Searched refs:rounded_size (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/gcc/
H A Drecog.c1249 unsigned int rounded_size = GET_MODE_SIZE (mode);
1252 rounded_size = PUSH_ROUNDING (rounded_size);
1263 if (rounded_size == GET_MODE_SIZE (mode))
1275 || INTVAL (XEXP (XEXP (op, 1), 1)) != - (int) rounded_size
1277 || INTVAL (XEXP (XEXP (op, 1), 1)) != (int) rounded_size
1242 unsigned int rounded_size = GET_MODE_SIZE (mode); local
H A Dfunction.c689 HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment);
691 if (best_p->size - rounded_size >= alignment)
695 p->size = best_p->size - rounded_size;
696 p->base_offset = best_p->base_offset + rounded_size;
697 p->full_size = best_p->full_size - rounded_size;
698 p->slot = adjust_address_nv (best_p->slot, BLKmode, rounded_size);
707 best_p->size = rounded_size;
708 best_p->full_size = rounded_size;
683 HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment); local
H A Dexpr.c3481 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode));
3498 if (GET_MODE_SIZE (mode) == rounded_size)
3506 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode);
3517 GEN_INT (rounded_size),
3525 offset += (HOST_WIDE_INT) rounded_size;
3530 offset -= (HOST_WIDE_INT) rounded_size;
3539 GEN_INT (-(HOST_WIDE_INT) rounded_size));
3543 GEN_INT (rounded_size));
3470 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode)); local
H A Dbuiltins.c4247 tree addr, t, type_size, rounded_size, valist_tmp;
4298 rounded_size = round_up (type_size, align);
4300 /* Reduce rounded_size so it's sharable with the postqueue. */
4301 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue);
4305 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size))
4308 t = fold_build2 (GT_EXPR, sizetype, rounded_size, size_int (align));
4310 size_binop (MINUS_EXPR, rounded_size, type_size));
4316 t = fold_convert (TREE_TYPE (valist), rounded_size);
4246 tree addr, t, type_size, rounded_size, valist_tmp; local
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp441 uptr rounded_size = RoundUpTo(Max(size, kChunkHeader2Size), alignment); local
442 uptr needed_size = rounded_size + rz_size;

Completed in 1489 milliseconds