Home
last modified time | relevance | path

Searched refs:p2 (Results 51 – 71 of 71) sorted by relevance

123

/PHP-5.5/ext/gd/tests/
H A Dcopyresized.phpt30 $p2 = imagecolorat($dst, $x, $y);
31 if (get_hexcolor($im, $p1) != get_hexcolor($dst, $p2)) {
/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/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/xmlrpc/libxmlrpc/
H A Dxmlrpc.c193 char *p = (char *) text, *p2 = buf; in date_from_ISO8601() local
196 *p2 = *p; in date_from_ISO8601()
197 p2++; in date_from_ISO8601()
198 if (p2-buf >= sizeof(buf)) { in date_from_ISO8601()
204 *p2 = 0; in date_from_ISO8601()
/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/wddx/
H A Dwddx.c855 char *p1, *p2, *endp; in php_wddx_push_element() local
859 while ((p2 = php_memnstr(p1, ",", sizeof(",")-1, endp)) != NULL) { in php_wddx_push_element()
860 key = estrndup(p1, p2 - p1); in php_wddx_push_element()
863 add_assoc_zval_ex(ent.data, key, p2 - p1 + 1, tmp); in php_wddx_push_element()
864 p1 = p2 + sizeof(",")-1; in php_wddx_push_element()
/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/spl/
H A Dspl_directory.c391 char *p1, *p2; in spl_filesystem_info_set_filename() local
407 p2 = strrchr(intern->file_name, '\\'); in spl_filesystem_info_set_filename()
409 p2 = 0; in spl_filesystem_info_set_filename()
411 if (p1 || p2) { in spl_filesystem_info_set_filename()
412 intern->_path_len = (p1 > p2 ? p1 : p2) - intern->file_name; in spl_filesystem_info_set_filename()
2287 char *p1, *p2; in SPL_METHOD() local
2323 p2 = strrchr(tmp_path, '\\'); in SPL_METHOD()
2325 p2 = 0; in SPL_METHOD()
2327 if (p1 || p2) { in SPL_METHOD()
2328 intern->_path_len = (p1 > p2 ? p1 : p2) - tmp_path; in SPL_METHOD()
/PHP-5.5/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt57 private $p2 = 50;
167 ["p2":"contains_object_class":private]=>
330 ["p2":"contains_object_class":private]=>
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c64948 pOp->p2 = p2;
65352 int p2 = pIn->p2;
65360 pOut->p2 = p2;
72027 p2 = pOp->p2;
72883 p2 = pOp->p2;
73149 p2 = pOp->p2;
74136 p2 = pOp->p2;
79257 p2 = p2->u.pNext;
96731 p2 = -p2;
96741 if( p2<0 ) p2 = 0;
[all …]
/PHP-5.5/ext/standard/
H A Dstring.c1031 char *p1, *p2, *endp; in php_explode() local
1036 p2 = php_memnstr(Z_STRVAL_P(str), Z_STRVAL_P(delim), Z_STRLEN_P(delim), endp); in php_explode()
1038 if (p2 == NULL) { in php_explode()
1042 add_next_index_stringl(return_value, p1, p2 - p1, 1); in php_explode()
1043 p1 = p2 + Z_STRLEN_P(delim); in php_explode()
1044 } while ((p2 = php_memnstr(p1, Z_STRVAL_P(delim), Z_STRLEN_P(delim), endp)) != NULL && in php_explode()
1058 char *p1, *p2, *endp; in php_explode_negative_limit() local
1063 p2 = php_memnstr(Z_STRVAL_P(str), Z_STRVAL_P(delim), Z_STRLEN_P(delim), endp); in php_explode_negative_limit()
1065 if (p2 == NULL) { in php_explode_negative_limit()
1081 positions[found++] = p1 = p2 + Z_STRLEN_P(delim); in php_explode_negative_limit()
[all …]
/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/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/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()
/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/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/sapi/fpm/fpm/
H A Dfpm_conf.c180 char *p2 = token + strlen("$pool"); in fpm_conf_expand_pool_name() local
191 spprintf(&buf, 0, "%s%s%s", *value, current_wp->config->name, p2); in fpm_conf_expand_pool_name()
/PHP-5.5/ext/session/
H A Dsession.c654 char *p2; in PHP_INI_MH() local
656 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
657 p = p2 + 1; in PHP_INI_MH()
/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/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/soap/
H A Dsoap.c499 char *p2; in PHP_INI_MH() local
501 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
502 p = p2 + 1; in PHP_INI_MH()

Completed in 498 milliseconds

123