Home
last modified time | relevance | path

Searched refs:result (Results 201 – 225 of 3089) sorted by relevance

12345678910>>...124

/freebsd/contrib/ldns/
H A Ddnssec_verify.c1082 result = in ldns_dnssec_trust_tree_contains_keys()
1094 return result; in ldns_dnssec_trust_tree_contains_keys()
1485 return result; in ldns_verify_trusted_time()
1806 return result; in ldns_dnssec_verify_denial_nsec3_match()
1866 return result; in ldns_verify_rrsig_gost_raw()
1904 return result; in ldns_verify_rrsig_ed25519_raw()
1942 return result; in ldns_verify_rrsig_ed448_raw()
2004 return result; in ldns_verify_rrsig_ecdsa_raw()
2575 return result; in ldns_verify_rrsig_time()
2705 return result;
[all …]
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_mouse.c475 result = TRUE; in allow_gpm_mouse()
531 bool result; in enable_gpm_mouse() local
580 result = enable; in enable_gpm_mouse()
851 result = TRUE; in _nc_mouse_event()
963 result = FALSE; in handle_wheel()
972 bool result; in decode_X10_bstate() local
1066 bool result; in decode_xterm_X10() local
1118 bool result; in decode_xterm_1005() local
1206 memset(result, 0, sizeof(*result)); in read_SGR()
1368 if (!result) { in _nc_mouse_inline()
[all …]
H A Dlib_delwin.c52 bool result = TRUE; in cannot_delete() local
59 result = FALSE; in cannot_delete()
62 result = TRUE; in cannot_delete()
66 return result; in cannot_delete()
72 int result = ERR; in delwin() local
79 result = ERR; in delwin()
89 result = _nc_freewin(win); in delwin()
93 returnCode(result); in delwin()
/freebsd/usr.bin/posixmqcontrol/
H A Dposixmqcontrol.c479 if (result != 0) { in create()
494 if (result != 0) { in create()
526 if (result != 0) { in rm()
533 return (result); in rm()
572 if (result != 0) { in info()
590 if (result != 0) { in info()
630 if (result != 0) { in recv()
643 if (result < 0) { in recv()
651 fprintf(stdout, "[%u]: %-*.*s\n", q_priority, result, result, text); in recv()
676 if (result != 0) { in send()
[all …]
/freebsd/crypto/openssl/test/
H A Ddrbgtest.c304 int result; in compare_drbg_fork_result() local
311 if (result == 0) in compare_drbg_fork_result()
314 if (result == 0) in compare_drbg_fork_result()
317 return result; in compare_drbg_fork_result()
365 result[0].pid = pid; in test_drbg_reseed_in_child()
420 memset(&result, 0, sizeof(result)); in test_rand_reseed_on_fork()
450 result[0].pid = pid; in test_rand_reseed_on_fork()
451 result[0].private = 0; in test_rand_reseed_on_fork()
455 result[1].pid = pid; in test_rand_reseed_on_fork()
456 result[1].private = 1; in test_rand_reseed_on_fork()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
H A Dfe_frombytes_sandy2x.c12 uint64_t result; in load_3() local
13 result = (uint64_t) in[0]; in load_3()
14 result |= ((uint64_t) in[1]) << 8; in load_3()
15 result |= ((uint64_t) in[2]) << 16; in load_3()
16 return result; in load_3()
22 uint64_t result; in load_4() local
23 result = (uint64_t) in[0]; in load_4()
24 result |= ((uint64_t) in[1]) << 8; in load_4()
25 result |= ((uint64_t) in[2]) << 16; in load_4()
26 result |= ((uint64_t) in[3]) << 24; in load_4()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h94 unsigned char result = Flags; in getDescriptorByte() local
95 result |= ((unsigned)getKind()) << 4; in getDescriptorByte()
96 return result; in getDescriptorByte()
118 CharUnits result; in size() local
119 result += CharUnits::fromQuantity(2); // summary byte, num-args byte in size()
122 result += item.size() + CharUnits::fromQuantity(2); in size()
124 return result; in size()
140 unsigned char result = 0; in getSummaryByte() local
142 result |= HasPrivateItems; in getSummaryByte()
144 result |= HasNonScalarItems; in getSummaryByte()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DARMUtils.h110 return result; in LSL()
134 return result; in LSR()
165 return result; in ASR()
179 return result; in ROR_C()
190 return result; in ROR()
208 return result; in RRX()
226 uint32_t result; in Shift_C() local
229 result = LSL_C(value, amount, carry_out, success); in Shift_C()
232 result = LSR_C(value, amount, carry_out, success); in Shift_C()
248 return result; in Shift_C()
[all …]
/freebsd/contrib/llvm-project/libcxx/src/support/ibm/
H A Dwcsnrtombs.cpp30 size_t result = 0; in wcsnrtombs() local
39 ++source_converted, dest_converted += result) { in wcsnrtombs()
44 result = wcrtomb(NULL, c, ps); in wcsnrtombs()
47 result = wcrtomb(dst + dest_converted, c, ps); in wcsnrtombs()
61 result = wcrtomb(buff, c, ps); in wcsnrtombs()
63 if (result > dest_remaining) { in wcsnrtombs()
67 if (result != invalid_wchar) in wcsnrtombs()
71 memcpy(dst, buff, result); in wcsnrtombs()
77 if (result == invalid_wchar) { in wcsnrtombs()
/freebsd/bin/hostname/tests/
H A Dhostname_test.sh69 result=$(jexec ${test_jail_name} "hostname")
70 atf_check_equal "test-hostname.example.org" "${result}"
72 result=$(jexec ${test_jail_name} "hostname" -s)
73 atf_check_equal "test-hostname" "${result}"
75 result=$(jexec ${test_jail_name} "hostname" -d)
76 atf_check_equal "example.org" "${result}"
79 result=$(jexec ${test_jail_name} "hostname")
80 atf_check_equal "test-bsd2" "${result}"
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dparse_entry.c188 result = "boolean"; in usertype2s()
190 result = "number"; in usertype2s()
192 result = "string"; in usertype2s()
194 return result; in usertype2s()
201 bool result = TRUE; in expected_type() local
210 result = FALSE; in expected_type()
213 return result; in expected_type()
220 bool result = TRUE; in valid_entryname() local
224 result = FALSE; in valid_entryname()
228 return result; in valid_entryname()
[all …]
H A Dlib_tparm.c260 int result = 0; in npop() local
269 return result; in npop()
298 return result; in spop()
547 memset(result, 0, sizeof(*result)); in tparm_setup()
560 *result = *fs; in tparm_setup()
582 result->num_actual = max(result->num_popped, result->num_parsed); in tparm_setup()
590 *fs = *result; in tparm_setup()
1002 return result; in tparm()
1041 return result; in tparm()
1066 return result; in tiparm()
[all …]
/freebsd/lib/msun/tests/
H A Dctrig_test.c60 creall(_d), cimagl(_d), creall(result), cimagl(result)); \
74 #define test_p_tol(func, z, result, tol) do { \ argument
76 creall(z), cimagl(z), creall(result), cimagl(result)); \
85 #define test_tol(func, z, result, tol) do { \ argument
86 test_p_tol(func, z, result, tol); \
89 #define test_odd_tol(func, z, result, tol) do { \ argument
90 test_tol(func, z, result, tol); \
91 test_tol(func, -(z), -(result), tol); \
94 test_tol(func, z, result, tol); \
95 test_tol(func, -(z), result, tol); \
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatunsisf.c30 rep_t result; in __floatunsisf() local
35 result = (rep_t)a << shift ^ implicitBit; in __floatunsisf()
38 result = (rep_t)a >> shift ^ implicitBit; in __floatunsisf()
41 result++; in __floatunsisf()
43 result += result & 1; in __floatunsisf()
47 result += (rep_t)(exponent + exponentBias) << significandBits; in __floatunsisf()
48 return fromRep(result); in __floatunsisf()
/freebsd/usr.sbin/nscd/
H A Dmp_rs_query.c93 ssize_t result; in on_mp_read_session_request_read1() local
132 ssize_t result; in on_mp_read_session_request_read2() local
140 if (result < 0 || (size_t)result != qstate->kevent_watermark) { in on_mp_read_session_request_read2()
329 ssize_t result; in on_mp_read_session_response_write1() local
337 if (result != sizeof(int)) { in on_mp_read_session_response_write1()
364 ssize_t result; in on_mp_read_session_mapper() local
452 ssize_t result; in on_mp_read_session_read_response_write1() local
463 if (result < 0 || (size_t)result != qstate->kevent_watermark) { in on_mp_read_session_read_response_write1()
473 if (result < 0 || (size_t)result != qstate->kevent_watermark) { in on_mp_read_session_read_response_write1()
492 ssize_t result; in on_mp_read_session_read_response_write2() local
[all …]
/freebsd/sys/dev/tpm/
H A Dtpm20.c72 int result = 0; in tpm20_read() local
95 return (result); in tpm20_read()
103 int result = 0; in tpm20_write() local
126 if (result != 0) { in tpm20_write()
128 return (result); in tpm20_write()
133 if (result == 0) { in tpm20_write()
140 return (result); in tpm20_write()
191 int result; in tpm20_init() local
205 if (result != 0) in tpm20_init()
214 return (result); in tpm20_init()
[all …]
/freebsd/cddl/usr.sbin/zfsd/
H A Dvdev_iterator.cc80 int result; in Reset() local
84 result = nvlist_lookup_nvlist(m_poolConfig, in Reset()
87 if (result != 0) in Reset()
91 result = nvlist_lookup_nvlist_array(rootVdev, in Reset()
95 if (result == 0) in Reset()
98 result = nvlist_lookup_nvlist_array(rootVdev, in Reset()
102 if (result == 0) in Reset()
114 int result; in Next() local
121 result = nvlist_lookup_nvlist_array(vdevConfig, in Next()
124 if (result != 0) { in Next()
/freebsd/contrib/ncurses/
H A Dmk-1st.awk77 result = sprintf("%s%s%s.a", prefix, a_name, suffix);
81 result = "";
83 return result;
98 return result;
113 return result;
118 result = lib_name_of(a_name);
120 result = lib_name_of(a_name);
123 result = rel_name_of(a_name);
125 result = abi_name_of(a_name);
127 result = lib_name_of(a_name);
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStringExtractor.cpp102 return result; in GetU32()
117 return result; in GetS32()
132 return result; in GetU64()
147 return result; in GetS64()
155 uint32_t result = 0; in GetHexMaxU32() local
194 result <<= 4; in GetHexMaxU32()
195 result |= nibble; in GetHexMaxU32()
201 return result; in GetHexMaxU32()
206 uint64_t result = 0; in GetHexMaxU64() local
245 result <<= 4; in GetHexMaxU64()
[all …]
/freebsd/contrib/unbound/sldns/
H A Dparseutil.c110 result->tm_year = year; in sldns_year_and_yday_from_days_since_epoch()
122 int idays = result->tm_yday; in sldns_mon_and_mday_from_year_and_yday()
126 result->tm_mon = 0; in sldns_mon_and_mday_from_year_and_yday()
130 result->tm_mday = idays + 1; in sldns_mon_and_mday_from_year_and_yday()
139 + result->tm_yday; in sldns_wday_from_year_and_yday()
140 result->tm_wday = LDNS_MOD(result->tm_wday, 7); in sldns_wday_from_year_and_yday()
141 if (result->tm_wday < 0) { in sldns_wday_from_year_and_yday()
142 result->tm_wday += 7; in sldns_wday_from_year_and_yday()
149 result->tm_isdst = 0; in sldns_gmtime64_r()
160 result->tm_year -= 1900; in sldns_gmtime64_r()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp39 result.SetStatus(m_success_return); in DoExecute()
45 HandleOneThread(thread->GetID(), result); in DoExecute()
81 result.AppendErrorWithFormat("no thread with index: \"%s\"\n", in DoExecute()
94 if (!BucketThread(tid, unique_stacks, result)) { in DoExecute()
100 Stream &strm = result.GetOutputStream(); in DoExecute()
116 if (!HandleOneThread(thread->GetID(), result)) { in DoExecute()
124 result.AppendMessage(""); in DoExecute()
126 if (!HandleOneThread(tid, result)) in DoExecute()
136 CommandReturnObject &result) { in BucketThread() argument
199 result.AppendErrorWithFormat("no thread with index: \"%s\"\n", in DoExecute()
[all …]
H A DCommandObjectTrace.cpp122 result.AppendMessageWithFormatv( in DoExecute()
124 result.SetStatus(eReturnStatusSuccessFinishResult); in DoExecute()
126 result.AppendError(toString(desc_file.takeError())); in DoExecute()
209 result.AppendErrorWithFormat( in DoExecute()
219 result.SetStatus(eReturnStatusSuccessFinishResult); in DoExecute()
280 result.SetStatus(eReturnStatusSuccessFinishResult); in DoExecute()
282 result.AppendErrorWithFormat("%s\n", error.AsCString()); in DoExecute()
347 result.AppendError( in DoExecute()
360 result.AppendMessage(schema); in DoExecute()
365 result.AppendMessage(*schemaOrErr); in DoExecute()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A DDD.h23 doublebits result = {.d = x}; in local_fabs() local
24 result.x &= UINT64_C(0x7fffffffffffffff); in local_fabs()
25 return result.d; in local_fabs()
29 doublebits result = {.d = x}; in high26bits() local
30 result.x &= UINT64_C(0xfffffffff8000000); in high26bits()
31 return result.d; in high26bits()
36 int result = (int)(xsignbit.x >> 63) ^ (int)(ysignbit.x >> 63); in different_sign() local
37 return result; in different_sign()
/freebsd/contrib/libcbor/src/cbor/internal/
H A Dloaders.c16 uint16_t result; in _cbor_load_uint16() local
17 memcpy(&result, source, 2); in _cbor_load_uint16()
18 return result; in _cbor_load_uint16()
26 uint32_t result; in _cbor_load_uint32() local
27 memcpy(&result, source, 4); in _cbor_load_uint32()
28 return result; in _cbor_load_uint32()
38 uint64_t result; in _cbor_load_uint64() local
39 memcpy(&result, source, 8); in _cbor_load_uint64()
40 return result; in _cbor_load_uint64()
/freebsd/contrib/capsicum-test/
H A Dcapsicum-test.cc86 char result = '\0'; in ProcessState() local
90 result = 'T'; in ProcessState()
94 result = 'S'; in ProcessState()
96 result = 'D'; in ProcessState()
100 result = 'R'; in ProcessState()
105 result = 'S'; in ProcessState()
108 result = 'Z'; in ProcessState()
111 result = '?'; in ProcessState()
116 if (verbose) fprintf(stderr, "Process %d in state '%c'\n", pid, result); in ProcessState()
117 return result; in ProcessState()

12345678910>>...124