Home
last modified time | relevance | path

Searched refs:equal (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/freebsd-14.2/usr.sbin/etcupdate/tests/
H A Dtests_test.sh108 mkfifo $i/equal/equal/equal/fifo
109 echo "foo" > $i/equal/equal/equal/file
110 mkdir $i/equal/equal/equal/dir
111 ln -s "bar" $i/equal/equal/equal/link
754 fifo /equal/equal/equal/fifo
755 file /equal/equal/equal/file "foo"
756 dir /equal/equal/equal/dir
757 link /equal/equal/equal/link "bar"
948 D /first/equal/second/fifo
949 D /first/equal/second/file
[all …]
/freebsd-14.2/tools/regression/geom_gpt/
H A Dgctl_test_helper.c59 char *e, *colon, *equal; in parse() local
65 equal = strchr(arg, '='); in parse()
68 if (colon == arg || equal == arg) in parse()
70 if (colon != NULL && equal != NULL && equal < colon) in parse()
75 if (equal != NULL) in parse()
76 *equal++ = '\0'; in parse()
91 if (equal != NULL) { in parse()
92 if (strlen(equal) >= PATH_MAX) in parse()
94 strcpy(*value, equal); in parse()
99 if (*equal == '\0') in parse()
[all …]
/freebsd-14.2/tools/tools/net80211/wlaninject/
H A Dwlaninject.c188 if (equal(type, "mgt")) in str2type()
190 else if (equal(type, "ctl")) in str2type()
196 #undef equal in str2type()
202 if (equal(subtype, "preq") || equal(subtype, "probereq")) in str2subtype()
208 else if (equal(subtype, "areq") || equal(subtype, "assocreq")) in str2subtype()
216 #undef equal in str2subtype()
238 if (equal(ac, "ac_be") || equal(ac, "be")) in str2wmeac()
240 if (equal(ac, "ac_bk") || equal(ac, "bk")) in str2wmeac()
242 if (equal(ac, "ac_vi") || equal(ac, "vi")) in str2wmeac()
244 if (equal(ac, "ac_vo") || equal(ac, "vo")) in str2wmeac()
[all …]
/freebsd-14.2/share/security/
H A Dlomac-policy.contexts8 /dev(/.*)? lomac/equal
15 (/var)?/tmp(/.*)? lomac/equal
16 /tmp/\.X11-unix lomac/high[equal]
17 /tmp/\.X11-unix/.* lomac/equal
18 /proc(/.*)? lomac/equal
27 /var/run/utx.active lomac/equal
28 /var/log/utx.(lastlogin|log) lomac/equal
/freebsd-14.2/contrib/tcp_wrappers/
H A Denviron.c42 char *equal; in namelength() local
44 equal = strchr(name, '='); in namelength()
45 return ((equal == 0) ? strlen(name) : (equal - name)); in namelength()
74 char *equal = strchr(nameval, '='); in putenv() local
75 char *value = (equal ? equal : ""); in putenv()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Dpstl_equal.h72 equal(_ExecutionPolicy&& __policy, in equal() function
88 equal(_ExecutionPolicy&& __policy, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardI… in equal() function
89 …return std::equal(__policy, std::move(__first1), std::move(__last1), std::move(__first2), std::equ… in equal()
120 return std::equal( in __equal()
142 equal(_ExecutionPolicy&& __policy, in equal() function
160 equal(_ExecutionPolicy&& __policy, in equal() function
165 return std::equal( in equal()
H A Dequal.h60 equal(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _BinaryPredicate… in equal() function
67 equal(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2) { in equal() function
68 return std::equal(__first1, __last1, __first2, __equal_to()); in equal()
137 equal(_InputIterator1 __first1, in equal() function
154 equal(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 … in equal() function
/freebsd-14.2/contrib/atf/atf-c/
H A Dbuild_test.c47 bool equal; in equal_arrays() local
50 equal = true; in equal_arrays()
52 equal = false; in equal_arrays()
54 equal = true; in equal_arrays()
57 equal = false; in equal_arrays()
65 return equal; in equal_arrays()
/freebsd-14.2/contrib/atf/atf-c++/
H A Dbuild_test.cpp77 bool equal = true; in equal_argvs() local
80 while (equal && (i < aa.size() && array[i] != NULL)) { in equal_argvs()
82 equal = false; in equal_argvs()
87 if (equal && (i < aa.size() || array[i] != NULL)) in equal_argvs()
88 equal = false; in equal_argvs()
90 return equal; in equal_argvs()
/freebsd-14.2/lib/libc/amd64/string/
H A Dtimingsafe_memcmp.S70 or %eax, %ecx # nonzero if not equal
84 sbb %eax, %eax # -1 if less, 0 if greater or equal
85 or %edi, %ecx # nonzero if not equal
99 sbb %eax, %eax # -1 if less, 0 if greater or equal
100 or %rdi, %rcx # nonzero if not equal
139 sbb %eax, %eax # -1 if less, 0 if greater or equal
140 or %r10, %r8 # nonzero if not equal
/freebsd-14.2/crypto/heimdal/lib/gssapi/
H A Dtest_kcred.c65 int equal; in copy_import() local
99 maj_stat = gss_compare_name(&min_stat, name1, name2, &equal); in copy_import()
102 if (!equal) in copy_import()
123 maj_stat = gss_compare_name(&min_stat, name1, name2, &equal); in copy_import()
126 if (!equal) in copy_import()
H A Dtest_names.c109 int len, equal; in main() local
171 maj_stat = gss_compare_name(&min_stat, MNname, MNname2, &equal); in main()
174 if (!equal) in main()
209 maj_stat = gss_compare_name(&min_stat, name, MNname, &equal); in main()
212 if (!equal) in main()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__random/
H A Dsubtract_with_carry_engine.h206 return std::equal(__x.__x_, __x.__x_ + _Rp, __y.__x_);
209 if (!std::equal(__x.__x_ + __x.__i_, __x.__x_ + __x.__i_ + __j, __y.__x_ + __y.__i_))
212 return std::equal(__x.__x_ + __j, __x.__x_ + _Rp, __y.__x_);
213 return std::equal(__x.__x_, __x.__x_ + (_Rp - __j), __y.__x_ + __j);
217 if (!std::equal(__x.__x_ + __x.__i_, __x.__x_ + (__x.__i_ + __j), __y.__x_ + __y.__i_))
219 if (!std::equal(__x.__x_ + (__x.__i_ + __j), __x.__x_ + _Rp, __y.__x_))
221 return std::equal(__x.__x_, __x.__x_ + __x.__i_, __y.__x_ + (_Rp - (__x.__i_ + __j)));
224 if (!std::equal(__y.__x_ + __y.__i_, __y.__x_ + (__y.__i_ + __j), __x.__x_ + __x.__i_))
226 if (!std::equal(__y.__x_ + (__y.__i_ + __j), __y.__x_ + _Rp, __x.__x_))
228 return std::equal(__y.__x_, __y.__x_ + __y.__i_, __x.__x_ + (_Rp - (__y.__i_ + __j)));
/freebsd-14.2/sys/contrib/device-tree/Bindings/gpio/
H A Dgpio-max3191x.txt19 The number of GPIOs must equal "#daisy-chained-devices"
23 The number of GPIOs must equal "#daisy-chained-devices"
26 The number of GPIOs must equal "#daisy-chained-devices"
29 The number of GPIOs must equal "maxim,db0-gpios".
/freebsd-14.2/contrib/unbound/services/cache/
H A Drrset.c127 need_to_update_rrset(void* nd, void* cd, time_t timenow, int equal, int ns) in need_to_update_rrset() argument
141 newd->security != sec_status_bogus && !equal) in need_to_update_rrset()
147 if(equal && cached->ttl >= timenow && in need_to_update_rrset()
156 if( newd->trust == cached->trust && !equal ) { in need_to_update_rrset()
197 int equal = 0; in rrset_cache_update() local
211 equal = rrsetdata_equal((struct packed_rrset_data*)k->entry. in rrset_cache_update()
214 equal, (rrset_type==LDNS_RR_TYPE_NS))) { in rrset_cache_update()
218 if(equal) return 2; in rrset_cache_update()
238 || rrset_type == LDNS_RR_TYPE_DNAME) && !equal) { in rrset_cache_update()
/freebsd-14.2/sys/contrib/device-tree/Bindings/sound/
H A Dimx-audio-card.yaml75 fsl,mclk-equal-bclk:
76 description: Indicates mclk can be equal to bclk, especially for sai interface
99 fsl,mclk-equal-bclk;
119 fsl,mclk-equal-bclk;
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/include/
H A Dmath.shlib21 # Do $action if the calculated percentage is greater or equal to that passed in:
90 # Verify $a is equal to $b, otherwise raise an error specifying
100 log_fail "Compared $type should be equal: $a != $b"
105 # Verify $a is not equal to $b, otherwise raise an error specifying
115 log_fail "Compared $type should be not equal: $a == $b"
/freebsd-14.2/contrib/llvm-project/libcxx/include/__compare/
H A Dcompare_strong_order_fallback.h42 std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? strong_ordering::equal
46 -> decltype(std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? strong_ordering::equal
50 return std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? strong_ordering::equal
/freebsd-14.2/contrib/llvm-project/libcxx/include/__iterator/
H A Distreambuf_iterator.h82 _LIBCPP_HIDE_FROM_ABI bool equal(const istreambuf_iterator& __b) const { in equal() function
96 return __a.equal(__b);
103 return !__a.equal(__b);
/freebsd-14.2/bin/sh/bltin/
H A Decho.c64 if (equal(p, "-n")) { in main()
67 } else if (equal(p, "-e")) { in main()
/freebsd-14.2/usr.bin/tip/tip/
H A Dtip.c79 if (equal(__progname, "cu")) { in main()
618 if (equal(parity, "none")) { in setparity()
626 if (equal(parity, "odd")) in setparity()
628 else if (equal(parity, "zero")) in setparity()
630 else if (equal(parity, "one")) in setparity()
632 else if (!equal(parity, "even")) { in setparity()
H A Dvalue.c130 if (p->v_value && equal(p->v_value, v)) in vassign()
164 if (equal(s, "all")) { in vlex()
287 if (equal(p->v_name, s) || (p->v_abrev && equal(p->v_abrev, s))) in vlookup()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DChecksum.cpp29 Checksum::operator bool() const { return !llvm::equal(m_checksum, g_sentinel); } in operator bool()
32 return llvm::equal(m_checksum, checksum.m_checksum); in operator ==()
/freebsd-14.2/contrib/unifdef/tests/
H A Dif5.c57 #error FOO is greater than or equal FOOB
63 #error FOOB is less than or equal FOO
/freebsd-14.2/contrib/one-true-awk/testdir/
H A DT.getline83 echo 'false false equal' >foo1
90 if ($0==$1) printf "equal\n"
91 else printf "not equal\n"

12345678910>>...22