Searched refs:s_alloc (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/lgpl3/gmp/dist/scanf/ |
H A D | doscan.c | 208 ASSERT (s_upto <= s_alloc); \ 209 if (s_upto >= s_alloc) \ 211 size_t s_alloc_new = s_alloc + S_ALLOC_STEP; \ 212 s = __GMP_REALLOCATE_FUNC_TYPE (s, s_alloc, s_alloc_new, char); \ 213 s_alloc = s_alloc_new; \ 225 size_t s_upto, s_alloc, hexexp; in gmpscan() local 242 s_alloc = S_ALLOC_STEP; in gmpscan() 243 s = __GMP_ALLOCATE_FUNC_TYPE (s_alloc, char); in gmpscan() 430 (*__gmp_free_func) (s, s_alloc); in gmpscan()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/ |
H A D | cond_dealtor.hpp | 67 s_alloc.deallocate(m_p_e, 1); in ~cond_dealtor() 77 static entry_allocator s_alloc; member in __gnu_pbds::detail::cond_dealtor 82 cond_dealtor<Entry, _Alloc>::s_alloc; member in __gnu_pbds::detail::cond_dealtor<Entry, _Alloc>
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/ |
H A D | cond_dealtor.hpp | 67 s_alloc.deallocate(m_p_e, 1); in ~cond_dealtor() 77 static entry_allocator s_alloc; member in __gnu_pbds::detail::cond_dealtor 82 cond_dealtor<Entry, _Alloc>::s_alloc; member in __gnu_pbds::detail::cond_dealtor<Entry, _Alloc>
|
/netbsd-src/external/mit/isl/dist/imath/ |
H A D | imath.c | 213 static mp_digit *s_alloc(mp_size num); 397 z->digits = s_alloc(prec); in mp_int_init_size() 689 if ((out = s_alloc(p)) == NULL) return MP_MEMORY; in mp_int_mul() 748 if ((out = s_alloc(p)) == NULL) return MP_MEMORY; in mp_int_sqr() 1690 static mp_digit *s_alloc(mp_size num) { in s_alloc() function 1702 mp_digit *new = s_alloc(nsize); in s_realloc() 1723 if ((tmp = s_alloc(nsize)) == NULL) return false; in s_pad() 1903 if ((t1 = s_alloc(4 * buf_size)) == NULL) return 0; in s_kmul() 1979 if ((t1 = s_alloc(4 * buf_size)) == NULL) return 0; in s_ksqr()
|