Searched refs:exact (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-10-stable/lib/libc/db/btree/
H A Dbt_get.c65 int exact, status; local
81 if ((e = __bt_search(t, key, &exact)) == NULL)
83 if (!exact) {
H A Dbt_put.c74 int dflags, exact, status; local
160 if (t->bt_order == NOT || (e = bt_fast(t, key, data, &exact)) == NULL)
161 if ((e = __bt_search(t, key, &exact)) == NULL)
174 if (!exact)
179 if (!exact || !F_ISSET(t, B_NODUPS))
H A Dbt_seq.c151 int exact; local
168 return (__bt_first(t, key, ep, &exact));
237 int exact; local
248 * current tree. It doesn't matter if the returned key is an exact
249 * match or not -- if it's an exact match, the record was added after
254 return (__bt_first(t, &c->key, ep, &exact));
323 * exactp: pointer to exact match flag
339 * If it's an exact match and duplicates are possible, walk backwards
H A Dbt_delete.c148 int exact, level; local
156 if ((e = __bt_search(t, &c->key, &exact)) == NULL)
215 if ((e = __bt_search(t, &c->key, &exact)) == NULL)
287 int deleted, exact, redo; local
292 loop: if ((e = __bt_search(t, key, &exact)) == NULL)
294 if (!exact) {
/freebsd-10-stable/contrib/gcc/
H A Dvec.c48 calculate_allocation (const struct vec_prefix *pfx, int reserve, bool exact) argument
68 if (exact)
98 bool exact MEM_STAT_DECL)
101 unsigned alloc = alloc = calculate_allocation (pfx, reserve, exact);
170 size_t elt_size, bool exact MEM_STAT_DECL)
173 unsigned alloc = calculate_allocation (pfx, reserve, exact);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp68 const bool exact = false; local
70 cu->ResolveSymbolContext (cu_file_spec, line_matches[i], search_inlines, exact, eSymbolContextEverything, sc_list);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBCompileUnit.cpp105 const bool exact = true; local
106 return FindLineEntryIndex (start_idx, line, inline_file_spec, exact);
110 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec, bool exact) const
127 exact,
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompileUnit.h215 /// @param[in] exact
230 bool exact,
366 /// @param[in] exact
392 bool exact,
H A DLineTable.h175 /// @param[in] exact
195 bool exact,
202 bool exact,
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBCompileUnit.h52 bool exact) const;
/freebsd-10-stable/contrib/tcsh/
H A Dtw.comp.c251 tw_match(const Char *str, const Char *pat, int exact) argument
254 int rv = exact ? Gmatch(estr = str, pat) : Gnmatch(str, pat, &estr);
256 xprintf("G%smatch(%s, ", exact ? "" : "n", short2str(str));
529 int exact; local
604 exact = 0;
620 exact = 1;
627 if ((n = tw_match(pos, ran, exact)) < 0) {
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
H A DCompileUnit.cpp282 CompileUnit::FindLineEntry (uint32_t start_idx, uint32_t line, const FileSpec* file_spec_ptr, bool exact, LineEntry *line_entry_ptr) argument
305 return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr);
318 bool exact,
367 line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_indexes.front(), line, exact, &line_entry);
369 // If "exact == true", then "found_line" will be the same
370 // as "line". If "exact == false", the "found_line" will be the
372 // we will use this for our subsequent line exact matches below.
398 line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_indexes, line, exact, &line_entry);
400 // If "exact == true", then "found_line" will be the same
401 // as "line". If "exact
313 ResolveSymbolContext( const FileSpec& file_spec, uint32_t line, bool check_inlines, bool exact, uint32_t resolve_scope, SymbolContextList &sc_list ) argument
[all...]
H A DLineTable.cpp294 bool exact,
328 else if (!exact)
347 LineTable::FindLineEntryIndexByFileIndex (uint32_t start_idx, uint32_t file_idx, uint32_t line, bool exact, LineEntry* line_entry_ptr) argument
376 else if (!exact)
289 FindLineEntryIndexByFileIndex( uint32_t start_idx, const std::vector<uint32_t> &file_indexes, uint32_t line, bool exact, LineEntry* line_entry_ptr ) argument
/freebsd-10-stable/gnu/usr.bin/grep/
H A Dsearch.c138 /* First, we compile in the substrings known to be exact
143 if (!dm->exact)
153 if (dm->exact)
325 EGexecute (char const *buf, size_t size, size_t *match_size, int exact) argument
366 if (!exact)
503 if (exact && !match_words)
618 if (!exact)
820 Fimbexec (const char *buf, size_t size, size_t *plen, int exact) argument
862 if (!exact && !match_words)
866 /* For -w or exact loo
889 Fexecute(char const *buf, size_t size, size_t *match_size, int exact) argument
1234 Pexecute(char const *buf, size_t size, size_t *match_size, int exact) argument
[all...]
H A Ddfa.h56 /* INTBITS need not be exact, just a lower bound. */
261 int exact; member in struct:dfamust
345 as opposed to an exact matcher. A searching
348 whereas an exact matcher finds the longest
398 exact matcher. */
422 or an exact matcher. */
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dgetopt.c504 or is an exact match for some defined option. If they have an
651 int exact = 0;
659 /* Test all long options for either exact match
670 exact = 1;
684 if (ambig && !exact)
809 int exact = 0;
848 /* Test all long options for either exact match
858 exact = 1;
871 if (ambig && !exact)
647 int exact = 0; local
805 int exact = 0; local
/freebsd-10-stable/tools/LibraryReport/
H A DLibraryReport.tcl82 if {[lsearch -exact $libdirs $libdir] == -1} {
/freebsd-10-stable/lib/libc/gen/
H A Dpututxline.c100 goto exact;
121 * No exact match found. Use the partial match. If no partial
126 exact:
/freebsd-10-stable/sys/netsmb/
H A Dsmb_conn.c124 int exact = 1; local
144 exact = 0;
149 exact = 0;
151 if (!exact || (vcspec->mode & SMBM_MASK) !=
614 int exact = 1; local
622 exact = 0;
627 exact = 0;
630 if (!exact)
/freebsd-10-stable/contrib/gdtoa/
H A Dstrtodg.c174 (d, fpi, exp, bits, exact, rd, irv)
175 U *d; FPI *fpi; Long *exp; ULong *bits; int exact, rd, *irv;
177 (U *d, FPI *fpi, Long *exp, ULong *bits, int exact, int rd, int *irv)
189 if (exact)
196 exact &&
217 if (!exact)
261 if (!lostbits && !exact)
/freebsd-10-stable/contrib/less/
H A Dopttbl.c551 int exact = 0; local
578 if (!exact && len == maxlen)
595 exact = (len == (int)strlen(oname->oname));
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Devbuffer-internal.h327 int exact);
/freebsd-10-stable/crypto/heimdal/lib/kafs/
H A Dcommon.c265 const char *cell, char **realm, int exact)
285 if (exact)
264 file_find_cell(struct kafs_data *data, const char *cell, char **realm, int exact) argument
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_dir.c66 boolean_t exact, uint64_t *zoid)
71 matchtype_t mt = exact? MT_EXACT : MT_FIRST;
111 boolean_t exact; local
134 * Decide if exact matches should be requested when performing
142 exact = zfsvfs->z_case == ZFS_CASE_MIXED;
152 error = zfs_match_find(zfsvfs, dzp, name, exact, &zoid);
65 zfs_match_find(zfsvfs_t *zfsvfs, znode_t *dzp, const char *name, boolean_t exact, uint64_t *zoid) argument
/freebsd-10-stable/tools/tools/kdrv/
H A DKernelDriver271 if {[lsearch -exact $unwritable $p] == -1} {
283 if {[lsearch -exact $unwritable $p] == -1} {
806 if {[lsearch -exact $unwritable $p] == -1} {
818 if {[lsearch -exact $unwritable $p] == -1} {

Completed in 190 milliseconds

123