chunk 82 opal/mca/allocator/bucket/allocator_bucket_alloc.c mca_allocator_bucket_chunk_header_t * chunk; chunk 98 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = mem_options->buckets[bucket_num].free_chunk; chunk 99 opal/mca/allocator/bucket/allocator_bucket_alloc.c mem_options->buckets[bucket_num].free_chunk = chunk->u.next_free; chunk 100 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->u.bucket = bucket_num; chunk 102 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk += 1; chunk 105 opal/mca/allocator/bucket/allocator_bucket_alloc.c return((void *) chunk); chunk 123 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = first_chunk = segment_header->first_chunk = chunk 130 opal/mca/allocator/bucket/allocator_bucket_alloc.c (mca_allocator_bucket_chunk_header_t *) ((char *) chunk + bucket_size); chunk 131 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->next_in_segment = (mca_allocator_bucket_chunk_header_t *) chunk 132 opal/mca/allocator/bucket/allocator_bucket_alloc.c ((char *)chunk + bucket_size); chunk 134 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = (mca_allocator_bucket_chunk_header_t *) ((char *) chunk + bucket_size); chunk 135 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->u.next_free = (mca_allocator_bucket_chunk_header_t *) chunk 136 opal/mca/allocator/bucket/allocator_bucket_alloc.c ((char *) chunk + bucket_size); chunk 137 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->next_in_segment = chunk->u.next_free; chunk 140 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->next_in_segment = first_chunk; chunk 141 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->u.next_free = NULL; chunk 162 opal/mca/allocator/bucket/allocator_bucket_alloc.c mca_allocator_bucket_chunk_header_t * chunk; chunk 202 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = segment_header->first_chunk = first_chunk; chunk 210 opal/mca/allocator/bucket/allocator_bucket_alloc.c (mca_allocator_bucket_chunk_header_t *) ((char *) chunk + bucket_size); chunk 211 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->next_in_segment = (mca_allocator_bucket_chunk_header_t *) chunk 212 opal/mca/allocator/bucket/allocator_bucket_alloc.c ((char *)chunk + bucket_size); chunk 214 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = (mca_allocator_bucket_chunk_header_t *) ((char *) chunk + bucket_size); chunk 215 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->u.next_free = (mca_allocator_bucket_chunk_header_t *) chunk 216 opal/mca/allocator/bucket/allocator_bucket_alloc.c ((char *) chunk + bucket_size); chunk 217 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->next_in_segment = chunk->u.next_free; chunk 220 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->next_in_segment = first_chunk; chunk 221 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->u.next_free = NULL; chunk 243 opal/mca/allocator/bucket/allocator_bucket_alloc.c mca_allocator_bucket_chunk_header_t * chunk = (mca_allocator_bucket_chunk_header_t *) ptr - 1; chunk 244 opal/mca/allocator/bucket/allocator_bucket_alloc.c bucket_num = chunk->u.bucket; chunk 276 opal/mca/allocator/bucket/allocator_bucket_alloc.c mca_allocator_bucket_chunk_header_t * chunk = (mca_allocator_bucket_chunk_header_t *) ptr - 1; chunk 277 opal/mca/allocator/bucket/allocator_bucket_alloc.c int bucket_num = chunk->u.bucket; chunk 279 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk->u.next_free = mem_options->buckets[bucket_num].free_chunk; chunk 280 opal/mca/allocator/bucket/allocator_bucket_alloc.c mem_options->buckets[bucket_num].free_chunk = chunk; chunk 295 opal/mca/allocator/bucket/allocator_bucket_alloc.c mca_allocator_bucket_chunk_header_t * chunk; chunk 317 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = first_chunk; chunk 320 opal/mca/allocator/bucket/allocator_bucket_alloc.c if(chunk->u.bucket == i) { chunk 324 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = chunk->next_in_segment; chunk 325 opal/mca/allocator/bucket/allocator_bucket_alloc.c } while(chunk != first_chunk); chunk 345 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = first_chunk; chunk 349 opal/mca/allocator/bucket/allocator_bucket_alloc.c if(chunk->u.bucket == i) { chunk 352 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = chunk->next_in_segment; chunk 353 opal/mca/allocator/bucket/allocator_bucket_alloc.c } while(empty && (chunk != first_chunk)); chunk 355 opal/mca/allocator/bucket/allocator_bucket_alloc.c chunk = first_chunk; chunk 358 opal/mca/allocator/bucket/allocator_bucket_alloc.c if(mem_options->buckets[i].free_chunk == chunk) { chunk 359 opal/mca/allocator/bucket/allocator_bucket_alloc.c mem_options->buckets[i].free_chunk = chunk->u.next_free; chunk 362 opal/mca/allocator/bucket/allocator_bucket_alloc.c while(next_chunk->u.next_free != chunk) { chunk 365 opal/mca/allocator/bucket/allocator_bucket_alloc.c next_chunk->u.next_free = chunk->u.next_free; chunk 367 opal/mca/allocator/bucket/allocator_bucket_alloc.c } while((chunk = chunk->next_in_segment) != first_chunk); chunk 1337 opal/mca/event/libevent2022/libevent/buffer.c size_t chunk = (s + CHUNK_SZ < s_end) ? CHUNK_SZ : (s_end - s); chunk 1338 opal/mca/event/libevent2022/libevent/buffer.c cr = memchr(s, '\r', chunk); chunk 1339 opal/mca/event/libevent2022/libevent/buffer.c lf = memchr(s, '\n', chunk); chunk 836 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h unsigned chunk, weight; chunk 847 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h chunk = (( (givenweight+weight) * n + tot_weight-1) / tot_weight) chunk 849 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h if (!root->arity || chunk <= 1 || root->depth >= until) { chunk 851 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h if (chunk) { chunk 854 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h for (j=0; j < chunk; j++) chunk 866 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h hwloc_distrib(topology, root->children, root->arity, cpusetp, chunk, until, flags); chunk 868 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h cpusetp += chunk; chunk 869 opal/mca/hwloc/hwloc201/hwloc/include/hwloc/helper.h given += chunk; chunk 538 orte/mca/ess/singleton/ess_singleton_module.c int buffer_length, num_chars_read, chunk; chunk 690 orte/mca/ess/singleton/ess_singleton_module.c chunk = ORTE_URI_MSG_LGTH-1; chunk 695 orte/mca/ess/singleton/ess_singleton_module.c while (0 != (rc = read(p[0], &orted_uri[num_chars_read], chunk))) { chunk 704 orte/mca/ess/singleton/ess_singleton_module.c chunk -= rc; chunk 705 orte/mca/ess/singleton/ess_singleton_module.c if (0 == chunk) { chunk 706 orte/mca/ess/singleton/ess_singleton_module.c chunk = ORTE_URI_MSG_LGTH; chunk 707 orte/mca/ess/singleton/ess_singleton_module.c orted_uri = realloc((void*)orted_uri, buffer_length+chunk); chunk 708 orte/mca/ess/singleton/ess_singleton_module.c memset(&orted_uri[buffer_length], 0, chunk); chunk 709 orte/mca/ess/singleton/ess_singleton_module.c buffer_length += chunk; chunk 758 orte/mca/filem/raw/filem_raw_module.c opal_buffer_t chunk; chunk 804 orte/mca/filem/raw/filem_raw_module.c OBJ_CONSTRUCT(&chunk, opal_buffer_t); chunk 805 orte/mca/filem/raw/filem_raw_module.c if (OPAL_SUCCESS != (rc = opal_dss.pack(&chunk, &rev->file, 1, OPAL_STRING))) { chunk 810 orte/mca/filem/raw/filem_raw_module.c if (OPAL_SUCCESS != (rc = opal_dss.pack(&chunk, &rev->nchunk, 1, OPAL_INT32))) { chunk 815 orte/mca/filem/raw/filem_raw_module.c if (OPAL_SUCCESS != (rc = opal_dss.pack(&chunk, data, numbytes, OPAL_BYTE))) { chunk 822 orte/mca/filem/raw/filem_raw_module.c if (OPAL_SUCCESS != (rc = opal_dss.pack(&chunk, &rev->type, 1, OPAL_INT32))) { chunk 834 orte/mca/filem/raw/filem_raw_module.c if (ORTE_SUCCESS != (rc = orte_grpcomm.xcast(sig, ORTE_RML_TAG_FILEM_BASE, &chunk))) { chunk 839 orte/mca/filem/raw/filem_raw_module.c OBJ_DESTRUCT(&chunk); chunk 177 test/datatype/ddt_test.c int chunk ) chunk 193 test/datatype/ddt_test.c ptemp = malloc( chunk ); chunk 222 test/datatype/ddt_test.c max_data = chunk; chunk 225 test/datatype/ddt_test.c iov.iov_len = chunk; chunk 258 test/datatype/ddt_test.c static int local_copy_with_convertor( ompi_datatype_t* pdt, int count, int chunk ) chunk 273 test/datatype/ddt_test.c ptemp = malloc(chunk); chunk 301 test/datatype/ddt_test.c max_data = chunk; chunk 304 test/datatype/ddt_test.c iov.iov_len = chunk; chunk 207 test/datatype/opal_datatype_test.c int chunk ) chunk 228 test/datatype/opal_datatype_test.c ptemp = malloc( chunk ); chunk 261 test/datatype/opal_datatype_test.c max_data = chunk; chunk 264 test/datatype/opal_datatype_test.c iov.iov_len = chunk; chunk 311 test/datatype/opal_datatype_test.c static int local_copy_with_convertor( opal_datatype_t const * const pdt, int count, int chunk ) chunk 329 test/datatype/opal_datatype_test.c ptemp = malloc( chunk ); chunk 361 test/datatype/opal_datatype_test.c max_data = chunk; chunk 364 test/datatype/opal_datatype_test.c iov.iov_len = chunk;