Lines Matching refs:entries
88 struct int_entry entries[1000]; in START_TEST() local
92 entries[i].key = i; in START_TEST()
93 entries[i].value = i; in START_TEST()
99 pa_hashmap_put(map, &entries[i].key, &entries[i]); in START_TEST()
121 struct int_entry entries[1000]; in START_TEST() local
127 entries[i].key = i; in START_TEST()
129 entries[i].value = i; in START_TEST()
136 if ((put_ret = pa_hashmap_put(map, &entries[i].key, &entries[i])) != 0) { in START_TEST()
137 …k_abort_msg("Unexpected failure putting k=%d v=%d into the map", entries[i].key, entries[i].value); in START_TEST()
173 struct int_entry entries[1000]; in START_TEST() local
179 entries[i].key = i; in START_TEST()
180 entries[i].value = i; in START_TEST()
186 if (pa_hashmap_put(map, &(entries[i].key), &(entries[i])) != 0) { in START_TEST()
187 …k_abort_msg("Unexpected failure putting k=%d v=%d into the map", entries[i].key, entries[i].value); in START_TEST()
209 pa_hashmap_remove(map, &(entries[i].key)); in START_TEST()
218 if(pa_hashmap_put(map, &(entries[0].key), &(entries[0])) != 0) { in START_TEST()
219 …ck_abort_msg("Unexpected failure putting k=%d v=%d into the map", entries[0].key, entries[0].value… in START_TEST()