Home
last modified time | relevance | path

Searched refs:pe (Results 1 – 17 of 17) sorted by relevance

/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c2097 pe->prevpos = pe->outdev.pos; in mime_header_encoder_block_collector()
2103 n = pe->outdev.pos - pe->linehead + pe->firstindent; in mime_header_encoder_block_collector()
2104 pe->outdev.pos = pe->prevpos; in mime_header_encoder_block_collector()
2111 mbfl_memory_device_strncat(&pe->outdev, pe->lwsp, pe->lwsplen); in mime_header_encoder_block_collector()
2112 pe->linehead = pe->outdev.pos; in mime_header_encoder_block_collector()
2169 n = pe->outdev.pos - pe->linehead + pe->tmpdev.pos + pe->firstindent; in mime_header_encoder_collector()
2172 pe->linehead = pe->outdev.pos; in mime_header_encoder_collector()
2181 n = pe->outdev.pos - pe->linehead + pe->encnamelen + pe->firstindent; in mime_header_encoder_collector()
2184 pe->linehead = pe->outdev.pos; in mime_header_encoder_collector()
2210 if ((pe->outdev.pos - pe->linehead + pe->tmpdev.pos) > 74) { in mime_header_encoder_result()
[all …]
H A Dmbfilter.h239 mime_header_encoder_delete(struct mime_header_encoder_data *pe);
242 mime_header_encoder_feed(int c, struct mime_header_encoder_data *pe);
245 mime_header_encoder_result(struct mime_header_encoder_data *pe, mbfl_string *result);
/PHP-5.5/ext/intl/
H A Dintl_error.c247 smart_str intl_parse_error_to_string( UParseError* pe ) in intl_parse_error_to_string() argument
255 assert( pe != NULL ); in intl_parse_error_to_string()
258 if( pe->line > 0 ) in intl_parse_error_to_string()
261 smart_str_append_long( &ret, (long ) pe->line ); in intl_parse_error_to_string()
264 if( pe->offset >= 0 ) { in intl_parse_error_to_string()
271 smart_str_append_long( &ret, (long ) pe->offset ); in intl_parse_error_to_string()
275 if (pe->preContext[0] != 0 ) { in intl_parse_error_to_string()
280 intl_convert_utf16_to_utf8( &buf, &u8len, pe->preContext, -1, &status ); in intl_parse_error_to_string()
293 if( pe->postContext[0] != 0 ) in intl_parse_error_to_string()
299 intl_convert_utf16_to_utf8( &buf, &u8len, pe->postContext, -1, &status ); in intl_parse_error_to_string()
H A Dintl_error.h50 smart_str intl_parse_error_to_string( UParseError* pe );
/PHP-5.5/sapi/apache2filter/
H A Dapache_config.c124 php_dir_entry *pe; in merge_php_config() local
138 pe = NULL; in merge_php_config()
140 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { in merge_php_config()
141 if (pe->status >= data->status) continue; in merge_php_config()
144 phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", str, data->status, pe?pe->status:-1)); in merge_php_config()
153 php_dir_entry *pe; in get_php_config() local
155 if (zend_hash_find(&d->config, name, name_len, (void **) &pe) == SUCCESS) { in get_php_config()
156 return pe->value; in get_php_config()
/PHP-5.5/sapi/apache2handler/
H A Dapache_config.c142 php_dir_entry *pe; in merge_php_config() local
160 pe = NULL; in merge_php_config()
162 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { in merge_php_config()
163 if (pe->status >= data->status) continue; in merge_php_config()
165 phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", str, data->status, pe?pe->status:-1)); in merge_php_config()
175 php_dir_entry *pe; in get_php_config() local
177 if (zend_hash_find(&d->config, name, name_len, (void **) &pe) == SUCCESS) { in get_php_config()
178 return pe->value; in get_php_config()
/PHP-5.5/win32/
H A Dglob.c259 const Char *pe, *pm, *pl; local
269 for (i = 0, pe = ++ptr; *pe; pe++)
270 if (*pe == LBRACKET) {
272 for (pm = pe++; *pe != RBRACKET && *pe != EOS; pe++)
274 if (*pe == EOS) {
279 pe = pm;
281 } else if (*pe == LBRACE)
283 else if (*pe == RBRACE) {
290 if (i != 0 || *pe == EOS) {
295 for (i = 0, pl = pm = ptr; pm <= pe; pm++) {
[all …]
/PHP-5.5/ext/intl/transliterator/
H A Dtransliterator.h27 smart_str transliterator_parse_error_to_string( UParseError* pe );
/PHP-5.5/ext/standard/
H A Dbasic_functions.c3437 unsetenv(pe->key); in php_putenv_destructor()
3447 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe->key_len] == '=') { /* found it */ in php_putenv_destructor()
3457 if (!strncmp(pe->key, "TZ", pe->key_len)) { in php_putenv_destructor()
3463 efree(pe->key); in php_putenv_destructor()
4084 putenv_entry pe; local
4109 pe.key_len = strlen(pe.key);
4121 zend_hash_del(&BG(putenv_ht), pe.key, pe.key_len+1);
4126 if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
4160 zend_hash_add(&BG(putenv_ht), pe.key, pe.key_len + 1, (void **) &pe, sizeof(putenv_entry), NULL);
4162 if (!strncmp(pe.key, "TZ", pe.key_len)) {
[all …]
H A Dstring.c1285 char *pe; in PHP_FUNCTION() local
1308 pe = BG(strtok_string) + BG(strtok_len); in PHP_FUNCTION()
1310 if (!p || p >= pe) { in PHP_FUNCTION()
1323 if (++p >= pe) { in PHP_FUNCTION()
1333 while (++p < pe) { in PHP_FUNCTION()
/PHP-5.5/sapi/cli/
H A Dphp_http_parser.c329 const char *p = data, *pe; in php_http_parser_execute() local
371 for (p=data, pe=data+len; p != pe; p++) { in php_http_parser_execute()
1434 to_read = MIN(pe - p, (size_t)parser->content_length); in php_http_parser_execute()
1448 to_read = pe - p; in php_http_parser_execute()
1519 to_read = MIN(pe - p, (size_t)(parser->content_length)); in php_http_parser_execute()
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split_variation7.phpt69 string(69) "Testi????ng in????valid???? \k a????nd \m???? esca????pe ch????ar????"
H A Dstr_split_variation4.phpt179 string(5) "pe ch"
H A Dchunk_split_variation12.phpt144 …'m sure it'll \work!ng \k esca"To check " in heredoc".I'm sure it'll \work!pe char 22"To check " i…
/PHP-5.5/ext/xmlwriter/
H A Dphp_xmlwriter.c1701 zend_bool pe = 0; in PHP_FUNCTION() local
1709 &name, &name_len, &content, &content_len, &pe, &pubid, &pubid_len, in PHP_FUNCTION()
1718 &name, &name_len, &content, &content_len, &pe, &pubid, &pubid_len, in PHP_FUNCTION()
1730 …retval = xmlTextWriterWriteDTDEntity(ptr, pe, (xmlChar *)name, (xmlChar *)pubid, (xmlChar *)sysid,… in PHP_FUNCTION()
/PHP-5.5/build/
H A Dshtool1699 for pe in `IFS="$IFS/"; echo $namelist`; do
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch1765 +#define FIXUP(x) if (hc->x >= oldptr && hc->x < pe) hc->x += d
1771 + char *pe = oldptr + hc->checked_idx;

Completed in 84 milliseconds