Lines Matching refs:res
275 bool res;
282 res = my_hash_buffer.find_with_key(kk, mv0);
283 CHECK_MESSAGE( (!res), "Found non-inserted item");
284 res = my_hash_buffer.insert_with_key(mv1);
285 CHECK_MESSAGE( (res), "insert failed");
286 res = my_hash_buffer.find_with_key(kk, mv0);
287 CHECK_MESSAGE( (res), "not found after insert");
294 res = my_hash_buffer.find_with_key(kk, mv0);
295 CHECK_MESSAGE( (res), "find failed");
302 res = my_hash_buffer.find_with_key(kk, mv0);
303 CHECK_MESSAGE( (!res), "Found deleted item");
310 res = my_hash_buffer.find_with_key(kk, mv0);
311 CHECK_MESSAGE( (!res), "found an item that was previously deleted");
314 res = my_hash_buffer.find_with_key(kk, mv0);
315 CHECK_MESSAGE( (res), "find failed");
325 res = my_hash_buffer.insert_with_key(mv1);
327 CHECK_MESSAGE( (res), "didn't insert in empty slot");
330 CHECK_MESSAGE( (!res), "slot was empty on insert");
337 res = my_hash_buffer.find_with_key(kk, mv0);
338 CHECK_MESSAGE( (!res), "Found deleted item");