Searched refs:comparison (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcompare.inc12 // [cmp.categories], comparison category types
17 // named comparison functions
25 // [cmp.common], common comparison category type
33 // [cmp.result], result of three-way comparison
41 // [cmp.alg], comparison algorithms
H A Dstring_view.inc19 // [string.view.comparison], non-member comparison functions
H A Dcoroutine.inc18 // [coroutine.handle.compare], comparison operators
H A Dratio.inc20 // [ratio.comparison], ratio comparison
H A Dsystem_error.inc32 // [syserr.compare], comparison operator functions
H A Dconcepts.inc62 // [concepts.compare], comparison concepts
H A Dutility.inc31 // [utility.intcmp], integer comparison functions
/freebsd-current/contrib/bmake/unit-tests/
H A Dcond-cmp-numeric-eq.mk5 # This comparison yields the same result, whether numeric or character-based.
11 # This comparison yields the same result, whether numeric or character-based.
43 # Numeric comparison works by parsing both sides
44 # as double, and then performing a normal comparison. The range of double is
H A Dcond-cmp-string.mk5 # This is a simple comparison of string literals.
11 # The right-hand side of the comparison may be written without quotes.
16 # The left-hand side of the comparison must be enclosed in quotes.
23 # An expression that occurs on the left-hand side of the comparison must be
103 # If at least one side of the comparison is a string literal, the string
104 # comparison is performed.
109 # If at least one side of the comparison is a string literal, the string
110 # comparison is performed. The ".0" in the left-hand side makes the two
H A Dcond-token-plain.mk18 # The right-hand side of the comparison is just a '"', before unescaping.
47 # The right-hand side of a comparison is not parsed as a token, therefore
73 # Usually there is whitespace around the comparison operator, but this is
88 # Only the comparison operator terminates the comparison operand, and it's
89 # a coincidence that the '!' is both used in the '!=' comparison operator
90 # as well as for negating a comparison result.
92 # The characters '&' and '|' are part of the comparison operand.
100 # A bare word may occur alone in a condition, without any comparison
228 # bare word and second for parsing the left-hand side of a comparison
[all...]
H A Ddirective-if.exp12 make: "directive-if.mk" line 88: Don't do this, always put a space around comparison operators.
H A Dcond-token-string.mk29 # comparison in an .if directive must be either an expression, a
99 # In the conditions in .if directives, the left-hand side of a comparison must
H A Dmeta-cmd-cmp.mk3 # Tests META_MODE command line comparison
H A Dcond-short.mk149 # triggered a warning: "String comparison operator should be either == or !=".
160 # the comparison were still parsed and evaluated. Comparing these two values
162 # so the comparison fell back to string comparison, which then complained
228 # marked as a string, thus preventing a numerical comparison.
272 # irrelevant comparison evaluated to false (see CondParser_Comparison).
H A Dvarmod-ifelse.mk85 # string. The left-hand side of the comparison is therefore just an empty
88 # XXX: The debug log for -dc shows a comparison between 1.0 and 0.0. The
89 # condition should be detected as being malformed before any comparison is
90 # done since there is no well-formed comparison in the condition at all.
141 # the comparison operator, but only because this is a condition in the
143 # For strings, only the comparison operators '==' and '!=' are defined,
H A Dcond-op.mk27 # lower precedence than the comparison operators. Negating a condition
68 # next token, even though in this position of the condition, only comparison
H A Dcond-token-var.mk18 # A defined variable may appear on either side of the comparison.
H A Dcomment.mk52 .if ${VAR} != "\#" # And in the comparison.
/freebsd-current/contrib/diff/src/
H A Ddiff.h159 /* In directory comparison, specify file to start with (-S).
160 This is used for resuming an aborted comparison.
209 /* The result of comparison is an "edit script": a chain of `struct change'.
287 The results of comparison are stored here. */
307 struct comparison
310 struct comparison const *parent; /* parent, if a recursive comparison */
326 int diff_2_files (struct comparison *);
333 int diff_dirs (struct comparison const *, int (*) (struct comparison cons
304 struct comparison struct
[all...]
H A Ddir.c49 static bool dir_loop (struct comparison const *, int);
201 diff_dirs (struct comparison const *cmp,
202 int (*handle_file) (struct comparison const *,
241 /* If `-S name' was given, and this is the topmost level of comparison,
282 dir_loop (struct comparison const *cmp, int i)
284 struct comparison const *p = cmp;
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_collapse.h25 // Loop has <, <=, etc. as a comparison:
59 comparison_t comparison; member in struct:bounds_infoXX_template
103 comparison_t comparison; member in struct:bounds_info_t
H A Dkmp_collapse.cpp87 if (bounds->comparison == comparison_t::comp_not_eq) {
90 bounds->comparison = comparison_t::comp_less;
92 bounds->comparison = comparison_t::comp_greater;
96 if (bounds->comparison == comparison_t::comp_less) {
101 bounds->comparison = comparison_t::comp_less_or_eq;
102 } else if (bounds->comparison == comparison_t::comp_greater) {
104 bounds->comparison = comparison_t::comp_greater_or_eq;
156 if (bounds->comparison == comparison_t::comp_less_or_eq) {
169 } else if (bounds->comparison == comparison_t::comp_greater_or_eq) {
315 if (((bounds->comparison
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIterator.cpp306 const auto comparison = local
309 assert(isa<DefinedSVal>(comparison) &&
310 "Symbol comparison must be a `DefinedSVal`");
312 return !State->assume(comparison.castAs<DefinedSVal>(), false);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_compare_impl.inc1 //===-- lib/fp_compare_impl.inc - Floating-point comparison -------*- C -*-===//
11 // GCC uses long (at least for x86_64) as the return type of the comparison
25 // Otherwise the comparison functions return long.
69 // comparison to get the correct result. (This assumes a twos- or ones-
/freebsd-current/lib/libc/net/
H A Dnsdispatch.c195 vector_comparison comparison)
197 qsort(vec, count, esize, comparison);
203 vector_comparison comparison)
205 return (bsearch(key, vec, count, esize, comparison));
194 vector_sort(void *vec, unsigned int count, size_t esize, vector_comparison comparison) argument
202 vector_search(const void *key, void *vec, unsigned int count, size_t esize, vector_comparison comparison) argument

Completed in 218 milliseconds

12