HomeSort by relevance Sort by last modified time
    Searched defs:ret (Results 1 - 25 of 5747) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-freebsd/lib/libc/string/
wcpncpy.c 38 wchar_t *ret = dst; local
41 return (ret);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
feof.c 45 int ret; local
48 ret = __sfeof(fp);
50 return (ret);
ferror.c 45 int ret; local
48 ret = __sferror(fp);
50 return (ret);
fileno.c 45 int ret; local
48 ret = __sfileno(fp);
50 return (ret);
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_posix.c 30 int ret = pipe(pipefd); local
31 if (ret != 0) {
32 return ret;
34 ret = fcntl(pipefd[1], F_GETFL);
35 if (ret == -1) {
39 ret = fcntl(pipefd[1], F_SETFL, ret | O_NONBLOCK);
40 if (ret != 0) {
50 return ret;
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
d2i_pu.c 78 EVP_PKEY *ret; local
82 if ((ret=EVP_PKEY_new()) == NULL)
88 else ret= *a;
90 if (!EVP_PKEY_set_type(ret, type))
96 switch (EVP_PKEY_id(ret))
100 if ((ret->pkey.rsa=d2i_RSAPublicKey(NULL,
110 if (!d2i_DSAPublicKey(&(ret->pkey.dsa),
120 if (!o2i_ECPublicKey(&(ret->pkey.ec),
133 if (a != NULL) (*a)=ret;
134 return(ret);
    [all...]
x_x509.c 87 X509 *ret = (X509 *)*pval; local
92 ret->valid=0;
93 ret->name = NULL;
94 ret->ex_flags = 0;
95 ret->ex_pathlen = -1;
96 ret->skid = NULL;
97 ret->akid = NULL;
99 ret->rfc3779_addr = NULL;
100 ret->rfc3779_asid = NULL;
102 ret->aux = NULL
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
p_dec.c 72 int ret= -1; local
83 ret=RSA_private_decrypt(ekl,ek,key,priv->pkey.rsa,RSA_PKCS1_PADDING);
86 return(ret);
p_enc.c 72 int ret=0; local
82 ret=RSA_public_encrypt(key_len,key,ek,pubk->pkey.rsa,RSA_PKCS1_PADDING);
85 return(ret);
  /external/chromium_org/third_party/opus/src/silk/
init_encoder.c 47 opus_int ret = 0; local
61 ret += silk_VAD_Init( &psEnc->sCmn.sVAD );
63 return ret;
  /external/clang/test/CodeGen/
inline-asm-mrv.c 6 int ret; local
10 asm volatile("set %0 %1" : "=r"(ret) : "r"(blk1));
11 return ret;
  /external/libopus/silk/
init_encoder.c 47 opus_int ret = 0; local
61 ret += silk_VAD_Init( &psEnc->sCmn.sVAD );
63 return ret;
  /external/libunwind/src/dwarf/
Gstep.c 32 int ret; local
34 if ((ret = dwarf_find_save_locs (c)) >= 0) {
36 ret = 1;
39 Debug (15, "returning %d\n", ret);
40 return ret;
  /external/libunwind/src/hppa/
init.h 31 int ret; local
36 ret = dwarf_get (&c->dwarf, c->dwarf.loc[UNW_HPPA_IP], &c->dwarf.ip);
37 if (ret < 0)
38 return ret;
40 ret = dwarf_get (&c->dwarf, c->dwarf.loc[UNW_HPPA_SP], &c->dwarf.cfa);
41 if (ret < 0)
42 return ret;
  /external/libunwind/src/sh/
init.h 30 int ret; local
51 ret = dwarf_get (&c->dwarf, c->dwarf.loc[UNW_SH_PC], &c->dwarf.ip);
52 if (ret < 0)
53 return ret;
55 ret = dwarf_get (&c->dwarf, c->dwarf.loc[UNW_TDEP_SP], &c->dwarf.cfa);
56 if (ret < 0)
57 return ret;
  /external/openssl/crypto/asn1/
d2i_pu.c 78 EVP_PKEY *ret; local
82 if ((ret=EVP_PKEY_new()) == NULL)
88 else ret= *a;
90 if (!EVP_PKEY_set_type(ret, type))
96 switch (EVP_PKEY_id(ret))
100 if ((ret->pkey.rsa=d2i_RSAPublicKey(NULL,
110 if (!d2i_DSAPublicKey(&(ret->pkey.dsa),
120 if (!o2i_ECPublicKey(&(ret->pkey.ec),
133 if (a != NULL) (*a)=ret;
134 return(ret);
    [all...]
x_x509.c 87 X509 *ret = (X509 *)*pval; local
92 ret->valid=0;
93 ret->name = NULL;
94 ret->ex_flags = 0;
95 ret->ex_pathlen = -1;
96 ret->skid = NULL;
97 ret->akid = NULL;
99 ret->rfc3779_addr = NULL;
100 ret->rfc3779_asid = NULL;
102 ret->aux = NULL
    [all...]
  /external/openssl/crypto/evp/
p_dec.c 72 int ret= -1; local
83 ret=RSA_private_decrypt(ekl,ek,key,priv->pkey.rsa,RSA_PKCS1_PADDING);
86 return(ret);
p_enc.c 72 int ret=0; local
82 ret=RSA_public_encrypt(key_len,key,ek,pubk->pkey.rsa,RSA_PKCS1_PADDING);
85 return(ret);
  /external/wpa_supplicant_8/hostapd/
eap_register.c 25 int ret = 0; local
28 if (ret == 0)
29 ret = eap_server_identity_register();
33 if (ret == 0)
34 ret = eap_server_md5_register();
38 if (ret == 0)
39 ret = eap_server_tls_register();
43 if (ret == 0)
44 ret = eap_server_unauth_tls_register();
49 if (ret == 0
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
eap_register.c 26 int ret = 0; local
29 if (ret == 0)
30 ret = eap_peer_md5_register();
34 if (ret == 0)
35 ret = eap_peer_tls_register();
39 if (ret == 0)
40 ret = eap_peer_unauth_tls_register();
45 if (ret == 0)
46 ret = eap_peer_wfa_unauth_tls_register();
51 if (ret == 0
    [all...]
  /frameworks/av/camera/tests/
main.cpp 24 int ret = RUN_ALL_TESTS(); local
26 return ret;
  /ndk/sources/host-tools/sed-4.2.1/lib/
wcrtomb.c 43 int ret = wctomb (s, wc); local
45 if (ret >= 0)
46 return ret;
  /bionic/libc/bionic/
__strlen_chk.cpp 59 size_t ret = strlen(s); local
61 if (__predict_false(ret >= s_len)) {
65 return ret;
if_indextoname.c 46 char* ret = NULL; local
53 ret = strncpy (ifname, ifr.ifr_name, IFNAMSIZ);
61 return ret;

Completed in 2147 milliseconds

1 2 3 4 5 6 7 8 91011>>