test               68 ompi/mca/coll/hcoll/coll_hcoll_rte.c static int test( rte_request_handle_t * request ,
test              128 ompi/mca/coll/hcoll/coll_hcoll_rte.c     hcoll_rte_functions.test_fn = test;
test               40 ompi/mca/io/romio321/romio/test-internal/heap_test.c int run_test(test_params_t *test);
test               51 ompi/mca/io/romio321/romio/test-internal/heap_test.c     test_params_t test;
test               74 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    test.heap_size = atoi(argv[i+1]);
test               75 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    if (test.heap_size <= 0) {
test               79 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    test.offsets = (ADIO_Offset *) malloc(test.heap_size*sizeof(ADIO_Offset));
test               84 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    test.heap_size = argc - 2;
test               85 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    if (test.heap_size <= 0) {
test               89 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    test.offsets = (ADIO_Offset *) malloc(test.heap_size*sizeof(ADIO_Offset));
test              111 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    test.offsets[curr_add_idx] = atoi(argv[i]);
test              123 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	fill_random_test(&test);
test              124 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	strcpy(test.name, "RANDOMIZED TEST");
test              127 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	strcpy(test.name, "CUSTOM TEST");
test              129 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.print = print;
test              130 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.verify = verify;
test              131 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.action_arr_sz = 2;
test              132 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.action_arr = (int *) malloc(test.action_arr_sz*sizeof(int));
test              133 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.action_count_arr = (int *) malloc(test.action_arr_sz*sizeof(int));
test              138 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.action_arr[0]       = INSERT;
test              139 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.action_count_arr[0] = test.heap_size;
test              141 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.action_arr[1]       = EXTRACT;
test              142 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	test.action_count_arr[1] = test.heap_size;
test              145 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    test.correct_order = (ADIO_Offset *)malloc(test.heap_size*sizeof(ADIO_Offset));
test              146 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    dumb_sort(&test);
test              149 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    print_params(&test);
test              150 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	run_test(&test);
test              159 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		    print_params(&test);
test              255 ompi/mca/io/romio321/romio/test-internal/heap_test.c int run_test(test_params_t *test) {
test              264 ompi/mca/io/romio321/romio/test-internal/heap_test.c     create_heap(&myheap, test->heap_size);
test              267 ompi/mca/io/romio321/romio/test-internal/heap_test.c     extracted = (ADIO_Offset *) malloc(test->heap_size * sizeof(ADIO_Offset));
test              268 ompi/mca/io/romio321/romio/test-internal/heap_test.c     for (i=0; i < test->action_arr_sz; i++) {
test              269 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	for (j=0; j<test->action_count_arr[i]; j++) {
test              270 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    switch (test->action_arr[i])
test              273 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		    myheap.size = test->heap_size;
test              274 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		    for (k=0; k < test->heap_size; k++) {
test              275 ompi/mca/io/romio321/romio/test-internal/heap_test.c 			myheap.nodes[k].offset   = test->offsets[k];
test              281 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		    ADIOI_Heap_insert(&myheap, test->offsets[curr_insert_idx],
test              288 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		    if (test->verify && (extracted[curr_extract_idx] !=
test              289 ompi/mca/io/romio321/romio/test-internal/heap_test.c 			test->correct_order[curr_extract_idx]))
test              296 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		    if (test->verify &&(extracted[curr_extract_idx] !=
test              297 ompi/mca/io/romio321/romio/test-internal/heap_test.c 					test->correct_order[curr_extract_idx]))
test              301 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		    ADIOI_Heap_insert(&myheap, test->offsets[curr_insert_idx],
test              311 ompi/mca/io/romio321/romio/test-internal/heap_test.c     if (test->verify) {
test              313 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    printf("***%s FAILED***\n", test->name);
test              314 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    if (test->print) {
test              316 ompi/mca/io/romio321/romio/test-internal/heap_test.c 		print_keys(extracted, test->heap_size);
test              321 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	    printf("***%s PASSED***\n", test->name);
test              327 ompi/mca/io/romio321/romio/test-internal/heap_test.c     free(test->offsets);
test              328 ompi/mca/io/romio321/romio/test-internal/heap_test.c     if (test->verify)
test              329 ompi/mca/io/romio321/romio/test-internal/heap_test.c 	free(test->correct_order);
test              330 ompi/mca/io/romio321/romio/test-internal/heap_test.c     free(test->action_arr);
test              331 ompi/mca/io/romio321/romio/test-internal/heap_test.c     free(test->action_count_arr);
test               27 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c int run_test (test_param_t *test);
test               30 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c int print_test_params (test_param_t *test);
test              100 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c int run_test (test_param_t *test) {
test              108 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     MPI_Type_struct (test->type_count, test->type_blocklens,
test              109 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 		     test->type_indices, test->type_oldtypes, &filetype);
test              117 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     MPI_File_seek (fh, test->offset, MPI_SEEK_SET);
test              118 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     ADIOI_Calc_bounds ((ADIO_File) fh, test->count, MPI_BYTE, ADIO_INDIVIDUAL,
test              119 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 		       test->offset, &st_offset, &end_offset);    
test              122 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     if (st_offset != test->correct_st_offset) {
test              127 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     if (end_offset != test->correct_end_offset) {
test              143 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     ADIOI_Calc_bounds ((ADIO_File) fh, test->count, MPI_BYTE,
test              144 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 		       ADIO_EXPLICIT_OFFSET, test->offset, &st_offset,
test              148 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     if (st_offset != test->correct_st_offset) {
test              153 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     if (end_offset != test->correct_end_offset) {
test              176 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c int print_test_params (test_param_t *test) 
test              183 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	test->offset, test->count);
test              185 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c     for (i=0; i<test->type_count; i++) {
test              189 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	    test->type_blocklens[i],
test              190 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	    test->type_indices[i]);
test              191 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	if (test->type_oldtypes[i] == MPI_BYTE) {
test              194 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	else if (test->type_oldtypes[i] == MPI_UB) {
test              197 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	else if (test->type_oldtypes[i] == MPI_LB) {
test              204 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	test->correct_st_offset,
test              205 ompi/mca/io/romio321/romio/test-internal/io_bounds_test.c 	test->correct_end_offset);
test               54 ompi/mca/vprotocol/base/vprotocol_base_parasite.c     if(mca_vprotocol.test)
test               55 ompi/mca/vprotocol/base/vprotocol_base_parasite.c         ompi_request_functions.req_test = mca_vprotocol.test;
test               77 ompi/mca/vprotocol/vprotocol.h     ompi_request_test_fn_t                  test;
test              232 ompi/mpi/java/java/Request.java 		return test(handle);
test              383 ompi/mpi/java/java/Win.java 		return test(handle);
test               85 opal/mca/event/libevent2022/libevent/test/regress_et.c 	const char *test = "test string";
test              107 opal/mca/event/libevent2022/libevent/test/regress_et.c 	tt_int_op(send(pair[0], test, (int)strlen(test)+1, 0), >, 0);
test              895 opal/mca/event/libevent2022/libevent/test/regress_rpc.c 	RPC_LEGACY(test),
test               92 opal/mca/event/libevent2022/libevent/test/test-eof.c 	const char *test = "test string";
test              108 opal/mca/event/libevent2022/libevent/test/test-eof.c 	if (send(pair[0], test, (int)strlen(test)+1, 0) < 0)
test               65 opal/mca/event/libevent2022/libevent/test/test-weof.c 	const char *test = "test string";
test               68 opal/mca/event/libevent2022/libevent/test/test-weof.c 	len = send(fd, test, (int)strlen(test) + 1, 0);
test              337 opal/mca/event/libevent2022/libevent/test/tinytest.c 			const char *test = v[i];
test              339 opal/mca/event/libevent2022/libevent/test/tinytest.c 			if (test[0] == ':') {
test              340 opal/mca/event/libevent2022/libevent/test/tinytest.c 				++test;
test              345 opal/mca/event/libevent2022/libevent/test/tinytest.c 			if (!_tinytest_set_flag(groups, test, flag)) {
test              113 opal/mca/event/libevent2022/libevent/test/tinytest_macros.h #define tt_assert_test_fmt_type(a,b,str_test,type,test,printf_type,printf_fmt, \
test              118 opal/mca/event/libevent2022/libevent/test/tinytest_macros.h 	int _tt_status = (test);					\
test              143 opal/mca/event/libevent2022/libevent/test/tinytest_macros.h #define tt_assert_test_type(a,b,str_test,type,test,fmt,die_on_fail)	\
test              144 opal/mca/event/libevent2022/libevent/test/tinytest_macros.h 	tt_assert_test_fmt_type(a,b,str_test,type,test,type,fmt,	\
test               56 orte/runtime/data_type_support/orte_dt_compare_fns.c     int test;
test               59 orte/runtime/data_type_support/orte_dt_compare_fns.c     test = strcmp(value1->name, value2->name);
test               60 orte/runtime/data_type_support/orte_dt_compare_fns.c     if (0 == test) return OPAL_EQUAL;
test               61 orte/runtime/data_type_support/orte_dt_compare_fns.c     if (0 < test) return OPAL_VALUE2_GREATER;
test              459 orte/util/dash_host/dash_host.c     int rc, test;
test              570 orte/util/dash_host/dash_host.c                         test = 0;
test              573 orte/util/dash_host/dash_host.c                         test = (lmn == lst) ? 0 : 1;
test              576 orte/util/dash_host/dash_host.c                     test = strcmp(node->name, mapped_nodes[i]);
test              578 orte/util/dash_host/dash_host.c                 if (0 == test) {
test              138 oshmem/shmem/c/shmem_wait.c         rc = MCA_SPML_CALL(test(                                    \
test              178 test/class/opal_pointer_array.c     test(false);
test              181 test/class/opal_pointer_array.c     test(true);
test               31 test/util/opal_basename.c static void test(const char* in, const char* out);
test               38 test/util/opal_basename.c   test("foo.txt", "foo.txt");
test               39 test/util/opal_basename.c   test("/foo/bar/baz", "baz");
test               40 test/util/opal_basename.c   test("/yow.c", "yow.c");
test               41 test/util/opal_basename.c   test("/", "/");
test               43 test/util/opal_basename.c   test("foo.txt/", "foo.txt");
test               44 test/util/opal_basename.c   test("/foo/bar/baz/", "baz");
test               45 test/util/opal_basename.c   test("/yow.c/", "yow.c");
test               46 test/util/opal_basename.c   test("//", "/");
test               88 test/util/opal_path_nfs.c static void test(char* file, bool expect);
test              114 test/util/opal_path_nfs.c         test (dirs[num_dirs], nfs[num_dirs]);