Searched refs:good (Results 1 - 25 of 90) sorted by relevance

1234

/freebsd-13-stable/tools/regression/nfsmmap/test1/
H A DMakefile6 CLEANFILES= test1.zeros test1.good test1.data test1.scratch
8 all: test1 test1.zeros test1.good
14 @if cmp -s ${.OBJDIR}/test1.data ${.OBJDIR}/test1.good && \
15 cmp -s ${.OBJDIR}/test1.scratch ${.OBJDIR}/test1.good ; then \
24 test1.good: test1.good.uu
/freebsd-13-stable/tools/regression/nfsmmap/test2/
H A DMakefile6 CLEANFILES= test2.zeros test2.good test2.data test2.scratch
8 all: test2 test2.zeros test2.good
14 @if cmp -s ${.OBJDIR}/test2.data ${.OBJDIR}/test2.good && \
15 cmp -s ${.OBJDIR}/test2.scratch ${.OBJDIR}/test2.good ; then \
24 test2.good: test2.good.uu
/freebsd-13-stable/crypto/openssl/crypto/rsa/
H A Drsa_ssl.c67 unsigned int good, found_zero_byte, mask, threes_in_row; local
96 good = constant_time_is_zero(em[0]);
97 good &= constant_time_eq(em[1], 2);
98 err = constant_time_select_int(good, 0, RSA_R_BLOCK_TYPE_IS_NOT_02);
99 mask = ~good;
120 good &= constant_time_ge(zero_index, 2 + 8);
121 err = constant_time_select_int(mask | good, err,
123 mask = ~good;
131 good &= constant_time_lt(threes_in_row, 8);
132 err = constant_time_select_int(mask | good, er
[all...]
H A Drsa_pk1.c161 unsigned int good, found_zero_byte, mask; local
196 good = constant_time_is_zero(em[0]);
197 good &= constant_time_eq(em[1], 2);
214 good &= constant_time_ge(zero_index, 2 + 8);
224 * For good measure, do this check in constant time as well.
226 good &= constant_time_ge(tlen, mlen);
230 * Then if |good| move |mlen| bytes from |em|+RSA_PKCS1_PADDING_SIZE to |to|.
246 mask = good & constant_time_lt(i, mlen);
252 err_clear_last_constant_time(1 & good);
254 return constant_time_select_int(good, mle
[all...]
H A Drsa_oaep.c123 unsigned int good = 0, found_one_byte, mask; local
188 good = constant_time_is_zero(em[0]);
206 good &= constant_time_is_zero(CRYPTO_memcmp(db, phash, mdlen));
218 good &= (found_one_byte | equals0);
221 good &= found_one_byte;
224 * At this point |good| is zero unless the plaintext was valid,
232 * For good measure, do this check in constant time as well.
234 good &= constant_time_ge(tlen, mlen);
238 * Then if |good| move |mlen| bytes from |db|+|mdlen|+1 to |to|.
254 mask = good
[all...]
/freebsd-13-stable/contrib/apr-util/test/
H A Dtest_apu.h35 #define TEST_EQ(str, func, value, good, bad) \
46 printf("%s\n", good); \
49 #define TEST_NEQ(str, func, value, good, bad) \
60 printf("%s\n", good); \
63 #define TEST_STATUS(str, func, testmacro, good, bad) \
74 printf("%s\n", good); \
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/gzip/
H A Dt_gzip.sh86 atf_test_case good
93 cat >good.gz.uue <<EOF
94 begin-base64 644 good.gz
98 uudecode -m good.gz.uue
100 atf_check gzip -d good.gz
109 atf_add_test_case good
/freebsd-13-stable/contrib/kyua/utils/logging/
H A Doperations_test.cpp112 ATF_REQUIRE(std::getline(input, line).good());
115 ATF_REQUIRE(std::getline(input, line).good());
118 ATF_REQUIRE(std::getline(input, line).good());
121 ATF_REQUIRE(std::getline(input, line).good());
143 ATF_REQUIRE(std::getline(input, line).good());
163 ATF_REQUIRE(std::getline(input, line).good());
217 ATF_REQUIRE(std::getline(input, line).good());
220 ATF_REQUIRE(std::getline(input, line).good());
223 ATF_REQUIRE(std::getline(input, line).good());
226 ATF_REQUIRE(std::getline(input, line).good());
[all...]
H A Dmacros_test.cpp56 ATF_REQUIRE(std::getline(input, line).good());
72 ATF_REQUIRE(std::getline(input, line).good());
88 ATF_REQUIRE(std::getline(input, line).good());
104 ATF_REQUIRE(std::getline(input, line).good());
/freebsd-13-stable/contrib/kyua/model/
H A Dtest_result.hpp67 bool good(void) const;
H A Dtest_result.cpp73 /// \return Whether the test case is good or not.
75 model::test_result::good(void) const function in class:model::test_result
/freebsd-13-stable/usr.bin/patch/tests/
H A DMakefile8 ${PACKAGE}FILES+= PR74127-good.diff
/freebsd-13-stable/tests/sys/acl/
H A Drun121 my @good = ();
133 push @good, ($use_re ? '!~' : '!=');
136 push @good, ($use_re ? '=~' : '==');
139 my $good = !(grep /!/, @good);
141 $failed++ unless $good;
142 print $good ? $OK : $FAILED, "\n";
143 if (!$good || $opt_v) {
150 $r, $good[$n], $l);
/freebsd-13-stable/contrib/bearssl/conf/
H A DUnix32.mk4 # ctmul32...), which is not necessarily a good idea for performance, but
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dexport-all.mk3 UT_OK= good
/freebsd-13-stable/contrib/kyua/engine/
H A Datf_list.cpp82 while (std::getline(input, line).good() && !line.empty()) {
167 || !input.good())
173 if (!line.empty() || !input.good())
178 while (std::getline(input, line).good()) {
H A Datf_result.hpp95 bool good(void) const;
/freebsd-13-stable/contrib/lutok/examples/
H A Dinterpreter.cpp77 if (!std::getline(std::cin, line).good())
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_about.cpp85 while (std::getline(input, line).good()) {
90 while (std::getline(input, line).good()) {
H A Dcmd_debug.cpp93 return result.test_result.good() ? EXIT_SUCCESS : EXIT_FAILURE;
/freebsd-13-stable/contrib/kyua/utils/
H A Dstream.cpp141 while (input.good()) {
143 if (input.good() || input.eof()) {
/freebsd-13-stable/lib/libc/net/
H A Deui64.c155 goto good;
160 goto good;
165 goto good;
172 goto good;
180 goto good;
185 good:
/freebsd-13-stable/contrib/bearssl/src/ssl/
H A Dssl_rec_cbc.c108 uint32_t good, pad_len, rot_count, len_withmac, len_nomac; local
142 good = LE(pad_len, (uint32_t)(max_len - min_len));
143 len = MUX(good, (uint32_t)(max_len - pad_len), min_len);
150 good &= LT(u, len) | EQ(buf[u], pad_len);
212 good &= EQ0(tmp1[u] ^ tmp2[u]);
223 good &= LE(len_nomac, 16384);
225 if (!good) {
/freebsd-13-stable/contrib/bearssl/test/
H A Dtest_math.c172 int good; local
177 good = 1;
179 good = 0;
185 good = 0;
190 good = good && memcmp(xb + xlen - zlen, zb, zlen) == 0;
191 if (!good) {
/freebsd-13-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Ddirectory_iterator.cpp130 bool good() const noexcept { return __stream_ != INVALID_HANDLE_VALUE; }
197 bool good() const noexcept { return __stream_ != nullptr; }
244 if (!__imp_->good()) {
286 if (m_ec || !new_s.good())
378 if (new_it.good()) {

Completed in 281 milliseconds

1234