Home
last modified time | relevance | path

Searched refs:comparison (Results 1 – 25 of 220) sorted by relevance

123456789

/freebsd-14.2/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 Dratio.inc20 // [ratio.comparison], ratio comparison
H A Dcoroutine.inc18 // [coroutine.handle.compare], comparison operators
H A Dsystem_error.inc32 // [syserr.compare], comparison operator functions
/freebsd-14.2/contrib/diff/src/
H A Ddiff.h304 struct comparison struct
307 struct comparison const *parent; /* parent, if a recursive comparison */ argument
321 int diff_2_files (struct comparison *);
328 int diff_dirs (struct comparison const *, int (*) (struct comparison const *, char const *, char co…
H A Ddir.c49 static bool dir_loop (struct comparison const *, int);
200 diff_dirs (struct comparison const *cmp, in diff_dirs()
201 int (*handle_file) (struct comparison const *, in diff_dirs()
281 dir_loop (struct comparison const *cmp, int i) in dir_loop()
283 struct comparison const *p = cmp; in dir_loop()
H A Ddiff.c56 static int compare_files (struct comparison const *, char const *, char const *);
742 int status = compare_files ((struct comparison *) 0, in main()
753 int status = compare_files ((struct comparison *) 0, in main()
768 exit_status = compare_files ((struct comparison *) 0, in main()
1034 compare_files (struct comparison const *parent, in compare_files()
1038 struct comparison cmp; in compare_files()
/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_collapse.cpp87 if (bounds->comparison == comparison_t::comp_not_eq) { in kmp_canonicalize_one_loop_XX()
90 bounds->comparison = comparison_t::comp_less; in kmp_canonicalize_one_loop_XX()
92 bounds->comparison = comparison_t::comp_greater; in kmp_canonicalize_one_loop_XX()
96 if (bounds->comparison == comparison_t::comp_less) { in kmp_canonicalize_one_loop_XX()
101 bounds->comparison = comparison_t::comp_less_or_eq; in kmp_canonicalize_one_loop_XX()
102 } else if (bounds->comparison == comparison_t::comp_greater) { in kmp_canonicalize_one_loop_XX()
104 bounds->comparison = comparison_t::comp_greater_or_eq; in kmp_canonicalize_one_loop_XX()
156 if (bounds->comparison == comparison_t::comp_less_or_eq) { in kmp_calculate_trip_count_XX()
315 if (((bounds->comparison == comparison_t::comp_less_or_eq) && in kmp_iv_is_in_upper_bound_XX()
661 if (bounds->b.comparison == comparison_t::comp_less_or_eq) { in kmp_calc_span_XX()
[all …]
H A Dkmp_collapse.h59 comparison_t comparison; member
103 comparison_t comparison; member
/freebsd-14.2/crypto/openssl/doc/man3/
H A DOPENSSL_strcasecmp.pod16 The OPENSSL_strcasecmp function performs a byte-by-byte comparison of the strings
23 case insensitive. Otherwise the comparison is done in current locale.
32 OpenSSL extensively uses case insensitive comparison of ASCII strings. Though
36 comparison.
H A DDEFINE_STACK_OF.pod109 B<sk_I<TYPE>_new>() allocates a new empty stack using comparison function
113 B<sk_I<TYPE>_new_null>() allocates a new empty stack with no comparison
127 B<sk_I<TYPE>_new_reserve>() also sets the comparison function I<compare>
128 to the newly created stack. If I<compare> is NULL then no comparison
131 B<sk_I<TYPE>_set_cmp_func>() sets the comparison function of I<sk> to
133 was no previous comparison function.
174 where no comparison function has been specified, the function performs
177 where a comparison function has been specified, I<sk> is sorted and
187 comparison function has been specified and no matching element is found.
219 Any comparison function supplied should use a metric suitable
[all …]
H A DX509_cmp.pod28 I<a> and I<b>. The comparison is based on the B<memcmp> result of the hash
32 parameters I<a> and I<b>. The comparison is based on the B<memcmp> result of the
54 The B<X509> comparison functions return B<-1>, B<0>, or B<1> if object I<a> is
64 the comparison job. Data to be compared varies from DER encoding data, hash
65 value or B<ASN1_STRING>. The sign of the comparison can be used to order the
H A DEVP_PKEY_copy_parameters.pod7 EVP_PKEY_cmp - public key parameter and comparison functions
58 always accompanied by a public key, the comparison can not rely on public
59 key comparison alone.
H A DCMS_get0_SignerInfos.pod38 identifier B<si>. It returns zero if the comparison is successful and non zero
70 CMS_SignerInfo_cert_cmp() returns 0 for a successful comparison and non
H A DOCSP_request_add1_nonce.pod37 OCSP_check_nonce() returns the result of the nonce comparison between B<req>
38 and B<resp>. The return value indicates the result of the comparison. If
H A DCMS_get0_RecipientInfos.pod59 It returns zero if the comparison is successful and non zero if not.
84 which must be of type CMS_RECIPINFO_KEK. It returns zero if the comparison is
133 for a successful comparison and non zero otherwise.
/freebsd-14.2/usr.bin/indent/
H A Dlexi.c622 int comparison; in add_typename() local
633 else if ((comparison = strcmp(key, typenames[typename_top])) >= 0) { in add_typename()
635 if (comparison == 0) /* remove duplicates */ in add_typename()
642 for (p = 0; (comparison = strcmp(key, typenames[p])) > 0; p++) in add_typename()
644 if (comparison == 0) /* remove duplicates */ in add_typename()
/freebsd-14.2/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-14.2/contrib/llvm-project/libcxx/include/
H A Dcompare17 // [cmp.categories], comparison category types
22 // named comparison functions
30 // [cmp.common], common comparison category type
44 // [cmp.result], result of three-way comparison
53 // [cmp.alg], comparison algorithms
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIterator.cpp306 const auto comparison = in compare() local
309 assert(isa<DefinedSVal>(comparison) && in compare()
312 return !State->assume(comparison.castAs<DefinedSVal>(), false); in compare()
/freebsd-14.2/crypto/openssl/crypto/property/
H A DREADME.md41 comparison degenerates to integer comparison. Additionally, lists of
78 for dealing with property lists are also included: comparison of a query
/freebsd-14.2/share/examples/ipfilter/rules/
H A Dexample.122 # get rid of all short IP fragments (too small for valid comparison)
/freebsd-14.2/lib/libc/net/
H A Dnsdispatch.c195 vector_comparison comparison) in vector_sort() argument
197 qsort(vec, count, esize, comparison); in vector_sort()
203 vector_comparison comparison) in vector_search() argument
205 return (bsearch(key, vec, count, esize, comparison)); in vector_search()
/freebsd-14.2/contrib/bmake/unit-tests/
H A Ddirective-if.mk87 # expect+1: Don't do this, always put a space around comparison operators.

123456789