Searched refs:total_length (Results 1 – 4 of 4) sorted by relevance
/PHP-5.6/sapi/pi3web/ |
H A D | pi3web_sapi.c | 145 static void accumulate_header_length(sapi_header_struct *sapi_header, uint *total_length TSRMLS_DC) in accumulate_header_length() 147 *total_length += sapi_header->header_len+2; in accumulate_header_length() 164 uint total_length = 2; /* account for the trailing \r\n */ in sapi_pi3web_send_headers() local 174 accumulate_header_length(&default_content_type, (void *) &total_length TSRMLS_CC); in sapi_pi3web_send_headers() 176 …headers, (llist_apply_with_arg_func_t) accumulate_header_length, (void *) &total_length TSRMLS_CC); in sapi_pi3web_send_headers() 179 combined_headers = (char *) emalloc(total_length+1); in sapi_pi3web_send_headers() 191 lpCB->SendHeaderFunction(lpCB->ConnID, &total_length, (LPDWORD) combined_headers); in sapi_pi3web_send_headers()
|
/PHP-5.6/ext/interbase/ |
H A D | ibase_blobs.c | 91 ISC_LONG total_length; /* Total length of blob */ member 163 bl_info->total_length = 0; in _php_ibase_blob_info() 185 bl_info->total_length = isc_vax_integer(p, item_len); in _php_ibase_blob_info() 449 bl_info.total_length = 0; in PHP_FUNCTION() 455 add_index_long(return_value, 0, bl_info.total_length); in PHP_FUNCTION() 456 add_assoc_long(return_value, "length", bl_info.total_length); in PHP_FUNCTION()
|
/PHP-5.6/sapi/isapi/ |
H A D | php5isapi.c | 225 static void accumulate_header_length(sapi_header_struct *sapi_header, uint *total_length TSRMLS_DC) in accumulate_header_length() 227 *total_length += sapi_header->header_len+2; in accumulate_header_length() 244 uint total_length = 2; /* account for the trailing \r\n */ in sapi_isapi_send_headers() local 254 accumulate_header_length(&default_content_type, (void *) &total_length TSRMLS_CC); in sapi_isapi_send_headers() 256 …headers, (llist_apply_with_arg_func_t) accumulate_header_length, (void *) &total_length TSRMLS_CC); in sapi_isapi_send_headers() 259 combined_headers = (char *) emalloc(total_length+1); in sapi_isapi_send_headers() 302 header_info.cchHeader = total_length; in sapi_isapi_send_headers()
|
/PHP-5.6/ext/pcre/pcrelib/ |
H A D | pcre_jit_compile.c | 9805 sljit_uw total_length; in PRIV() local 9987 total_length = ccend - common->start; in PRIV() 9988 common->private_data_ptrs = (sljit_si *)SLJIT_MALLOC(total_length * (sizeof(sljit_si) + (common->ha… in PRIV() 9994 memset(common->private_data_ptrs, 0, total_length * sizeof(sljit_si)); in PRIV() 10007 common->then_offsets = (pcre_uint8 *)(common->private_data_ptrs + total_length); in PRIV() 10008 memset(common->then_offsets, 0, total_length); in PRIV()
|
Completed in 35 milliseconds