Searched refs:new_max (Results 1 – 9 of 9) sorted by relevance
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
H A D | crash49.C | 21 virtual void realloc(int new_max) { in realloc() argument 22 _max = new_max; in realloc()
|
/openbsd/lib/libevent/ |
H A D | signal.c | 114 int new_max = evsignal + 1; in _evsignal_set_handler() local 117 p = reallocarray(sig->sh_old, new_max, sizeof(*sig->sh_old)); in _evsignal_set_handler() 124 0, (new_max - sig->sh_old_max) * sizeof(*sig->sh_old)); in _evsignal_set_handler() 126 sig->sh_old_max = new_max; in _evsignal_set_handler()
|
/openbsd/gnu/usr.bin/perl/ |
H A D | scope.c | 99 const IV new_max = GROW(cxstack_max); in Perl_cxinc() local 100 Renew(cxstack, new_max + 1, PERL_CONTEXT); in Perl_cxinc() 101 cxstack_max = new_max; in Perl_cxinc() 121 const IV new_max = GROW(PL_scopestack_max); in Perl_push_scope() local 122 Renew(PL_scopestack, new_max, I32); in Perl_push_scope() 124 Renew(PL_scopestack_name, new_max, const char*); in Perl_push_scope() 126 PL_scopestack_max = new_max; in Perl_push_scope() 191 if (new_max > I32_MAX || new_max < PL_savestack_max) { in Perl_savestack_grow_cnt() 195 new_max = new_floor; in Perl_savestack_grow_cnt() 206 Renew(PL_savestack, new_max + SS_MAXPUSH + 1, ANY); in Perl_savestack_grow_cnt() [all …]
|
H A D | invlist_inline.h | 99 S_invlist_extend(pTHX_ SV* const invlist, const UV new_max) in S_invlist_extend() argument 109 SvGROW((SV *)invlist, TO_INTERNAL_SIZE(new_max + 1)); in S_invlist_extend()
|
H A D | hv.h | 32 #define LARGE_HASH_HEURISTIC(hv,new_max) S_large_hash_heuristic(aTHX_ (hv), (new_max)) argument 34 #define LARGE_HASH_HEURISTIC(hv,new_max) 0 argument
|
H A D | perlio.c | 2253 const int new_max = 16 + (new_fd & ~15); in S_more_refcounted_fds() local 2261 old_max, new_fd, new_max) ); in S_more_refcounted_fds() 2267 assert (new_max > new_fd); in S_more_refcounted_fds() 2271 new_array = (int*) realloc(PL_perlio_fd_refcnt, new_max * sizeof(int)); in S_more_refcounted_fds() 2278 PL_perlio_fd_refcnt_size = new_max; in S_more_refcounted_fds() 2283 new_max - old_max) ); in S_more_refcounted_fds() 2285 Zero(new_array + old_max, new_max - old_max, int); in S_more_refcounted_fds()
|
/openbsd/sys/net/ |
H A D | pf_if.c | 642 int new_max = pfi_buffer_max * 2; in pfi_address_add() local 644 if (new_max > PFI_BUFFER_MAX) { in pfi_address_add() 650 p = mallocarray(new_max, sizeof(*pfi_buffer), PFI_MTYPE, in pfi_address_add() 662 pfi_buffer_max = new_max; in pfi_address_add()
|
/openbsd/gnu/gcc/gcc/ |
H A D | stor-layout.c | 1990 tree orig_max, new_max; in set_sizetype() local 1995 new_max = build_int_cst_wide (sizetype, in set_sizetype() 2001 new_max = force_fit_type (new_max, 0, 0, 0); in set_sizetype() 2002 TYPE_MAX_VALUE (sizetype) = new_max; in set_sizetype()
|
H A D | tree-vrp.c | 2084 tree new_min, new_max, orig_min, orig_max; in extract_range_from_unary_expr() local 2101 new_max = fold_convert (outer_type, orig_max); in extract_range_from_unary_expr() 2107 && is_gimple_val (new_max) in extract_range_from_unary_expr() 2109 && tree_int_cst_equal (new_max, orig_max) in extract_range_from_unary_expr() 2111 || !is_overflow_infinity (new_max)) in extract_range_from_unary_expr() 2112 && compare_values (new_min, new_max) <= 0 in extract_range_from_unary_expr() 2113 && compare_values (new_min, new_max) >= -1) in extract_range_from_unary_expr() 2115 set_value_range (vr, VR_RANGE, new_min, new_max, vr->equiv); in extract_range_from_unary_expr()
|