to_alloc           37 opal/dss/dss_internal_functions.c     size_t required, to_alloc;
to_alloc           48 opal/dss/dss_internal_functions.c         to_alloc = ((required + opal_dss_threshold_size - 1)
to_alloc           51 opal/dss/dss_internal_functions.c         to_alloc = buffer->bytes_allocated;
to_alloc           52 opal/dss/dss_internal_functions.c         if(0 == to_alloc) {
to_alloc           53 opal/dss/dss_internal_functions.c             to_alloc = opal_dss_initial_size;
to_alloc           55 opal/dss/dss_internal_functions.c         while(to_alloc < required) {
to_alloc           56 opal/dss/dss_internal_functions.c             to_alloc <<= 1;
to_alloc           64 opal/dss/dss_internal_functions.c         buffer->base_ptr = (char*)realloc(buffer->base_ptr, to_alloc);
to_alloc           69 opal/dss/dss_internal_functions.c         buffer->base_ptr = (char*)malloc(to_alloc);
to_alloc           77 opal/dss/dss_internal_functions.c     buffer->bytes_allocated = to_alloc;
to_alloc          158 opal/mca/event/libevent2022/libevent/buffer.c 	size_t to_alloc;
to_alloc          167 opal/mca/event/libevent2022/libevent/buffer.c 		to_alloc = MIN_BUFFER_SIZE;
to_alloc          168 opal/mca/event/libevent2022/libevent/buffer.c 		while (to_alloc < size) {
to_alloc          169 opal/mca/event/libevent2022/libevent/buffer.c 			to_alloc <<= 1;
to_alloc          172 opal/mca/event/libevent2022/libevent/buffer.c 		to_alloc = size;
to_alloc          176 opal/mca/event/libevent2022/libevent/buffer.c 	if ((chain = mm_malloc(to_alloc)) == NULL)
to_alloc          181 opal/mca/event/libevent2022/libevent/buffer.c 	chain->buffer_len = to_alloc - EVBUFFER_CHAIN_SIZE;
to_alloc         1548 opal/mca/event/libevent2022/libevent/buffer.c 	size_t remain, to_alloc;
to_alloc         1603 opal/mca/event/libevent2022/libevent/buffer.c 	to_alloc = chain->buffer_len;
to_alloc         1604 opal/mca/event/libevent2022/libevent/buffer.c 	if (to_alloc <= EVBUFFER_CHAIN_MAX_AUTO_SIZE/2)
to_alloc         1605 opal/mca/event/libevent2022/libevent/buffer.c 		to_alloc <<= 1;
to_alloc         1606 opal/mca/event/libevent2022/libevent/buffer.c 	if (datlen > to_alloc)
to_alloc         1607 opal/mca/event/libevent2022/libevent/buffer.c 		to_alloc = datlen;
to_alloc         1608 opal/mca/event/libevent2022/libevent/buffer.c 	tmp = evbuffer_chain_new(to_alloc);
to_alloc          729 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c     size_t required, to_alloc;
to_alloc          741 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         to_alloc = ((required + pmix_bfrops_globals.threshold_size - 1)
to_alloc          744 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         to_alloc = buffer->bytes_allocated;
to_alloc          745 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         if (0 == to_alloc) {
to_alloc          746 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c             to_alloc = pmix_bfrops_globals.initial_size;
to_alloc          748 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         while (to_alloc < required) {
to_alloc          749 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c             to_alloc <<= 1;
to_alloc          757 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         buffer->base_ptr = (char*)realloc(buffer->base_ptr, to_alloc);
to_alloc          758 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         memset(buffer->base_ptr + pack_offset, 0, to_alloc - buffer->bytes_allocated);
to_alloc          763 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         buffer->base_ptr = (char*)malloc(to_alloc);
to_alloc          764 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c         memset(buffer->base_ptr, 0, to_alloc);
to_alloc          772 opal/mca/pmix/pmix4x/pmix/src/mca/bfrops/base/bfrop_base_fns.c     buffer->bytes_allocated = to_alloc;