Home
last modified time | relevance | path

Searched refs:p2 (Results 1 – 25 of 71) sorted by path

123

/PHP-5.5/Zend/
H A Dzend_hash.c1507 Bucket *p1, *p2 = NULL; in zend_hash_compare() local
1526 p2 = ht2->pListHead; in zend_hash_compare()
1530 if (ordered && !p2) { in zend_hash_compare()
1536 if (p1->nKeyLength==0 && p2->nKeyLength==0) { /* numeric indices */ in zend_hash_compare()
1537 if (p1->h != p2->h) { in zend_hash_compare()
1540 return p1->h > p2->h ? 1 : -1; in zend_hash_compare()
1543 result = p1->nKeyLength - p2->nKeyLength; in zend_hash_compare()
1549 result = memcmp(p1->arKey, p2->arKey, p1->nKeyLength); in zend_hash_compare()
1556 pData2 = p2->pData; in zend_hash_compare()
1580 p2 = p2->pListNext; in zend_hash_compare()
/PHP-5.5/ext/ereg/regex/
H A Dengine.c52 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2) argument
56 #define AT(t, p1, p2, s1, s2) /* nothing */ argument
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c1033 cmpstrp(const void *p1, const void *p2) in cmpstrp() argument
1035 return strcmp(*(char *const *)p1, *(char *const *)p2); in cmpstrp()
/PHP-5.5/ext/ftp/tests/
H A Dserver.inc388 $p2 = $port % ((int) 1 << 8);
389 $p1 = ($port-$p2)/((int) 1 << 8);
391 fputs($s, "227 Entering Passive Mode. (127,0,0,1,{$p1},{$p2})\r\n");
/PHP-5.5/ext/gd/libgd/
H A Dgd.c2794 int p1, p2; in gdImageCompare() local
2833 p2 = im2->trueColor ? gdImageTrueColorPixel(im2, x, y) : gdImagePalettePixel(im2, x, y); in gdImageCompare()
2835 if (gdImageRed(im1, p1) != gdImageRed(im2, p2)) { in gdImageCompare()
2839 if (gdImageGreen(im1, p1) != gdImageGreen(im2, p2)) { in gdImageCompare()
2843 if (gdImageBlue(im1, p1) != gdImageBlue(im2, p2)) { in gdImageCompare()
2849 if (gdImageAlpha(im1, p1) != gdImageAlpha(im2, p2)) { in gdImageCompare()
H A Dgdkanji.c240 *p2 -= cellOffset; in SJIStoJIS()
331 if ((*p2 >= 74 && *p2 <= 103) || (*p2 >= 110 && *p2 <= 122)) in han2zen()
332 (*p2)++; in han2zen()
333 else if (*p2 == 131 && *p2 == 69) in han2zen()
334 *p2 = 148; in han2zen()
336 else if (handaku && *p2 >= 110 && *p2 <= 122) in han2zen()
337 (*p2) += 2; in han2zen()
386 int p1, p2, i, j; in do_convert()
529 if (p2 == 222 || p2 == 223) in do_check_and_conv()
532 p2 = 0; in do_check_and_conv()
[all …]
/PHP-5.5/ext/gd/tests/
H A Dcopy.phpt20 $p2 = imagecolorat($dst_tc, 0,0) == 0x0000ff;
23 if ($p1 && $p2 && $p3) {
45 $p2 = $c2['red'] == 0x00 && $c2['blue']==0xff && $c2['green']==0x00;
48 if ($p1 && $p2 && $p3) {
74 $p2 = $c2['red'] == 0x00 && $c2['blue']==0xff && $c2['green']==0x00;
78 if ($p1 && $p2 && $p3) {
98 $p2 = imagecolorat($dst_tc, 0,0) == 0x0000ff;
101 if ($p1 && $p2 && $p3) {
H A Dcopyresized.phpt30 $p2 = imagecolorat($dst, $x, $y);
31 if (get_hexcolor($im, $p1) != get_hexcolor($dst, $p2)) {
H A Ddashedlines.phpt21 $p2 = imagecolorat($im, 1,5) == $b;
28 if ($p1 && $p2 && $p3 && $p4 && $p5) {
42 $p2 = imagecolorat($im, 2,1) == $b;
48 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) {
62 $p2 = imagecolorat($im, 1,1) == $b;
68 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) {
H A Dlines.phpt20 $p2 = imagecolorat($im, 5,5)==0x00ff00;
25 if ($p1 && $p2 && $p3) {
34 $p2 = imagecolorat($im, 0,5)==0x00ff00;
40 if ($p1 && $p2 && $p3) {
52 $p2 = imagecolorat($im, 5,5)==0x00ff00;
61 if ($p1 && $p2 && $p3) {
/PHP-5.5/ext/intl/collator/
H A Dcollator_sort.c251 static int collator_cmp_sort_keys( const void *p1, const void *p2 TSRMLS_DC ) in collator_cmp_sort_keys()
254 char* key2 = ((collator_sort_key_index_t*)p2)->key; in collator_cmp_sort_keys()
/PHP-5.5/ext/mbstring/
H A Dmbstring.c669 char *p, *p1, *p2, *endp, *tmpstr; in php_mb_parse_encoding_list() local
696 while ((p2 = php_memnstr(p1, ",", 1, endp)) != NULL) { in php_mb_parse_encoding_list()
697 p1 = p2 + 1; in php_mb_parse_encoding_list()
709 p2 = p = php_memnstr(p1, ",", 1, endp); in php_mb_parse_encoding_list()
744 p1 = p2 + 1; in php_mb_parse_encoding_list()
745 } while (n < size && p2 != NULL); in php_mb_parse_encoding_list()
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Dunicode.c10898 const CaseUnfold_12_Type *p2; in init_case_fold_table() local
10936 p2 = &CaseUnfold_12[i]; in init_case_fold_table()
10937 st_add_direct(Unfold2Table, (st_data_t )p2->from, (st_data_t )(&p2->to)); in init_case_fold_table()
10942 p2 = &CaseUnfold_12_Locale[i]; in init_case_fold_table()
10943 st_add_direct(Unfold2Table, (st_data_t )p2->from, (st_data_t )(&p2->to)); in init_case_fold_table()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregexec.c981 UChar *p1, *p2, *end1, *s2, *end2; in string_cmp_ic() local
992 p2 = buf2; in string_cmp_ic()
994 if (*p1 != *p2) return 0; in string_cmp_ic()
996 p2++; in string_cmp_ic()
/PHP-5.5/ext/mbstring/ucgendat/
H A Ducgendat.c225 add_range(ac_uint4 start, ac_uint4 end, char *p1, char *p2) in add_range() argument
236 if (p2 == 0) in add_range()
239 name = p2; in add_range()
/PHP-5.5/ext/oci8/tests/
H A Dbind_sqltint.phpt130 unset($p2);
132 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
139 $p2 = null;
141 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
150 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
159 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
168 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
177 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
186 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
195 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT);
[all …]
H A Dbug37581.phpt18 $p2 = "create or replace package body ARRAYBINDPKG1 as
28 $s2 = oci_parse($c, $p2);
H A Ddrcp_characterset.phpt27 $p2 = oci_pconnect($user,$password,$dbase,"US7ASCII");
28 var_dump($p2);
38 // The two connections p1 and p2 should not share resources as they use different
41 if((int)$p1 === (int)$p2)
50 oci_close($p2);
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeTILEGX_64.c362 #define BUNDLE_FORMAT_MASK(p0, p1, p2) \ argument
363 ((p0) | ((p1) << 8) | ((p2) << 16))
365 #define BUNDLE_FORMAT(p0, p1, p2) \ argument
370 (tilegx_pipeline)(p2) \
372 BUNDLE_FORMAT_MASK(1 << (p0), 1 << (p1), (1 << (p2))) \
/PHP-5.5/ext/pcre/tests/
H A D005.phpt88 [2] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
91 [5] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
103 [2] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
106 [5] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
119 [5] => /p2/var/php_gcov/PHP_4_4/ext/oci8/oci8.c
222 [5] => /p2/var/php_gcov/PHP_4_4/regex/regexec.c
305 [2] => /p2/var/php_gcov/PHP_4_4/ext/yp/yp.c
308 [5] => /p2/var/php_gcov/PHP_4_4/ext/yp/yp.c
402 [5] => /p2/var/php_gcov/PHP_4_4/Zend/zend_ini.c
449 [5] => /p2/var/php_gcov/PHP_5_2/ext/ming/ming.c
[all …]
/PHP-5.5/ext/pdo_oci/tests/
H A Dpecl_bug_6364.phpt19 … IN varchar2, p2 IN varchar2, p3 IN varchar2, p4 OUT varchar2, p5 OUT varchar2) as begin insert in…
21 $stmt = $dbh->prepare("call bug_6364_sp('p1','p2','p3',?,?)");
55 string(2) "p2"
57 string(2) "p2"
/PHP-5.5/ext/phar/tests/cache_list/
H A Dcopyonwrite10.phar.phpt15 $p2 = new Phar(__FILE__);
18 echo $p2->getStub(),"\n";
H A Dcopyonwrite11.phar.phpt15 $p2 = new Phar(__FILE__);
17 echo strlen($p2->getStub()),"\n";
H A Dcopyonwrite9.phar.phpt15 $p2 = new Phar(__FILE__);
17 echo $p2->getStub(),"\n";
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dfrontcontroller4.phar12 …�ж���������a.phps���?�kJ���l�`�������hiohio<?php function hio(){}*��*��\x����,:~p2���GBMB

Completed in 108 milliseconds

123