num_keys           35 test/class/opal_hash_table.c char *num_keys[] = {
num_keys          179 test/class/opal_hash_table.c     for ( j = 0; num_keys[j]; j += 2)
num_keys          181 test/class/opal_hash_table.c         opal_hash_table_set_value_uint32(table, atoi(num_keys[j]), num_keys[j+1]);
num_keys          183 test/class/opal_hash_table.c     validate_table(table, num_keys, 1);
num_keys           37 test/class/opal_proc_table.c char *num_keys[] = {
num_keys          182 test/class/opal_proc_table.c     for ( j = 0; num_keys[j]; j += 3)
num_keys          185 test/class/opal_proc_table.c         key.jobid = atoi(num_keys[j]);
num_keys          186 test/class/opal_proc_table.c         key.vpid = atoi(num_keys[j+1]);
num_keys          187 test/class/opal_proc_table.c         opal_proc_table_set_value(table, key, num_keys[j+2]);
num_keys          189 test/class/opal_proc_table.c     validate_table(table, num_keys);
num_keys          195 test/class/opal_proc_table.c     for (j=0; num_keys[j]; j+=3) {
num_keys          200 test/class/opal_proc_table.c         if (key.jobid != (opal_jobid_t)atoi(num_keys[j]) ||
num_keys          201 test/class/opal_proc_table.c             key.vpid != (opal_vpid_t)atoi(num_keys[j+1]) ||
num_keys          202 test/class/opal_proc_table.c             0 != strcmp(num_keys[j+2], v)) {
num_keys          204 test/class/opal_proc_table.c                         num_keys[j], num_keys[j+1], num_keys[j+2],