Home
last modified time | relevance | path

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

/php-src/win32/
H A Dsendmail.c223 if (!pos1) { in TSendMail()
239 pos1 = headers + (pos1 - lookup) + 5; in TSendMail()
241 RPath = estrndup(pos1, strlen(pos1)); in TSendMail()
243 RPath = estrndup(pos1, pos2 - pos1); in TSendMail()
488 pos1 = headers + (pos1 - headers_lc) + 3; in SendText()
490 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
502 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText()
549 if ((pos1 = strstr(headers_lc, "bcc:")) && (pos1 == headers_lc || *(pos1-1) == '\n')) { in SendText()
553 pos1 = headers + (pos1 - headers_lc) + 4; in SendText()
555 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
[all …]
/php-src/ext/spl/
H A Dphp_spl.c296 char *pos, *pos1; in PHP_FUNCTION() local
317 pos1 = strchr(pos, ','); in PHP_FUNCTION()
318 if (pos1) { in PHP_FUNCTION()
319 pos1_len = (int)(pos1 - pos); in PHP_FUNCTION()
326 pos = pos1 ? pos1 + 1 : NULL; in PHP_FUNCTION()
327 pos_len = pos1? pos_len - pos1_len - 1 : 0; in PHP_FUNCTION()
/php-src/Zend/
H A Dzend_language_scanner.l379 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local
412 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode()
416 while ((size_t)(pos1 - pos2) >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
417 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
/php-src/ext/standard/
H A Dstring.c3617 …str(const char *txt1, size_t len1, const char *txt2, size_t len2, size_t *pos1, size_t *pos2, size… argument
3632 *pos1 = p - txt1;
3644 size_t pos1 = 0, pos2 = 0, max, count; local
3646 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max, &count);
3648 if (pos1 && pos2 && count > 1) {
3649 sum += php_similar_char(txt1, pos1,
3652 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3653 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,

Completed in 46 milliseconds