Home
last modified time | relevance | path

Searched refs:end (Results 101 – 125 of 758) sorted by last modified time

12345678910>>...31

/PHP-7.3/ext/zip/lib/
H A Dzipwin32.h56 zip_uint64_t end; /* end offset of data to read, 0 for up to EOF */ member
H A Dzip_source_win32handle.c100 ctx->end = (len < 0 ? 0 : start + (zip_uint64_t)len); in _zip_source_win32_handle_or_name()
211 if (ctx->end > 0) { in _win32_read_file()
212 n = ctx->end - ctx->current; in _win32_read_file()
271 if (ctx->end == 0) { in _win32_read_file()
287 new_current = (zip_int64_t)ctx->end + args->offset; in _win32_read_file()
299 … || (zip_uint64_t)new_current < ctx->start || (ctx->end != 0 && (zip_uint64_t)new_current > ctx->e… in _win32_read_file()
572 if (ctx->end != 0) { in _zip_stat_win32()
573 st->size = ctx->end - ctx->start; in _zip_stat_win32()
H A Dzip_source_filep.c76 zip_uint64_t end; /* end offset of data to read, 0 for up to EOF */ member
138 ctx->end = (len < 0 ? 0 : start+(zip_uint64_t)len); in _zip_source_file_or_p()
296 if (ctx->end > 0) { in read_file()
297 n = ctx->end-ctx->current; in read_file()
352 if (ctx->end == 0) { in read_file()
363 new_current = (zip_int64_t)ctx->end + args->offset; in read_file()
375 … || (zip_uint64_t)new_current < ctx->start || (ctx->end != 0 && (zip_uint64_t)new_current > ctx->e… in read_file()
430 if (ctx->end != 0) { in read_file()
431 st->size = ctx->end - ctx->start; in read_file()
H A Dzip_source_deflate.c115 end = 0; in compress_read()
140 end = 1; in compress_read()
144 end = 1; in compress_read()
150 end = 1; in compress_read()
156 end = 1; in compress_read()
181 end = 1; in compress_read()
214 end = 0; in decompress_read()
228 end = 1; in decompress_read()
235 end = 1; in decompress_read()
241 end = 1; in decompress_read()
[all …]
H A Dzip_close.c451 zip_int64_t cd_start, end, size; in write_cdir() local
461 if ((end = zip_source_tell_write(za->src)) < 0) { in write_cdir()
/PHP-7.3/ext/xml/tests/
H A Dxml_set_element_handler_error.phpt12 * Description: Set up start and end element handlers
H A Dxml_set_element_handler_variation1.phpt12 * Description: Set up start and end element handlers
H A Dbug71592.phpt9 // The tag mismatch at the end of the XML is on purpose, to make sure that the
/PHP-7.3/ext/xml/
H A Dcompat.c510 XML_SetElementHandler(XML_Parser parser, XML_StartElementHandler start, XML_EndElementHandler end) in XML_SetElementHandler() argument
513 parser->h_end_element = end; in XML_SetElementHandler()
/PHP-7.3/ext/standard/
H A Durl_scanner_ex.re333 #define YYLIMIT end
500 char *end, *q;
899 while (end < limit) {
901 end += separator_len;
905 end++;
919 memmove(start, end,
937 while (end < limit) {
938 if (*end == '>') {
939 end += 1;
942 end++;
[all …]
H A Dvar_unserializer.c250 unsigned char *end = *(unsigned char **)p+maxlen; in unserialize_str() local
252 if (end < *p) { in unserialize_str()
258 if (*p >= end) { in unserialize_str()
H A Dvar_unserializer.re248 unsigned char *end = *(unsigned char **)p+maxlen;
250 if (end < *p) {
256 if (*p >= end) {
549 * with unserialize reading past the end of the passed buffer if the string is not
622 /* Delay __wakeup call until end of serialization */
1072 php_error_docref(NULL, E_NOTICE, "Unexpected end of serialized data");
H A Durl_scanner_ex.c330 #define YYLIMIT end
497 char *end, *q; in xx_mainloop() local
1314 while (end < limit) { in php_url_scanner_reset_var_impl()
1316 end += separator_len; in php_url_scanner_reset_var_impl()
1320 end++; in php_url_scanner_reset_var_impl()
1334 memmove(start, end, in php_url_scanner_reset_var_impl()
1352 while (end < limit) { in php_url_scanner_reset_var_impl()
1353 if (*end == '>') { in php_url_scanner_reset_var_impl()
1354 end += 1; in php_url_scanner_reset_var_impl()
1357 end++; in php_url_scanner_reset_var_impl()
[all …]
/PHP-7.3/ext/sysvshm/
H A Dphp_sysvshm.h60 zend_long end; member
H A Dsysvshm.c204 chunk_ptr->end = chunk_ptr->start; in PHP_FUNCTION()
206 chunk_ptr->free = shm_size-chunk_ptr->end; in PHP_FUNCTION()
388 shm_var = (sysvshm_chunk *) ((char *) ptr + ptr->end); in php_put_shm_data()
393 ptr->end += total_size; in php_put_shm_data()
409 if (pos >= ptr->end) { in php_check_shm_data()
436 memcpy_len = ptr->end-shm_varpos - chunk_ptr->next; in php_remove_shm_data()
438 ptr->end -= chunk_ptr->next; in php_remove_shm_data()
/PHP-7.3/ext/standard/tests/strings/
H A Dtrim1.phpt7 * Strip whitespace (or other characters) from the beginning and end of a string.
H A Dtrim_basic.phpt7 * Description: Strip whitespace (or other characters) from the beginning and end of a string.
H A Dtrim_error.phpt7 * Description: Strip whitespace (or other characters) from the beginning and end of a string.
H A Dtrim_variation1.phpt7 * Description: Strip whitespace (or other characters) from the beginning and end of a string.
H A Dtrim_variation2.phpt7 * Description: Strip whitespace (or other characters) from the beginning and end of a string.
H A Dstripos_error.phpt20 echo "\n-- Offset beyond the end of the string --";
43 -- Offset beyond the end of the string --
H A Drtrim_variation1.phpt7 * Description: Strip whitespace (or other characters) from the end of a string.
H A Drtrim_basic.phpt7 * Description: Strip whitespace (or other characters) from the end of a string.
H A Drtrim_error.phpt7 * Description: Strip whitespace (or other characters) from the end of a string.
H A Drtrim_variation2.phpt7 * Description: Strip whitespace (or other characters) from the end of a string.

Completed in 57 milliseconds

12345678910>>...31