HomeSort by relevance Sort by last modified time
    Searched defs:ret (Results 1 - 25 of 3292) 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);
dprintf.c 42 int ret; local
45 ret = vdprintf(fd, fmt, ap);
47 return ret;
fprintf.c 41 int ret; local
45 ret = vfprintf(fp, fmt, ap);
47 return (ret);
fputs.c 47 int ret; local
55 ret = __sfvwrite(fp, &uio);
57 return (ret);
fscanf.c 41 int ret; local
45 ret = vfscanf(fp, fmt, ap);
47 return (ret);
fwprintf.c 41 int ret; local
45 ret = vfwprintf(fp, fmt, ap);
47 return (ret);
printf.c 41 int ret; local
45 ret = vfprintf(stdout, fmt, ap);
47 return (ret);
putc.c 62 int ret; local
65 ret = putc_unlocked(c, fp);
67 return (ret);
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x_x509.c 90 X509 *ret = (X509 *)*pval; local
95 ret->valid=0;
96 ret->name = NULL;
97 ret->ex_flags = 0;
98 ret->ex_pathlen = -1;
99 ret->skid = NULL;
100 ret->akid = NULL;
101 ret->aux = NULL;
102 ret->crldp = NULL;
103 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data)
    [all...]
  /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/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);
  /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 1388 milliseconds

1 2 3 4 5 6 7 8 91011>>