Lines Matching refs:exact
252 int exact, ret, stack;
276 /* Search the tree for the key; delete only deletes exact matches. */
277 if ((ret = __bam_rsearch(dbc, &cp->recno, S_DELETE, 1, &exact)) != 0)
279 if (!exact) {
538 int exact, ret, stack, tmp_rmw;
631 F_ISSET(dbc, DBC_RMW) ? S_FIND_WR : S_FIND, 1, &exact)) != 0)
634 if (!exact) {
693 int exact, ret;
739 if ((ret = __bam_rsearch(dbc, &cp->recno, S_INSERT, 1, &exact)) != 0)
741 if (!exact) {
1276 int exact, isdeleted, ret, stack;
1283 S_INSERT | (flags == DB_APPEND ? S_APPEND : 0), 1, &exact)) != 0)
1300 if (exact) {
1313 * key is an exact match, or we're replacing the data item with a
1314 * new data item, replace the current item. If the key isn't an exact
1319 &h, &indx, NULL, data, exact ? DB_CURRENT : DB_BEFORE, bi_flags)) {