Home
last modified time | relevance | path

Searched refs:pos1 (Results 1 – 5 of 5) sorted by relevance

/PHP-7.0/win32/
H A Dsendmail.c250 if (!pos1) { in TSendMail()
266 pos1 = headers + (pos1 - lookup) + 5; in TSendMail()
268 RPath = estrndup(pos1, strlen(pos1)); in TSendMail()
270 RPath = estrndup(pos1, pos2 - pos1); in TSendMail()
487 pos1 = headers + (pos1 - headers_lc) + 3; in SendText()
489 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
491 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText()
538 if ((pos1 = strstr(headers_lc, "bcc:")) && (pos1 == headers_lc || *(pos1-1) == '\n')) { in SendText()
542 pos1 = headers + (pos1 - headers_lc) + 4; in SendText()
544 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
[all …]
/PHP-7.0/ext/spl/
H A Dphp_spl.c311 char *pos, *pos1; in PHP_FUNCTION() local
329 pos1 = strchr(pos, ','); in PHP_FUNCTION()
330 if (pos1) { in PHP_FUNCTION()
331 pos1_len = (int)(pos1 - pos); in PHP_FUNCTION()
338 pos = pos1 ? pos1 + 1 : NULL; in PHP_FUNCTION()
339 pos_len = pos1? pos_len - pos1_len - 1 : 0; in PHP_FUNCTION()
/PHP-7.0/Zend/
H A Dzend_language_scanner.l349 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local
382 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode()
386 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
387 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
H A Dzend_language_scanner.c351 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local
384 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode()
388 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
389 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
/PHP-7.0/ext/standard/
H A Dstring.c3465 …str(const char *txt1, size_t len1, const char *txt2, size_t len2, size_t *pos1, size_t *pos2, size… argument
3478 *pos1 = p - txt1;
3491 size_t pos1 = 0, pos2 = 0, max; local
3493 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
3495 if (pos1 && pos2) {
3496 sum += php_similar_char(txt1, pos1,
3499 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3500 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,

Completed in 46 milliseconds