Home
last modified time | relevance | path

Searched refs:p (Results 526 – 550 of 726) sorted by relevance

1...<<21222324252627282930

/PHP-5.5/ext/standard/
H A Dcrypt_blowfish.c831 const char *p; in php_crypt_blowfish_rn() local
859 p = BF_crypt(test_key, buf.s, buf.o, sizeof(buf.o) - (1 + 1), 1); in php_crypt_blowfish_rn()
861 ok = (p == buf.o && in php_crypt_blowfish_rn()
862 !memcmp(p, buf.s, 7 + 22) && in php_crypt_blowfish_rn()
863 !memcmp(p + (7 + 22), test_hash, 31 + 1 + 1 + 1)); in php_crypt_blowfish_rn()
/PHP-5.5/ext/json/
H A Djson.c416 long p; in json_escape_string() local
418 if ((type = is_numeric_string(s, len, &p, &d, 0)) != 0) { in json_escape_string()
420 smart_str_append_long(buf, p); in json_escape_string()
695 long p; in php_json_decode_ex() local
724 if ((type = is_numeric_string_ex(trim, trim_len, &p, &d, 0, &overflow_info)) != 0) { in php_json_decode_ex()
726 RETVAL_LONG(p); in php_json_decode_ex()
/PHP-5.5/sapi/apache2handler/
H A Dsapi_apache2.c405 static void php_apache_add_version(apr_pool_t *p) in php_apache_add_version() argument
409 ap_add_version_component(p, "PHP/" PHP_VERSION); in php_apache_add_version()
510 static void php_apache_ini_dtor(request_rec *r, request_rec *p TSRMLS_DC) in php_apache_ini_dtor()
529 if (p) { in php_apache_ini_dtor()
530 ((php_struct *)SG(server_context))->r = p; in php_apache_ini_dtor()
704 void php_ap2_register_hook(apr_pool_t *p) in php_ap2_register_hook() argument
/PHP-5.5/sapi/caudium/
H A Dcaudium.c282 php_caudium_set_header(char *header_name, char *value, char *p) in php_caudium_set_header() argument
293 (int)(p - header_name)); in php_caudium_set_header()
340 char *header_name, *header_content, *p; in php_caudium_sapi_header_handler() local
342 header_content = p = strchr(header_name, ':'); in php_caudium_sapi_header_handler()
344 if(p) { in php_caudium_sapi_header_handler()
348 THREAD_SAFE_RUN(php_caudium_set_header(header_name, header_content, p), "header handler"); in php_caudium_sapi_header_handler()
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_internal.h99 #define DPRINTF(p) printf p argument
101 #define DPRINTF(p) /* Nothing */ argument
316 #define IS_NEWLINE(p) \ argument
318 ((p) < NLBLOCK->PSEND && \
319 PRIV(is_newline)((p), NLBLOCK->nltype, NLBLOCK->PSEND, \
322 ((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \
323 UCHAR21TEST(p) == NLBLOCK->nl[0] && \
330 #define WAS_NEWLINE(p) \ argument
332 ((p) > NLBLOCK->PSSTART && \
333 PRIV(was_newline)((p), NLBLOCK->nltype, NLBLOCK->PSSTART, \
[all …]
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_format_intlcalendar.phpt29 Quinta-feira, 17 de Maio de 2012 5:35:36 p.m. WEST
H A Dtransliterator_get_error_code_error.phpt8 $t = Transliterator::create("[\p{Bidi_Mirrored}] Hex");
H A Dtransliterator_get_error_message_error.phpt8 $t = Transliterator::create("[\p{Bidi_Mirrored}] Hex");
H A Dbreakiter_getLocale_error.phpt11 $bi = new IntlRuleBasedBreakIterator('[\p{Letter}\uFFFD]+;[:number:]+;');
/PHP-5.5/ext/phar/tests/tar/
H A Dlinks2.phpt23 $p = new PharData($fname);
/PHP-5.5/ext/standard/tests/array/
H A Dbug28974.phpt2 Bug #28974 (array_(p)slice() treats large lengths incorrectly - overflow)
/PHP-5.5/ext/phar/
H A Dtar.c67 char *p = buf; in phar_tar_octal() local
70 p += len; /* Start at the end and work backwards. */ in phar_tar_octal()
72 *--p = (char)('0' + (val & 7)); in phar_tar_octal()
81 *p++ = '7'; in phar_tar_octal()
207 char buf[512], *actual_alias = NULL, *p; in phar_parse_tarfile() local
617 p = strrchr(myphar->fname, '/'); in phar_parse_tarfile()
619 if (p) { in phar_parse_tarfile()
620 myphar->ext = memchr(p, '.', (myphar->fname + fname_len) - p); in phar_parse_tarfile()
621 if (myphar->ext == p) { in phar_parse_tarfile()
622 myphar->ext = memchr(p + 1, '.', (myphar->fname + fname_len) - p - 1); in phar_parse_tarfile()
/PHP-5.5/main/streams/
H A Dstreams.c1397 char *p; in _php_stream_passthru() local
1400p = php_stream_mmap_range(stream, php_stream_tell(stream), PHP_STREAM_MMAP_ALL, PHP_STREAM_MAP_MOD… in _php_stream_passthru()
1402 if (p) { in _php_stream_passthru()
1405 if (0 < (b = PHPWRITE(p, MIN(mapped - bcount, INT_MAX)))) { in _php_stream_passthru()
1530 char *p; in _php_stream_copy_to_stream_ex() local
1533p = php_stream_mmap_range(src, php_stream_tell(src), maxlen, PHP_STREAM_MAP_MODE_SHARED_READONLY, … in _php_stream_copy_to_stream_ex()
1535 if (p) { in _php_stream_copy_to_stream_ex()
1536 didwrite = php_stream_write(dest, p, mapped); in _php_stream_copy_to_stream_ex()
1761 const char *p, *protocol = NULL; local
1772 for (p = path; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) {
[all …]
/PHP-5.5/ext/filter/tests/
H A D016.phpt17 'e.x.a.m.p.l.e.@example.com',
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dwintestoutput388 Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
97 Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
/PHP-5.5/ext/hash/
H A Dhash_tiger.c246 #define PHP_HASH_TIGER_OPS(p, b) \ argument
247 const php_hash_ops php_hash_##p##tiger##b##_ops = { \
248 (php_hash_init_func_t) PHP_##p##TIGERInit, \
H A Dhash_haval.c252 #define PHP_HASH_HAVAL_INIT(p,b) \ argument
253 const php_hash_ops php_hash_##p##haval##b##_ops = { \
254 (php_hash_init_func_t) PHP_##p##HAVAL##b##Init, \
259 PHP_HASH_API void PHP_##p##HAVAL##b##Init(PHP_HAVAL_CTX *context) \
262 context->passes = p; context->output = b; \
263 context->Transform = PHP_##p##HAVALTransform; }
/PHP-5.5/ext/phar/tests/zip/
H A Dbug48791.phpt14p text:style-name="P1"><text:span text:style-name="T1">Name:<text:tab/><text:tab/>$$n_fn$$</text:s…
/PHP-5.5/ext/mbstring/tests/
H A Dmb_eregi_replace.phpt14 "ф"=>"f","ы"=>"i","в"=>"v","а"=>"a","п"=>"p","р"=>"r",
/PHP-5.5/ext/com_dotnet/
H A Dcom_typeinfo.c43 OLECHAR *p; in php_com_load_typelib() local
55 p = php_com_string_to_olestring(search_string, strlen(search_string), codepage TSRMLS_CC); in php_com_load_typelib()
57 if (SUCCEEDED(CLSIDFromString(p, &clsid))) { in php_com_load_typelib()
91 if (FAILED(LoadTypeLib(p, &TL))) { in php_com_load_typelib()
150 efree(p); in php_com_load_typelib()
/PHP-5.5/ext/gd/libgd/
H A Dgd_interpolation.c173 double p, q; in KernelBessel_J1() local
203 p = Pone[8]; in KernelBessel_J1()
207 p = p*x*x+Pone[i]; in KernelBessel_J1()
215 double p, q; in KernelBessel_P1() local
239 p = Pone[5]; in KernelBessel_P1()
243 p = p*(8.0/x)*(8.0/x)+Pone[i]; in KernelBessel_P1()
251 double p, q; in KernelBessel_Q1() local
275 p = Pone[5]; in KernelBessel_Q1()
279 p = p*(8.0/x)*(8.0/x)+Pone[i]; in KernelBessel_Q1()
291 p = x; in KernelBessel_Order1()
[all …]
/PHP-5.5/ext/spl/tests/
H A Diterator_034.phpt97 $p = 0;
103 if ($p++ == 5)
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_real_connect.phpt142 ini_set('mysqli.default_host', 'p:' . $host);
145 printf("[022] Usage of mysqli.default_host=p:%s (persistent) failed\n", $host) ;
159 ini_set('mysqli.default_host', 'p:');
162 printf("[025] Usage of mysqli.default_host=p: did not fail\n") ;
/PHP-5.5/sapi/apache/
H A Dconfig.m4148 APACHE_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_INSTALL_FILES $APACHE_TARGET"
167 …APACHE_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_I…
192 …APACHE_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_I…
212 …APACHE_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_I…
249 $php_shtool mkdir -p sapi/apache
/PHP-5.5/sapi/apache_hooks/
H A Dconfig.m4150 …APACHE_HOOKS_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_HOOKS_INSTALL_FILES $APACHE…
169 …APACHE_HOOKS_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $AP…
194 …APACHE_HOOKS_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $AP…
214 …APACHE_HOOKS_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $AP…
251 $php_shtool mkdir -p sapi/apache_hooks

Completed in 92 milliseconds

1...<<21222324252627282930