Searched refs:ret (Results 301 - 325 of 4059) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/lib/libc/gen/
H A Dsiginterrupt.c50 int ret; local
52 if ((ret = __libc_sigaction(sig, (struct sigaction *)0, &sa)) < 0)
53 return (ret);
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Dp_dec.c20 int ret = -1; local
30 ret =
35 return ret;
H A Dp_enc.c20 int ret = 0; local
29 ret =
34 return ret;
/freebsd-13-stable/crypto/openssl/crypto/x509/
H A Dx_attrib.c38 X509_ATTRIBUTE *ret = NULL;
44 if ((ret = X509_ATTRIBUTE_new()) == NULL)
46 ret->object = oid;
49 if (!sk_ASN1_TYPE_push(ret->set, val))
53 return ret;
55 X509_ATTRIBUTE_free(ret);
/freebsd-13-stable/contrib/tcpdump/
H A Dvfprintf.c44 int ret; local
52 ret = _doprnt(fmt, args, f);
53 return ferror(f) ? EOF : ret;
/freebsd-13-stable/lib/msun/src/
H A Ds_nearbyint.c43 * that rint won't raise any floating-point exceptions. Declaring ret volatile
50 volatile type ret; \
54 ret = rint(x); \
56 return (ret); \
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp22 std::vector<CompilerType> ret; local
28 ret.push_back(type);
29 return ret;
/freebsd-13-stable/contrib/ldns/compat/
H A Dtimegm.c15 time_t ret; local
21 ret = mktime(tm);
30 return ret;
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/rm_lnkcnt_zero_file/
H A Drm_lnkcnt_zero_file.c63 int idx, len, ret; local
70 ret = rename(filebase, buf);
71 if (ret < 0 && errno != ENOENT)
83 int idx, len, ret; local
90 ret = remove(buf);
91 if (ret < 0 && errno != ENOENT)
102 int ret; local
114 ret = write(*fd, "test\n", 5);
115 if (ret != 5)
146 int ret; local
[all...]
/freebsd-13-stable/contrib/openpam/lib/libpam/
H A Dopenpam_vasprintf.c49 int len, ret; local
55 ret = vsnprintf(*str, len + 1, fmt, apcopy);
57 return (ret);
/freebsd-13-stable/stand/libsa/
H A Dinet_ntoa.c52 static char ret[sizeof "255.255.255.255"]; local
55 sprintf(ret, fmt, src[0], src[1], src[2], src[3]);
56 return (ret);
/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dkeyblock.c132 krb5_error_code ret; local
143 ret = krb5_copy_keyblock_contents (context, inblock, k);
144 if (ret) {
146 return ret;
180 krb5_error_code ret; local
185 ret = krb5_enctype_keysize(context, type, &len);
186 if (ret)
187 return ret;
196 ret = krb5_data_copy(&key->keyvalue, data, len);
197 if(ret) {
[all...]
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dstrtok_r.c45 char *ret; local
53 ret = s1;
59 return ret;
/freebsd-13-stable/crypto/heimdal/lib/wind/
H A Drfc3454.py44 ret = {}
52 ret[m.group(1)] = t
60 return ret
/freebsd-13-stable/crypto/openssl/crypto/asn1/
H A Da_i2d_fp.c21 int ret; local
28 ret = ASN1_i2d_bio(i2d, b, x);
30 return ret;
38 int i, j = 0, n, ret = 1; local
58 ret = 0;
65 return ret;
74 int ret; local
81 ret = ASN1_item_i2d_bio(it, b, x);
83 return ret;
90 int i, j = 0, n, ret local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/dh/
H A Ddh_prn.c19 int ret; local
26 ret = DHparams_print(b, x);
28 return ret;
/freebsd-13-stable/usr.bin/gzip/
H A Dunbzip2.c41 int ret, end_of_file, cold = 0; local
58 ret = BZ2_bzDecompressInit(&bzs, 0, 0);
59 if (ret != BZ_OK)
69 while (ret == BZ_OK) {
88 ret = BZ2_bzDecompress(&bzs);
90 switch (ret) {
93 if (ret == BZ_OK && end_of_file) {
100 ret = BZ_STREAM_END;
113 if (ret == BZ_STREAM_END && !end_of_file) {
118 ret
[all...]
/freebsd-13-stable/tests/sys/cddl/zfs/tests/exec/
H A Dexec_002_neg.ksh80 ret=$?
81 if [[ $ret != $expect_value ]]; then
82 log_fail "Unexpected return code: '$ret'"
/freebsd-13-stable/crypto/heimdal/lib/hdb/
H A Dmkey.c64 krb5_error_code ret; local
72 ret = krb5_parse_name(context, "K/M", &(*mkey)->keytab.principal);
73 if(ret)
75 ret = krb5_copy_keyblock_contents(context, key, &(*mkey)->keytab.keyblock);
76 if(ret)
81 ret = krb5_crypto_init(context, key, etype, &(*mkey)->crypto);
82 if(ret)
88 return ret;
97 krb5_error_code ret; local
102 ret
114 krb5_error_code ret; local
152 krb5_error_code ret; local
199 krb5_error_code ret; local
246 krb5_error_code ret; local
290 krb5_error_code ret; local
345 krb5_error_code ret; local
368 hdb_master_key ret = NULL; local
410 krb5_error_code ret; local
465 krb5_error_code ret; local
493 krb5_error_code ret; local
531 krb5_error_code ret; local
563 krb5_error_code ret; local
583 krb5_error_code ret; local
[all...]
/freebsd-13-stable/contrib/sendmail/libsm/
H A Dfwalk.c39 register int n, ret; local
43 ret = 0;
56 ret |= (*function)(fp, &fptimeout);
60 return ret;
/freebsd-13-stable/contrib/xz/src/liblzma/common/
H A Dblock_buffer_decoder.c29 lzma_ret ret = lzma_block_decoder_init( local
32 if (ret == LZMA_OK) {
39 ret = block_decoder.code(block_decoder.coder, allocator,
43 if (ret == LZMA_STREAM_END) {
44 ret = LZMA_OK;
46 if (ret == LZMA_OK) {
63 ret = LZMA_DATA_ERROR;
65 ret = LZMA_BUF_ERROR;
79 return ret;
H A Dfilter_buffer_decoder.c37 lzma_ret ret = next.code(next.coder, allocator, in, in_pos, in_size, local
40 if (ret == LZMA_STREAM_END) {
41 ret = LZMA_OK;
43 if (ret == LZMA_OK) {
52 ret = LZMA_BUF_ERROR;
57 ret = LZMA_DATA_ERROR;
74 ret = LZMA_BUF_ERROR;
76 ret = LZMA_DATA_ERROR;
87 return ret;
/freebsd-13-stable/crypto/heimdal/admin/
H A Dchange.c43 krb5_error_code ret; local
51 ret = krb5_unparse_name (context, principal, &client_name);
52 if (ret) {
53 krb5_warn (context, ret, "krb5_unparse_name");
54 return ret;
85 ret = kadm5_init_with_skey_ctx (context,
93 if (ret) {
94 krb5_warn (context, ret,
97 return ret;
99 ret
136 krb5_error_code ret; local
[all...]
/freebsd-13-stable/lib/csu/aarch64/
H A Dcrtn.S36 ret
42 ret
/freebsd-13-stable/lib/csu/riscv/
H A Dcrtn.S41 ret
46 ret

Completed in 300 milliseconds

<<11121314151617181920>>