Home | History | Annotate | Download | only in fortran

Lines Matching defs:lbound

1100   tree lbound, ubound, tmp;
1156 lbound = gfc_conv_descriptor_lbound_get (vector, gfc_rank_cst[0]);
1158 nvec = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2367 lbound, ubound, extent, ml;
2495 lbound = gfc_conv_descriptor_lbound_get (desc,
2498 lbound = fold_convert (type, lbound);
2499 tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp, lbound);
2536 lbound = gfc_conv_descriptor_lbound_get (desc, loop_var);
2538 extent = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2575 lbound = gfc_conv_descriptor_lbound_get (desc,
2579 lbound = fold_convert (type, lbound);
2584 tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp, lbound);
2588 m, lbound));
2673 tree num_images, cond, coindex, type, lbound, ubound, desc, subdesc,
2701 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[rank+corank-1]);
2705 lbound);
2709 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2714 lbound);
2732 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[rank+corank-1]);
2735 lbound);
2742 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2744 extent = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2756 /* coindex -= lbound(codim). */
2757 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2759 gfc_array_index_type, coindex, lbound);
2938 tree lbound;
2993 (op == GFC_ISYM_UBOUND) ? "UBOUND" : "LBOUND",
3017 /* Take care of the lbound shift for assumed-rank arrays that are
3018 nonallocatable and nonpointers. Those have a lbound of 1. */
3028 lbound = gfc_conv_descriptor_lbound_get (desc, bound);
3030 gfc_array_index_type, ubound, lbound);
3034 /* 13.14.53: Result value for LBOUND
3037 whole array or array structure component, LBOUND(ARRAY, DIM)
3039 component, LBOUND(ARRAY, DIM) has the value:
3083 lbound, gfc_index_one_node);
3262 /* ubound = lbound + num_images() - 1. */
11183 /* The LBOUND, LCOBOUND, UBOUND, UCOBOUND, and SHAPE intrinsics with
12087 tree desc, tmp, extent, lbound, ubound;
12111 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
12113 TREE_TYPE (lbound), argse.expr, lbound);
12121 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);