Home
last modified time | relevance | path

Searched refs:maxelt (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libcc1/
H A Dlibcp1plugin.cc3225 tree maxelt = TYPE_MAX_VALUE (TYPE_DOMAIN (type)); in plugin_build_new_expr() local
3226 tree eltype = TREE_TYPE (maxelt); in plugin_build_new_expr()
3230 bool template_dependent_p = value_dependent_expression_p (maxelt) in plugin_build_new_expr()
3231 || type_dependent_expression_p (maxelt); in plugin_build_new_expr()
/netbsd-src/external/gpl3/gcc/dist/libcc1/
H A Dlibcp1plugin.cc3066 tree maxelt = TYPE_MAX_VALUE (TYPE_DOMAIN (type)); in plugin_build_new_expr() local
3067 tree eltype = TREE_TYPE (maxelt); in plugin_build_new_expr()
3071 bool template_dependent_p = value_dependent_expression_p (maxelt) in plugin_build_new_expr()
3072 || type_dependent_expression_p (maxelt); in plugin_build_new_expr()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dexpr.cc6893 HOST_WIDE_INT maxelt = 0; in store_constructor() local
6908 maxelt = tree_to_shwi (TYPE_MAX_VALUE (domain)); in store_constructor()
6961 && (count < maxelt - minelt + 1 in store_constructor()
H A DChangeLog-200118051 (store_constructor): Initialize minelt and maxelt.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dexpr.c6545 HOST_WIDE_INT maxelt = 0; in store_constructor() local
6560 maxelt = tree_to_shwi (TYPE_MAX_VALUE (domain)); in store_constructor()
6613 && (count < maxelt - minelt + 1 in store_constructor()
/netbsd-src/external/gpl2/gawk/dist/
H A Dawk.texi14473 function maxelt(vec, i, ret)
14485 You call @code{maxelt} with one argument, which is an array name. The local
14488 to @code{maxelt}, the results would be strange. The extra space before
14493 The following program uses the @code{maxelt} function. It loads an
14494 array, calls @code{maxelt}, and then reports the maximum number in that
14498 function maxelt(vec, i, ret)
14514 print maxelt(nums)