Lines Matching refs:size_t

126 static size_t encoding_filter_script_to_internal(unsigned char **to, size_t *to_length, const unsig…  in BEGIN_EXTERN_C()
133 static size_t encoding_filter_script_to_intermediate(unsigned char **to, size_t *to_length, const u… in encoding_filter_script_to_intermediate()
138 static size_t encoding_filter_intermediate_to_script(unsigned char **to, size_t *to_length, const u… in encoding_filter_intermediate_to_script()
144 static size_t encoding_filter_intermediate_to_internal(unsigned char **to, size_t *to_length, const… in encoding_filter_intermediate_to_internal()
302 static const zend_encoding *zend_multibyte_detect_utf_encoding(const unsigned char *script, size_t in zend_multibyte_detect_utf_encoding()
311 while ((size_t)(p-script) < script_size) { in zend_multibyte_detect_utf_encoding()
328 while ((size_t)(p-script) < script_size) { in zend_multibyte_detect_utf_encoding()
391 while ((size_t)(pos1 - pos2) >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
503 size_t size, offset = 0; in open_file_for_scanning()
508 if ((offset = ftell(file_handle->handle.fp)) == (size_t)-1) { in open_file_for_scanning()
520 size_t diff = (char*)file_handle->handle.stream.handle - (char*)file_handle; in open_file_for_scanning()
529 if (size != (size_t)-1) { in open_file_for_scanning()
538 …if ((size_t)-1 == SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(scr… in open_file_for_scanning()
685 size_t size, old_len; in zend_prepare_string_for_scanning()
708 …if ((size_t)-1 == SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(scr… in zend_prepare_string_for_scanning()
729 ZEND_API size_t zend_get_scanned_file_offset(void) in zend_get_scanned_file_offset()
731 size_t offset = SCNG(yy_cursor) - SCNG(yy_start); in zend_get_scanned_file_offset()
733 size_t original_offset = offset, length = 0; in zend_get_scanned_file_offset()
736 if ((size_t)-1 == SCNG(input_filter)(&p, &length, SCNG(script_org), offset)) { in zend_get_scanned_file_offset()
737 return (size_t)-1; in zend_get_scanned_file_offset()
828 size_t length; in zend_multibyte_yyinput_again()
841 …if ((size_t)-1 == SCNG(input_filter)(&new_yy_start, &length, SCNG(script_org), SCNG(script_org_siz… in zend_multibyte_yyinput_again()
864 size_t sz = 0; \
866 SCNG(output_filter)((unsigned char **)&s, &sz, (unsigned char *)yytext, (size_t)yyleng); \
956 size_t len = 0; in zend_scan_escape_string()
959 size_t byte_len = 0; in zend_scan_escape_string()
1077 size_t sz = 0; in zend_scan_escape_string()
1081 SCNG(output_filter)(&str, &sz, (unsigned char *)s, (size_t)Z_STRLEN_P(zendlval)); in zend_scan_escape_string()
1832 size_t readsize;
1834 size_t sz = 0;
1836 …readsize = SCNG(output_filter)((unsigned char **)&s, &sz, (unsigned char *)yytext, (size_t)yyleng);
2027 size_t sz = 0;
2031 …SCNG(output_filter)((unsigned char **)&str, &sz, (unsigned char *)s, (size_t)Z_STRLEN_P(zendlval));