Searched defs:outptr (Results 1 - 25 of 82) sorted by relevance

1234

/external/curl/lib/vauth/
H A Doauth2.c52 * outptr[in / out] - The address where a pointer to newly allocated memory
63 char **outptr, size_t *outlen)
81 result = Curl_base64_encode(data, oauth, strlen(oauth), outptr, outlen);
58 Curl_auth_create_oauth_bearer_message(struct Curl_easy *data, const char *user, const char *host, const long port, const char *bearer, char **outptr, size_t *outlen) argument
H A Dcleartext.c56 * outptr [in/out] - The address where a pointer to newly allocated memory
65 char **outptr, size_t *outlen)
78 *outptr = NULL;
90 result = Curl_base64_encode(data, plainauth, 2 * ulen + plen + 2, outptr,
107 * outptr [in/out] - The address where a pointer to newly allocated memory
114 const char *valuep, char **outptr,
121 *outptr = strdup("=");
122 if(*outptr) {
132 return Curl_base64_encode(data, valuep, vlen, outptr, outlen);
145 * outptr [i
62 Curl_auth_create_plain_message(struct Curl_easy *data, const char *userp, const char *passwdp, char **outptr, size_t *outlen) argument
113 Curl_auth_create_login_message(struct Curl_easy *data, const char *valuep, char **outptr, size_t *outlen) argument
151 Curl_auth_create_external_message(struct Curl_easy *data, const char *user, char **outptr, size_t *outlen) argument
[all...]
H A Dcram.c51 * outptr [in/out] - The address where a pointer to newly allocated memory
57 CURLcode Curl_auth_decode_cram_md5_message(const char *chlg64, char **outptr, argument
63 *outptr = NULL;
68 result = Curl_base64_decode(chlg64, (unsigned char **) outptr, outlen);
85 * outptr [in/out] - The address where a pointer to newly allocated memory
95 char **outptr, size_t *outlen)
131 result = Curl_base64_encode(data, response, 0, outptr, outlen);
91 Curl_auth_create_cram_md5_message(struct Curl_easy *data, const char *chlg, const char *userp, const char *passwdp, char **outptr, size_t *outlen) argument
H A Dntlm_sspi.c51 * outptr [in/out] - The address where a pointer to newly allocated memory
60 char **outptr, size_t *outlen)
149 type_1_buf.cbBuffer, outptr, outlen);
211 * outptr [in/out] - The address where a pointer to newly allocated memory
221 char **outptr, size_t *outlen)
269 type_3_buf.cbBuffer, outptr, outlen);
57 Curl_auth_create_ntlm_type1_message(const char *userp, const char *passwdp, struct ntlmdata *ntlm, char **outptr, size_t *outlen) argument
217 Curl_auth_create_ntlm_type3_message(struct Curl_easy *data, const char *userp, const char *passwdp, struct ntlmdata *ntlm, char **outptr, size_t *outlen) argument
H A Dspnego_gssapi.c184 * outptr [in/out] - The address where a pointer to newly allocated memory
192 char **outptr, size_t *outlen)
201 outptr, outlen);
211 if(!*outptr || !*outlen) {
190 Curl_auth_create_spnego_message(struct Curl_easy *data, struct negotiatedata *nego, char **outptr, size_t *outlen) argument
H A Dspnego_sspi.c231 * outptr [in/out] - The address where a pointer to newly allocated memory
239 char **outptr, size_t *outlen)
247 outptr, outlen);
252 if(!*outptr || !*outlen)
237 Curl_auth_create_spnego_message(struct Curl_easy *data, struct negotiatedata *nego, char **outptr, size_t *outlen) argument
/external/protobuf/src/google/protobuf/testing/
H A Dzcgzip.cc66 void* outptr; local
70 ok = out.Next(&outptr, &outlen);
75 readlen = read(STDIN_FILENO, outptr, outlen);
/external/curl/lib/
H A Ddotdot.c59 char *outptr; local
72 outptr = out;
125 while(outptr > out) {
126 outptr--;
127 if(*outptr == '/')
130 *outptr = 0; /* zero-terminate where it stops */
137 while(outptr > out) {
138 outptr--;
139 if(*outptr == '/')
142 *outptr
[all...]
H A Dbase64.c90 * pointer in *outptr to a newly allocated memory area holding decoded
96 * When decoded data length is 0, returns NULL in *outptr.
101 unsigned char **outptr, size_t *outlen)
112 *outptr = NULL;
165 *outptr = newstr;
174 char **outptr, size_t *outlen)
187 *outptr = NULL;
259 *outptr = base64data;
273 * return a pointer in *outptr to a newly allocated memory area holding
282 * When encoded data length is 0, returns NULL in *outptr
100 Curl_base64_decode(const char *src, unsigned char **outptr, size_t *outlen) argument
171 base64_encode(const char *table64, struct Curl_easy *data, const char *inputbuff, size_t insize, char **outptr, size_t *outlen) argument
286 Curl_base64_encode(struct Curl_easy *data, const char *inputbuff, size_t insize, char **outptr, size_t *outlen) argument
310 Curl_base64url_encode(struct Curl_easy *data, const char *inputbuff, size_t insize, char **outptr, size_t *outlen) argument
[all...]
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c28 int16_t *outptr = out; local
37 idct16_rows_dspr2(input, outptr, 16);
41 idct16_rows_dspr2(input, outptr, 16);
43 outptr = out;
46 iadst16_dspr2(outptr, temp_out);
51 outptr += 16;
62 iadst16_dspr2(input, outptr);
64 outptr += 16;
81 iadst16_dspr2(input, outptr);
83 outptr
[all...]
H A Dvp9_itrans4_dspr2.c28 int16_t *outptr = out; local
39 vpx_idct4_rows_dspr2(input, outptr);
43 vpx_idct4_rows_dspr2(input, outptr);
45 outptr = out;
48 iadst4_dspr2(outptr, temp_out);
54 outptr += 4;
59 iadst4_dspr2(input, outptr);
61 outptr += 4;
73 iadst4_dspr2(input, outptr);
75 outptr
[all...]
H A Dvp9_itrans8_dspr2.c27 int16_t *outptr = out; local
36 idct8_rows_dspr2(input, outptr, 8);
40 idct8_rows_dspr2(input, outptr, 8);
52 iadst8_dspr2(input, outptr);
54 outptr += 8;
66 iadst8_dspr2(input, outptr);
68 outptr += 8;
/external/boringssl/src/crypto/modes/
H A Dcbc.c122 const uintptr_t outptr = (uintptr_t) out; local
124 assert(inptr >= outptr || inptr + len <= outptr);
126 if ((inptr >= 32 && outptr <= inptr - 32) || inptr < outptr) {
/external/libjpeg-turbo/
H A Djccolext.c97 register JSAMPROW outptr; local
103 outptr = output_buf[0][output_row];
111 outptr[col] = (JSAMPLE)
H A Djdcolext.c37 register JSAMPROW outptr; local
54 outptr = *output_buf++;
60 outptr[RGB_RED] = range_limit[y + Crrtab[cr]];
61 outptr[RGB_GREEN] = range_limit[y +
64 outptr[RGB_BLUE] = range_limit[y + Cbbtab[cb]];
68 outptr[RGB_ALPHA] = 0xFF;
70 outptr += RGB_PIXELSIZE;
88 register JSAMPROW inptr, outptr; local
94 outptr = *output_buf++;
97 outptr[RGB_RE
120 register JSAMPROW outptr; local
[all...]
H A Djdmrgext.c32 register JSAMPROW outptr; local
46 outptr = output_buf[0];
57 outptr[RGB_RED] = range_limit[y + cred];
58 outptr[RGB_GREEN] = range_limit[y + cgreen];
59 outptr[RGB_BLUE] = range_limit[y + cblue];
61 outptr[RGB_ALPHA] = 0xFF;
63 outptr += RGB_PIXELSIZE;
65 outptr[RGB_RED] = range_limit[y + cred];
66 outptr[RGB_GREEN] = range_limit[y + cgreen];
67 outptr[RGB_BLU
[all...]
H A Djutils.c103 register JSAMPROW inptr, outptr; local
112 outptr = *output_array++;
113 MEMCOPY(outptr, inptr, count);
H A Dwrtarga.c99 register char *outptr; local
103 outptr = dest->iobuffer;
105 outptr[0] = (char) GETJSAMPLE(inptr[2]); /* RGB to BGR order */
106 outptr[1] = (char) GETJSAMPLE(inptr[1]);
107 outptr[2] = (char) GETJSAMPLE(inptr[0]);
108 inptr += 3, outptr += 3;
120 register char *outptr; local
124 outptr = dest->iobuffer;
126 *outptr++ = (char) GETJSAMPLE(*inptr++);
143 register char *outptr; local
[all...]
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dilbc_specific_functions.c30 int16_t *outptr = out; local
35 *outptr++ = (int16_t)((*inptr++ * *winptr--) >> right_shifts);
44 int16_t *outptr = out; local
49 *outptr++ = (int16_t)((*inptr++ * *winptr++) >> right_shifts);
58 int16_t *outptr = out; local
63 (*outptr++) = (int16_t)(((*in1ptr++) + (*in2ptr++)) >> right_shifts);
H A Dfilter_ar_fast_q12_mips.c22 int coefptr, outptr, tmpout, inptr; local
39 "subu %[outptr], %[data_out], %[offset] \n\t"
46 "addiu %[tmpout], %[outptr], 0 \n\t"
80 " addiu %[outptr], %[outptr], 2 \n\t"
86 "addiu %[tmpout], %[outptr], 0 \n\t"
123 " addiu %[outptr], %[outptr], 2 \n\t"
129 [outptr] "=&r" (outptr), [inpt
[all...]
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_idct16x16_add_sse2.c20 tran_low_t *outptr = out; local
74 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4)), temp1);
75 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4 + 1)), temp2);
79 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4 + 2)), temp1);
80 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4 + 3)), temp2);
89 vpx_highbd_idct16_c(input, outptr, bd);
91 outptr += 16;
132 tran_low_t *outptr = out; local
191 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4)), temp1);
192 _mm_storeu_si128((__m128i *)(outptr
[all...]
H A Dhighbd_idct8x8_add_sse2.c20 tran_low_t *outptr = out; local
71 _mm_storeu_si128((__m128i *)(outptr + 4 * (2 * i + 1)), temp1);
72 _mm_storeu_si128((__m128i *)(outptr + 4 * (2 * i)), temp2);
81 vpx_highbd_idct8_c(input, outptr, bd);
83 outptr += 8;
119 tran_low_t *outptr = out; local
173 _mm_storeu_si128((__m128i *)(outptr + 4 * (2 * i + 1)), temp1);
174 _mm_storeu_si128((__m128i *)(outptr + 4 * (2 * i)), temp2);
183 vpx_highbd_idct8_c(input, outptr, bd);
185 outptr
[all...]
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jutils.c120 register JSAMPROW inptr, outptr; local
133 outptr = *output_array++;
135 FMEMCOPY(outptr, inptr, count);
138 *outptr++ = *inptr++; /* needn't bother with GETJSAMPLE() here */
152 register JCOEFPTR inptr, outptr;
156 outptr = (JCOEFPTR) output_row;
158 *outptr++ = *inptr++;
/external/strace/
H A Ddesc.c129 char *outptr; local
144 outptr = outstr;
157 if (outptr < end_outstr - (sizeof(", except [") + sizeof(int)*3 + 2)) {
159 outptr += sprintf(outptr, "%s%s [%u",
168 outptr += sprintf(outptr, " %u", j);
174 if (outptr != outstr)
175 *outptr++ = ']';
181 if (outptr
[all...]
H A Dpoll.c76 char *outptr; local
90 outptr = outstr;
94 if (outptr == outstr)
95 *outptr++ = '[';
97 outptr = stpcpy(outptr, ", ");
98 outptr += sprintf(outptr, "%#" PRI_klx, cur);
103 if (outptr == outstr)
104 *outptr
[all...]

Completed in 500 milliseconds

1234