Home
last modified time | relevance | path

Searched full:exact (Results 1 – 25 of 1461) sorted by relevance

12345678910>>...59

/freebsd/lib/libc/db/btree/
H A Dbt_search.c52 * exactp: pointer to exact match flag
91 * are allowed, or we have an exact match, we're done. Else, in __bt_search()
130 * Check for an exact match after the key.
136 * exactp: pointer to exact match flag
139 * If an exact match found.
147 * Get the next page. The key is either an exact in __bt_snext()
165 * Check for an exact match before the key.
171 * exactp: pointer to exact match flag
174 * If an exact match found.
182 * Get the previous page. The key is either an exact in __bt_sprev()
H A Dbt_seq.c147 int exact; in __bt_seqset() local
164 return (__bt_first(t, key, ep, &exact)); in __bt_seqset()
233 int exact; in __bt_seqadv() local
244 * current tree. It doesn't matter if the returned key is an exact in __bt_seqadv()
245 * match or not -- if it's an exact match, the record was added after in __bt_seqadv()
250 return (__bt_first(t, &c->key, ep, &exact)); in __bt_seqadv()
319 * exactp: pointer to exact match flag
335 * If it's an exact match and duplicates are possible, walk backwards in __bt_first()
H A Dbt_get.c61 int exact, status; in __bt_get() local
77 if ((e = __bt_search(t, key, &exact)) == NULL) in __bt_get()
79 if (!exact) { in __bt_get()
H A Dbt_put.c70 int dflags, exact, status; in __bt_put() local
157 if (t->bt_order == NOT || (e = bt_fast(t, key, data, &exact)) == NULL) in __bt_put()
158 if ((e = __bt_search(t, key, &exact)) == NULL) in __bt_put()
171 if (!exact) in __bt_put()
176 if (!exact || !F_ISSET(t, B_NODUPS)) in __bt_put()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCompileUnit.cpp81 bool exact) const { in FindLineEntryIndex()
82 LLDB_INSTRUMENT_VA(this, line_entry, exact); in FindLineEntryIndex()
90 line_entry.GetFileSpec().get(), exact, in FindLineEntryIndex()
98 const bool exact = true; in FindLineEntryIndex() local
99 return FindLineEntryIndex(start_idx, line, inline_file_spec, exact); in FindLineEntryIndex()
104 bool exact) const { in FindLineEntryIndex()
105 LLDB_INSTRUMENT_VA(this, start_idx, line, inline_file_spec, exact); in FindLineEntryIndex()
118 exact, &line_entry); in FindLineEntryIndex()
/freebsd/contrib/ncurses/form/
H A Dfty_enum.c220 #define EXACT 2 macro
233 | EXACT - buffer matches exactly
244 return (((*s) != '\0') ? NOMATCH : EXACT); in Compare()
253 return EXACT; in Compare()
261 return EXACT; in Compare()
273 match is actually an exact match. */ in Compare()
274 return ((s[-1] != '\0') ? PARTIAL : EXACT); in Compare()
304 if ((unique && res != EXACT)) in Check_Enum_Field()
310 if (res == EXACT) in Check_Enum_Field()
358 if (Compare((unsigned char *)(*kwds++), bp, ccase) == EXACT) in Next_Enum()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Rename/
H A DSymbolOccurrences.h26 /// is an exact semantic match, or whether this is a weaker textual match that's
27 /// not guaranteed to represent the exact declaration.
42 /// This occurrence is an exact match and can be renamed automatically.
46 /// declarations get marked as exact matches, and thus the renaming engine
/freebsd/sys/arm64/include/
H A D_stdint.h59 * 7.18.2.1 Limits of exact-width integer types
61 /* Minimum values of exact-width signed integer types. */
67 /* Maximum values of exact-width signed integer types. */
73 /* Maximum values of exact-width unsigned integer types. */
/freebsd/sys/arm/include/
H A D_stdint.h57 * 7.18.2.1 Limits of exact-width integer types
59 /* Minimum values of exact-width signed integer types. */
65 /* Maximum values of exact-width signed integer types. */
71 /* Maximum values of exact-width unsigned integer types. */
/freebsd/sys/riscv/include/
H A D_stdint.h55 * 7.18.2.1 Limits of exact-width integer types
57 /* Minimum values of exact-width signed integer types. */
63 /* Maximum values of exact-width signed integer types. */
69 /* Maximum values of exact-width unsigned integer types. */
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dstdint.h69 /* C99 7.18.1.1 Exact-width integer types.
73 * The standard requires that exact-width type be defined for 8-, 16-, 32-, and
74 * 64-bit types if they are implemented. Other exact width types are optional.
75 * This implementation defines an exact-width types for every integer width
79 * and 64-bit widths regardless of whether there are corresponding exact-width
84 * redefinitions, redefining __int_leastN_t to successively smaller exact-width
95 * defined if there exists an exact-width type of equal or greater width.
483 /* C99 7.18.2.1 Limits of exact-width integer types.
488 * implementation defines limits for all of the types (exact- and
490 * type for any types that do not have exact-width representations.
[all …]
/freebsd/lib/msun/src/
H A Ds_cbrtl.c106 * Round it away from zero to 32 bits (32 so that t*t is exact, and in cbrtl()
132 s=t*t; /* t*t is exact */ in cbrtl()
134 w=t+t; /* t+t is exact */ in cbrtl()
135 r=(r-t)/(w+r); /* r-t is exact; w+r ~= 3*t */ in cbrtl()
/freebsd/lib/msun/man/
H A Dfenv.393 .Em exact
111 the magnitude of the exact result is
151 from their exact values in order to fit them into binary
157 If the exact result is exactly half way between two representable
/freebsd/sys/powerpc/include/
H A D_stdint.h80 * 7.18.2.1 Limits of exact-width integer types
82 /* Minimum values of exact-width signed integer types. */
88 /* Maximum values of exact-width signed integer types. */
94 /* Maximum values of exact-width unsigned integer types. */
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverName.h22 /// a given function name, either by exact match or by regular expression.
32 // This one takes an array of names. It is always MatchType = Exact.
39 // This one takes a C++ array of names. It is always MatchType = Exact.
/freebsd/contrib/llvm-project/lld/include/lld/Common/
H A DStrings.h45 // Whether to do an exact match regardless of wildcard characters.
48 // GlobPattern object if not doing an exact match.
51 // StringRef to match exactly if doing an exact match.
/freebsd/crypto/openssl/doc/man3/
H A DEVP_PKEY_get_size.pod32 EVP_PKEY_get_size() is only preliminary and not exact, so the final
54 buffer and still pass a pointer to an integer and get the exact size
57 exact buffer size, then allocate the buffer in between, and call that
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp371 bool ShAmtNonZero, bool Exact) { in lshr() argument
396 // If exact, bound MaxShiftAmount to first known 1 in LHS. in lshr()
397 if (Exact) { in lshr()
429 bool ShAmtNonZero, bool Exact) { in ashr() argument
456 // If exact, bound MaxShiftAmount to first known 1 in LHS. in ashr()
457 if (Exact) { in ashr()
911 const KnownBits &RHS, bool Exact) { in divComputeLowBit() argument
913 if (!Exact) in divComputeLowBit()
918 // Odd / Even -> Impossible (because its exact division) in divComputeLowBit()
938 // In the KnownBits exhaustive tests, we have poison inputs for exact values in divComputeLowBit()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompileUnit.cpp227 const FileSpec *file_spec_ptr, bool exact, in FindLineEntry() argument
239 /*check_inlines=*/false, exact); in FindLineEntry()
313 // If "exact == true", then "found_line" will be the same as "line". If in ResolveSymbolContext()
314 // "exact == false", the "found_line" will be the closest line entry in ResolveSymbolContext()
316 // subsequent line exact matches below. in ResolveSymbolContext()
318 const bool exact = true; in ResolveSymbolContext() local
324 inlines, exact); in ResolveSymbolContext()
/freebsd/crypto/openssh/openbsd-compat/regress/
H A Dopensslvertest.c30 { 0x1000101fL, 0x1000101fL, 1},/* exact match */
40 { 0x1010101fL, 0x1010101fL, 1},/* exact match */
50 { 0x3010101fL, 0x3010101fL, 1},/* exact match */
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dpwm-clock.txt16 - clock-frequency : Exact output frequency, in case the PWM period
17 is not exact but was rounded to nanoseconds.
H A Dpwm-clock.yaml20 description: Exact output frequency, in case the PWM period is not exact
/freebsd/lib/libpmc/pmu-events/arch/x86/tremontx/
H A Dfrontend.json77 …nts new cache line accesses, so that multiple back to back fetches to the exact same cache line or…
89 …nts new cache line accesses, so that multiple back to back fetches to the exact same cache line an…
101 …nts new cache line accesses, so that multiple back to back fetches to the exact same cache line an…
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOption.cpp100 // Check exact match. in matches()
154 // Matches iff this is an exact match. in acceptInternal()
166 // Matches iff this is an exact match. in acceptInternal()
181 // If this is not an exact match, it is a joined arg. in acceptInternal()
207 // Matches iff this is an exact match. in acceptInternal()
/freebsd/sys/security/mac_ddb/
H A Dmac_ddb.c223 /* Got an exact match. Update the command struct */ in command_match()
245 /* Got an exact match. */ in mac_ddb_init()
263 /* Got an exact match. */ in mac_ddb_init()
311 /* Got an exact match. */ in mac_ddb_command_register()
321 /* Got an exact match. */ in mac_ddb_command_register()

12345678910>>...59