Home
last modified time | relevance | path

Searched refs:ret (Results 9026 - 9050 of 12683) sorted by relevance

1...<<361362363364365366367368369370>>...508

/third_party/protobuf/csharp/src/Google.Protobuf/
H A DExtensionSet.cs291 int ret = typeof(TTarget).GetHashCode(); in GetHashCode()
296 ret ^= hash; in GetHashCode()
298 return ret; in GetHashCode()
H A DUnknownFieldSet.cs146 int ret = 1; in GetHashCode()
151 ret ^= hash; in GetHashCode()
153 return ret; in GetHashCode()
/third_party/pulseaudio/src/modules/echo-cancel/
H A Dadrian-aec.h181 FIR_HP_300Hz *ret = pa_xnew(FIR_HP_300Hz, 1); in FIR_HP_300Hz_init() local
182 memset(ret, 0, sizeof(FIR_HP_300Hz)); in FIR_HP_300Hz_init()
183 return ret; in FIR_HP_300Hz_init()
/third_party/pulseaudio/src/pulsecore/
H A Dthread-mq.c61 int ret; in asyncmsgq_read_cb() local
69 ret = pa_asyncmsgq_dispatch(object, code, data, offset, &chunk); in asyncmsgq_read_cb()
70 pa_asyncmsgq_done(aq, ret); in asyncmsgq_read_cb()
/third_party/openssl/crypto/
H A Dprovider_child.c104 int ret = 0; in provider_create_child_cb() local
158 ret = 1; in provider_create_child_cb()
161 return ret; in provider_create_child_cb()
/third_party/openssl/crypto/ec/curve448/
H A Df_generic.c160 mask_t ret = 0; in gf_eq() local
167 ret |= c->limb[LIMBPERM(i)]; in gf_eq()
169 return word_is_zero(ret); in gf_eq()
/third_party/openssl/crypto/hmac/
H A Dhmac.c228 unsigned char *ret = NULL; in HMAC() local
231 ret = EVP_Q_mac(NULL, "HMAC", NULL, EVP_MD_get0_name(evp_md), NULL, in HMAC()
237 return ret; in HMAC()
/third_party/openssl/crypto/x509/
H A Dt_req.c24 int ret; in X509_REQ_print_fp() local
31 ret = X509_REQ_print(b, x); in X509_REQ_print_fp()
33 return ret; in X509_REQ_print_fp()
H A Dv3_prn.c208 int ret; in X509V3_EXT_print_fp() local
212 ret = X509V3_EXT_print(bio_tmp, ext, flag, indent); in X509V3_EXT_print_fp()
214 return ret; in X509V3_EXT_print_fp()
/third_party/openssl/providers/common/
H A Dbio_prov.c151 int ret; in ossl_prov_bio_printf() local
154 ret = ossl_prov_bio_vprintf(bio, format, ap); in ossl_prov_bio_printf()
157 return ret; in ossl_prov_bio_printf()
/third_party/openssl/crypto/rsa/
H A Drsa_x931g.c32 int ret = 0; in RSA_X931_derive_ex() local
141 ret = 1; in RSA_X931_derive_ex()
147 return ret; in RSA_X931_derive_ex()
/third_party/openssl/providers/implementations/kdfs/
H A Dpbkdf1.c56 int mdsize, ret = 0; in kdf_pbkdf1_do_derive() local
84 ret = 1; in kdf_pbkdf1_do_derive()
87 return ret; in kdf_pbkdf1_do_derive()
/third_party/openssl/test/
H A Dbioprinttest.c193 int ret = 1, i; in dofptest() local
211 TEST_info("test %d format=|%s| exp=|%s|, ret=|%s|", in dofptest()
213 ret = 0; in dofptest()
218 return ret; in dofptest()
H A Dbio_memleak_test.c227 long argl, int ret, size_t *processed) in BIO_error_callback()
231 ret = 0; /* fail for read operations to simulate error in input BIO */ in BIO_error_callback()
233 return ret; in BIO_error_callback()
225 BIO_error_callback(BIO *bio, int cmd, const char *argp, size_t len, int argi, long argl, int ret, size_t *processed) BIO_error_callback() argument
H A Derrtest.c55 int ret = 0, len; in test_print_error_format() local
109 ret = 1; in test_print_error_format()
112 return ret; in test_print_error_format()
H A Dpkcs7_test.c53 int ret = 0; in pkcs7_verify_test() local
76 ret = TEST_ptr(msg_bio = BIO_new_mem_buf(signed_data, strlen(signed_data))) in pkcs7_verify_test()
93 return ret; in pkcs7_verify_test()
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_timeout.c132 int ret; in ahc_echo() local
155 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
157 return ret; in ahc_echo()
/third_party/openssl/crypto/des/
H A Ddes_local.h105 # define ROTATE(a,n) ({ register unsigned int ret; \
107 : "=r"(ret) \
110 ret; \
/third_party/openssl/crypto/dso/
H A Ddso_dl.c282 void *ret; in dl_globallookup() local
285 return shl_findsym(&h, name, TYPE_UNDEFINED, &ret) ? NULL : ret; in dl_globallookup()
/third_party/toybox/toys/pending/
H A Dhost.c71 i, j, ret, sec, count, rcode, qlen, alen, pllen = 0, in host_main() local
125 if ((ret = getaddrinfo(nsname, "53", &ns_hints, &ai)) < 0) in host_main()
126 error_exit("Error looking up server name: %s", gai_strerror(ret)); in host_main()
/third_party/skia/third_party/externals/expat/expat/xmlwf/
H A Dxmlfile.c234 int ret; in externalEntityRefStream() local
239 ret = processStream(filename, entParser); in externalEntityRefStream()
242 return ret; in externalEntityRefStream()
/third_party/python/Lib/unittest/
H A Dresult.py196 ret = None
211 ret = tb
221 return ret
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dos_win32.c135 BOOL ret; in os_get_random() local
141 ret = CryptGenRandom(prov, len, buf); in os_get_random()
144 return ret ? 0 : -1; in os_get_random()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/
H A Ddbus_common.c280 int ret = 0; in wpas_dbus_init_common() local
292 ret = -1; in wpas_dbus_init_common()
296 return ret; in wpas_dbus_init_common()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dos_win32.c135 BOOL ret; in os_get_random() local
141 ret = CryptGenRandom(prov, len, buf); in os_get_random()
144 return ret ? 0 : -1; in os_get_random()

Completed in 17 milliseconds

1...<<361362363364365366367368369370>>...508