Searched refs:olen (Results 1 - 25 of 95) sorted by relevance

1234

/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Dtest-ldap.c49 size_t olen; member in struct:testcase
71 size_t olen; local
78 olen = sizeof(out)/sizeof(out[0]);
79 assert(olen > t->olen);
81 ret = _wind_ldap_case_exact_attribute(t->in, t->ilen, out, &olen);
87 if (olen != t->olen) {
89 (unsigned)olen, (unsigned)t->olen);
[all...]
H A Dstringprep.c63 size_t olen; local
80 olen = *out_len;
81 ret = _wind_stringprep_normalize(tmp, tmp_len, tmp, &olen);
86 ret = _wind_stringprep_prohibited(tmp, olen, flags);
91 ret = _wind_stringprep_testbidi(tmp, olen, flags);
99 ret = _wind_ldap_case_exact_attribute(tmp, olen, out, out_len);
106 memcpy(out, tmp, sizeof(out[0]) * olen);
107 *out_len = olen;
H A Dldap.c49 size_t olen,
55 if (olen == 0) {
62 while(i < olen && tmp[i] == 0x20) /* skip initial spaces */
65 while (i < olen) {
70 while(i < olen && tmp[i] == 0x20) /* skip middle spaces */
48 _wind_ldap_case_exact_attribute(const uint32_t *tmp, size_t olen, uint32_t *out, size_t *out_len) argument
/macosx-10.10/OpenSSL098-52/src/crypto/comp/
H A Dc_rle.c8 unsigned int olen, unsigned char *in, unsigned int ilen);
10 unsigned int olen, unsigned char *in, unsigned int ilen);
29 unsigned int olen, unsigned char *in, unsigned int ilen)
33 if (olen < (ilen+1))
45 unsigned int olen, unsigned char *in, unsigned int ilen)
49 if (ilen == 0 || olen < (ilen-1))
28 rle_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
44 rle_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
H A Dcomp.h20 unsigned char *out, unsigned int olen,
23 unsigned char *out, unsigned int olen,
44 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
46 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dcomp_lib.c37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, argument
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
55 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, argument
65 ret=ctx->meth->expand(ctx,out,olen,in,ilen);
H A Dc_zlib.c30 unsigned int olen, unsigned char *in, unsigned int ilen);
32 unsigned int olen, unsigned char *in, unsigned int ilen);
54 unsigned int olen, unsigned char *in, unsigned int ilen);
56 unsigned int olen, unsigned char *in, unsigned int ilen);
192 unsigned int olen, unsigned char *in, unsigned int ilen)
205 state->ostream.avail_out = olen;
212 ilen,olen - state->ostream.avail_out,
213 (ilen != olen - state->ostream.avail_out)?"zlib":"clear");
215 return olen - state->ostream.avail_out;
219 unsigned int olen, unsigne
191 zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
218 zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A Descape.h29 char **ostring, size_t *olen,
H A Descape.c142 * *olen. If length == 0, the length is assumed to be strlen(string).
147 char **ostring, size_t *olen,
195 if(olen)
197 *olen = strindex;
207 * pointer to a malloced string with length given in *olen.
209 * If olen == NULL, no output length is stored.
212 int *olen)
221 if(olen)
222 *olen = curlx_uztosi(outputlen);
145 Curl_urldecode(struct SessionHandle *data, const char *string, size_t length, char **ostring, size_t *olen, bool reject_ctrl) argument
211 curl_easy_unescape(CURL *handle, const char *string, int length, int *olen) argument
/macosx-10.10/OpenSSH-189/openssh/
H A Drsa.c78 int len, ilen, olen; local
83 olen = BN_num_bytes(key->n);
84 outbuf = xmalloc(olen);
97 memset(outbuf, 0, olen);
107 int len, ilen, olen; local
109 olen = BN_num_bytes(key->n);
110 outbuf = xmalloc(olen);
123 memset(outbuf, 0, olen);
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Dcomp.h20 unsigned char *out, unsigned int olen,
23 unsigned char *out, unsigned int olen,
44 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
46 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dexample_evp_cipher.c71 int ilen, olen; local
124 ret = EVP_CipherUpdate(&ctx, obuf, &olen, ibuf, ilen);
130 fwrite(obuf, 1, olen, out);
136 ret = EVP_CipherFinal_ex(&ctx, obuf, &olen);
142 fwrite(obuf, 1, olen, out);
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/CurveParamDocs/
H A Dcurvegen.c58 int d, dc, olen, k; local
72 case -3: olen = 3; /* Six orders: p + 1 +- g[0,1,2]. */
78 case -4: olen = 2; /* Four orders: p + 1 +- g[0,1]. */
81 default: olen = 1; /* Two orders: p + 1 +- g[0]. */
83 for(k=0; k < olen; k++) {
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/CurveParamDocs/
H A Dcurvegen.c58 int d, dc, olen, k; local
72 case -3: olen = 3; /* Six orders: p + 1 +- g[0,1,2]. */
78 case -4: olen = 2; /* Four orders: p + 1 +- g[0,1]. */
81 default: olen = 1; /* Two orders: p + 1 +- g[0]. */
83 for(k=0; k < olen; k++) {
/macosx-10.10/sudo-73/src/
H A Dtoke_util.c106 fill_txt(src, len, olen)
108 int len, olen;
112 dst = olen ? realloc(yylval.string, olen + len + 1) : malloc(len + 1);
120 dst += olen;
147 int olen = 0; local
150 olen = strlen(yylval.string);
152 return fill_txt(src, len, olen);
/macosx-10.10/OpenSSL098-52/src/fips/
H A Dfips_utl.h338 int olen; local
339 olen = bin2hex(val, len, obuf);
340 printf("%s = %.*s\n", tag, olen, obuf);
347 int olen; local
350 olen=bin2bint(val,len,obuf);
352 olen=bin2hex(val,len,obuf);
354 fprintf(rfp, "%s = %.*s\n", tag, olen, obuf);
356 printf("%s = %.*s\n", tag, olen, obuf);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utils/
H A DcuEnc64.c119 unsigned olen = 0; // actual output size local
171 olen += 4;
178 olen++;
184 olen += 2;
185 *outlen = olen;
241 unsigned olen = 0; // actual output size local
334 olen += thisOlen;
337 *outlen = olen;
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A Denc64.c132 unsigned olen = 0; // actual output size local
185 olen += 4;
193 olen += 2;
200 olen += 3;
201 *outlen = olen;
266 unsigned olen = 0; // actual output size local
359 olen += thisOlen;
362 *outlen = olen;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_utils/lib/
H A DcuEnc64.c119 unsigned olen = 0; // actual output size local
171 olen += 4;
178 olen++;
184 olen += 2;
185 *outlen = olen;
241 unsigned olen = 0; // actual output size local
334 olen += thisOlen;
337 *outlen = olen;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A Denc64.c132 unsigned olen = 0; // actual output size local
185 olen += 4;
193 olen += 2;
200 olen += 3;
201 *outlen = olen;
266 unsigned olen = 0; // actual output size local
359 olen += thisOlen;
362 *outlen = olen;
/macosx-10.10/ppp-786.1.1/Helpers/pppdump/
H A Ddeflate.c252 int rlen, olen, ospace; local
292 olen = state->mru + 2 - state->strm.avail_out;
293 *outlenp = olen;
296 ++olen; /* for suppressed protocol high byte */
297 olen += 2; /* for address, control */
300 if (olen > state->mru + PPP_HDRLEN)
302 state->unit, olen, state->mru + PPP_HDRLEN);
305 state->stats.unc_bytes += olen;
/macosx-10.10/remote_cmds-47/revnetgroup.tproj/
H A Dparse_netgroup.c291 int len, olen; local
320 olen = 0;
333 linep = (char *)malloc(olen + len + 1);
334 if (olen > 0) {
335 bcopy(olinep, linep, olen);
338 bcopy(pos, linep + olen, len);
339 olen += len;
340 *(linep + olen) = '\0';
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Dcbcp.c254 int code, opt, id, len, olen, delay; local
280 GETCHAR(olen, p);
282 if (olen < 2 || olen > len) {
287 len -= olen;
294 if (olen > 2) {
299 if (olen > 3) {
304 memcpy(str, p, olen - 4);
305 str[olen - 4] = 0;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_x509_tp/lib/
H A DcuEnc64.c121 unsigned olen = 0; // actual output size local
173 olen += 4;
180 olen++;
186 olen += 2;
187 *outlen = olen;
243 unsigned olen = 0; // actual output size local
336 olen += thisOlen;
339 *outlen = olen;
/macosx-10.10/curl-83.1.2/curl/src/
H A Dmkhelp.pl50 my $olen=0;
69 if($wline && ($olen == $tlen)) {
78 $olen = $tlen;

Completed in 277 milliseconds

1234