Home
last modified time | relevance | path

Searched refs:p (Results 276 – 300 of 726) sorted by relevance

1...<<11121314151617181920>>...30

/PHP-5.5/ext/dom/tests/
H A Dbug40836.phpt15 <p>paragraph</p>
29 …ted/><content><div xmlns="http://www.w3.org/1999/xhtml"><p>paragraph2007-02-14T00:00:00+01:00</p><…
/PHP-5.5/ext/mbstring/libmbfl/tests/
H A Dconv_kana.c46 const char *p; in main() local
48 for (p= argv[2] + strlen(argv[2]); p > argv[2]; ) { in main()
49 switch (*(--p)) { in main()
/PHP-5.5/ext/opcache/tests/
H A Dissue0149.phpt17 $p = new Phar(__DIR__ . '/issue0149.phar.php', 0, 'this');
18 $p['index.php'] = ""; # A Phar must have at least one file, hence this dummy
19 $p->setStub($stub);
20 unset($p);
/PHP-5.5/ext/phar/
H A Dphar_path_check.c27 const unsigned char *p = (const unsigned char*)*s; in phar_path_check() local
30 if (*len == 1 && *p == '.') { in phar_path_check()
33 } else if (*len == 2 && p[0] == '.' && p[1] == '.') { in phar_path_check()
39 #define YYCURSOR p in phar_path_check()
40 #define YYLIMIT p+*len in phar_path_check()
138 *len = (p - (const unsigned char*)*s) -1; in phar_path_check()
207 if ((p - (const unsigned char*)*s) - 1 != *len) in phar_path_check()
H A Dzip.c174 char *p = buf, *ext, *actual_alias = NULL; in phar_parse_zipfile() local
201 while ((p=(char *) memchr(p + 1, 'P', (size_t) (size - (p + 1 - buf)))) != NULL) { in phar_parse_zipfile()
202 if ((p - buf) + sizeof(locator) <= size && !memcmp(p + 1, "K\5\6", 3)) { in phar_parse_zipfile()
227 metadata = p + sizeof(locator); in phar_parse_zipfile()
539 p = buf; in phar_parse_zipfile()
772 struct _phar_zip_pass *p; in phar_zip_changed_apply() local
777 p = (struct _phar_zip_pass*) arg; in phar_zip_changed_apply()
932 if (p->old) { in phar_zip_changed_apply()
977 if (1 != php_stream_write(p->filefp, "/", 1)) { in phar_zip_changed_apply()
1046 p->free_fp = 0; in phar_zip_changed_apply()
[all …]
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c1040 if (UNEXPECTED(*p == '.') && *(p+1) == '.' && (!*(p+2) || IS_SLASH(*(p+2)))) {
1045 p++;
1047 p++;
1049 p++;
1056 p++;
1554 p++;
1558 } else if (*p >= 'A' && *p <= 'Z') {
1634 if (*p && *p!='=') {
1637 } else if (*p >= 'A' && *p <= 'Z') {
1685 } while (*p == ' ' || *p == '\t');
[all …]
/PHP-5.5/ext/opcache/
H A DZendAccelerator.c137 for (p = filename; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++); in is_stream_path()
138 return ((*p == ':') && (p - filename > 1) && (p[1] == '/') && (p[2] == '/')); in is_stream_path()
335 p = p->pNext; in accel_new_interned_string()
353 p->pData = &p->pDataPtr; in accel_new_interned_string()
354 p->pDataPtr = p; in accel_new_interned_string()
359 p->pNext->pLast = p; in accel_new_interned_string()
397 p = p->pListNext; in accel_use_shm_interned_strings()
444 p = p->pListNext; in accel_use_shm_interned_strings()
453 p = p->pListNext; in accel_use_shm_interned_strings()
465 p = p->pListNext; in accel_use_shm_interned_strings()
[all …]
/PHP-5.5/ext/standard/
H A Dcrypt_freesec.c218 uint32_t *p, *il, *ir, *fl, *fr; in _crypt_extended_init() local
338 *(p = &psbox[b][i]) = 0; in _crypt_extended_init()
621 u_char *p, *q; in _crypt_extended_r() local
680 p = (u_char *) data->output + 9; in _crypt_extended_r()
711 *p++ = ascii64[(l >> 6) & 0x3f]; in _crypt_extended_r()
712 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
717 *p++ = ascii64[(l >> 6) & 0x3f]; in _crypt_extended_r()
718 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
722 *p++ = ascii64[(l >> 6) & 0x3f]; in _crypt_extended_r()
723 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Doniguruma.h151 int (*mbc_enc_len)(const OnigUChar* p);
262 #define onig_enc_len(enc,p,end) ONIGENC_MBC_ENC_LEN(enc,p) argument
266 #define ONIGENC_IS_MBC_HEAD(enc,p) (ONIGENC_MBC_ENC_LEN(enc,p) != 1) argument
267 #define ONIGENC_IS_MBC_ASCII(p) (*(p) < 128) argument
284 (enc)->get_case_fold_codes_by_str(case_fold_flag,p,end,acs)
288 #define ONIGENC_MBC_ENC_LEN(enc,p) (enc)->mbc_enc_len(p) argument
292 #define ONIGENC_IS_MBC_NEWLINE(enc,p,end) (enc)->is_mbc_newline((p),(end)) argument
293 #define ONIGENC_MBC_TO_CODE(enc,p,end) (enc)->mbc_to_code((p),(end)) argument
296 #define ONIGENC_PROPERTY_NAME_TO_CTYPE(enc,p,end) \ argument
297 (enc)->property_name_to_ctype(enc,p,end)
[all …]
/PHP-5.5/ext/standard/tests/streams/
H A Dbug60602.phpt15 $p = proc_open($cmd, $descs, $pipes, '.', $environment);
17 if (is_resource($p)) {
29 proc_terminate($p, 9);
42 $ret = proc_close($p);
/PHP-5.5/ext/intl/tests/
H A Dcpbi_getLastCodePoint_basic.phpt21 $p = $codepoint_it->first();
22 while ($p != IntlBreakIterator::DONE) {
30 $p = $codepoint_it->next();
34 $p = $codepoint_it->last();
35 while ($p != IntlBreakIterator::DONE) {
41 $p = $codepoint_it->previous();
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitLir.c698 CHECK_ARGUMENT((p) < SLJIT_R3 || (p) > SLJIT_R6);
707 else if ((p) == SLJIT_IMM) \
715 if ((p) & OFFS_REG_MASK) { \
734 if ((p) & OFFS_REG_MASK) { \
745 if (((p) >= SLJIT_FR0 && (p) < (SLJIT_FR0 + compiler->fscratches)) || \
746 ((p) > (SLJIT_FS0 - compiler->fsaveds) && (p) <= SLJIT_FS0)) \
799 if ((p) & SLJIT_IMM) \
802 if ((p) & REG_MASK) { \
817 } else if (p) \
823 if ((p) & SLJIT_MEM) { \
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_chunk_variation25.phpt5 $array = array ("p" => "A", "q" => "B", "r" => "C", "s" => "D", "u" => "E", "v" => "F");
17 ["p"]=>
71 ["p"]=>
160 ["p"]=>
228 ["p"]=>
290 ["p"]=>
352 ["p"]=>
411 ["p"]=>
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.c218 const unsigned char *p; in mbfl_memory_device_strcat() local
221 p = (const unsigned char*)psrc; in mbfl_memory_device_strcat()
222 while (*p) { in mbfl_memory_device_strcat()
223 p++; in mbfl_memory_device_strcat()
238 p = (const unsigned char*)psrc; in mbfl_memory_device_strcat()
242 *w++ = *p++; in mbfl_memory_device_strcat()
279 unsigned char *p, *w; in mbfl_memory_device_devcat() local
292 p = src->buffer; in mbfl_memory_device_devcat()
297 *w++ = *p++; in mbfl_memory_device_devcat()
/PHP-5.5/ext/tidy/tests/
H A Dtidy_error.phpt18 <p>paragraph</p>
26 $html = '<p>paragraph</i>';
/PHP-5.5/ext/reflection/tests/
H A Dbug46064.phpt40 $p = new reflectionproperty($this, 'foobar');
41 var_dump($p->getValue($this), $p->isDefault(), $p->isPublic());
/PHP-5.5/sapi/apache2handler/
H A Dphp_apache.h51 void *merge_php_config(apr_pool_t *p, void *base_conf, void *new_conf);
52 void *create_php_config(apr_pool_t *p, char *dummy);
56 void php_ap2_register_hook(apr_pool_t *p);
/PHP-5.5/ext/phar/tests/tar/
H A Dphar_stub.phpt15 $p = new Phar($pname2);
16 $p->setStub('<?php echo "first stub\n"; __HALT_COMPILER(); ?>');
17 $p['a'] = 'a';
18 $p['b'] = 'b';
19 $p['c'] = 'c';
/PHP-5.5/ext/phar/tests/zip/
H A Dphar_stub.phpt15 $p = new Phar($pname2);
16 $p->setStub('<?php echo "first stub\n"; __HALT_COMPILER(); ?>');
17 $p['a'] = 'a';
18 $p['b'] = 'b';
19 $p['c'] = 'c';
/PHP-5.5/ext/fileinfo/libmagic/
H A Dcdf_time.c188 char *p, *q; in main() local
191 p = cdf_ctime(&ts.tv_sec, buf); in main()
192 if ((q = strchr(p, '\n')) != NULL) in main()
194 if (strcmp(ref, p) != 0) in main()
195 errx(1, "Error date %s != %s\n", ref, p); in main()
/PHP-5.5/ext/gd/libgd/
H A Dxbm.c176 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
204 p = 0; in gdImageXbmCtx()
215 if (p) { in gdImageXbmCtx()
217 if (!(p%12)) { in gdImageXbmCtx()
219 p = 12; in gdImageXbmCtx()
222 p++; in gdImageXbmCtx()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php.c235 char **p; in fpm_php_limit_extensions() local
242 p = limit_extensions; in fpm_php_limit_extensions()
244 while (p && *p) { in fpm_php_limit_extensions()
245 size_t ext_len = strlen(*p); in fpm_php_limit_extensions()
248 if (strcmp(*p, path_ext) == 0) { in fpm_php_limit_extensions()
252 p++; in fpm_php_limit_extensions()
/PHP-5.5/main/
H A DSAPI.c204 char *p; in sapi_read_post_data() local
213 for (p=content_type; p<content_type+content_type_length; p++) { in sapi_read_post_data()
214 switch (*p) { in sapi_read_post_data()
219 oldchar = *p; in sapi_read_post_data()
220 *p = 0; in sapi_read_post_data()
223 *p = tolower(*p); in sapi_read_post_data()
245 *(p-1) = oldchar; in sapi_read_post_data()
316 char *p; in get_default_content_type() local
322 p += mimetype_len; in get_default_content_type()
698 if (!p->line || !p->line_len) { in sapi_header_op()
[all …]
/PHP-5.5/tests/classes/
H A Dstatic_properties_undeclared_inc.phpt6 C::$p++;
9 Fatal error: Access to undeclared static property: C::$p in %s on line 3
H A Dstatic_properties_undeclared_assign.phpt6 C::$p = 1;
9 Fatal error: Access to undeclared static property: C::$p in %s on line 3

Completed in 73 milliseconds

1...<<11121314151617181920>>...30