Searched defs:outlen (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/ext/xmlrpc/libxmlrpc/ |
| H A D | encodings.c | 66 int outlen = src_len; local 76 outbuf = (char*)malloc(outlen + 1); 85 outlen += inlenleft; 87 outbuf = (char*)realloc(outbuf, outlen + 1); 103 outlen -= outlenleft; 106 *new_len = outbuf ? outlen : 0; 109 outbuf[outlen] = 0;
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 2755 int arg_len, inlen, outlen; local 2772 outlen = 0; 2781 outlen++; 2788 outlen++; 2804 outlen++; 2809 outlen++; 2825 out = emalloc(outlen + 1); 2875 /* warn if we computed outlen incorrectly */ 2876 if (outp - out != outlen) { 2877 php_error_docref(NULL TSRMLS_CC, E_WARNING, "outp - out [%ld] != outlen [ 2894 int arg_len, inlen, outlen; local [all...] |
| /PHP_5_3/ext/openssl/ |
| H A D | openssl.c | 4680 int i = 0, outlen, keylen; local 4708 outlen = data_len + EVP_CIPHER_block_size(cipher_type); 4709 outbuf = emalloc(outlen + 1); 4719 outlen = i; 4721 outlen += i; 4723 outbuf[outlen] = '\0'; 4724 RETVAL_STRINGL((char *)outbuf, outlen, 0); 4729 base64_str = (char*)php_base64_encode(outbuf, outlen, &base64_str_len); 4756 int i, outlen, keylen; local 4798 outlen [all...] |
| /PHP_5_3/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 61 unsigned long buflen, unsigned long *outlen) 88 *outlen = ret; 96 unsigned long buflen, unsigned long *outlen) 118 *outlen = ret; 119 S->convbuf[*outlen] = '\0'; 60 pdo_odbc_utf82ucs2(pdo_stmt_t *stmt, int is_unicode, const char *buf, unsigned long buflen, unsigned long *outlen) argument 95 pdo_odbc_ucs22utf8(pdo_stmt_t *stmt, int is_unicode, const char *buf, unsigned long buflen, unsigned long *outlen) argument
|
| /PHP_5_3/ext/zlib/ |
| H A D | zlib.c | 741 uInt prev_outlen, outlen; local 746 outlen = (uint) (str_length + (str_length / PHP_ZLIB_MODIFIER) + 12 + 1); /* leave some room for a trailing \0 */ 747 if ((outlen + start_offset + end_offset) > *p_buffer_len) { 748 buffer = (Bytef *) emalloc(outlen + start_offset + end_offset); 754 ZLIBG(stream).avail_out = outlen; 758 prev_outlen = outlen; 759 outlen *= 3; 760 if ((outlen + start_offset + end_offset) > *p_buffer_len) { 761 buffer = erealloc(buffer, outlen + start_offset + end_offset); 772 buffer[outlen [all...] |
Completed in 56 milliseconds