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

/freebsd-10.0-release/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.c683 HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment);
685 if (best_p->size - rounded_size >= alignment)
689 p->size = best_p->size - rounded_size;
690 p->base_offset = best_p->base_offset + rounded_size;
691 p->full_size = best_p->full_size - rounded_size;
692 p->slot = adjust_address_nv (best_p->slot, BLKmode, rounded_size);
701 best_p->size = rounded_size;
702 best_p->full_size = rounded_size;
677 HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment); local
H A Dexpr.c3479 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode));
3496 if (GET_MODE_SIZE (mode) == rounded_size)
3504 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode);
3515 GEN_INT (rounded_size),
3523 offset += (HOST_WIDE_INT) rounded_size;
3528 offset -= (HOST_WIDE_INT) rounded_size;
3537 GEN_INT (-(HOST_WIDE_INT) rounded_size));
3541 GEN_INT (rounded_size));
3468 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode)); local
H A Dbuiltins.c4249 tree addr, t, type_size, rounded_size, valist_tmp;
4300 rounded_size = round_up (type_size, align);
4302 /* Reduce rounded_size so it's sharable with the postqueue. */
4303 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue);
4307 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size))
4310 t = fold_build2 (GT_EXPR, sizetype, rounded_size, size_int (align));
4312 size_binop (MINUS_EXPR, rounded_size, type_size));
4318 t = fold_convert (TREE_TYPE (valist), rounded_size);
4248 tree addr, t, type_size, rounded_size, valist_tmp; local

Completed in 264 milliseconds