Lines Matching refs:offset

4058 	size_t offset, bufferLen = 0;  in _php_imap_mail()  local
4084 offset = 0; in _php_imap_mail()
4095 offset += slprintf(bufferTo + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4100 if (offset>0) { in _php_imap_mail()
4101 bufferTo[offset-1] = 0; in _php_imap_mail()
4113 offset = 0; in _php_imap_mail()
4124 offset += slprintf(bufferCc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4129 if (offset>0) { in _php_imap_mail()
4130 bufferCc[offset-1] = 0; in _php_imap_mail()
4139 offset = 0; in _php_imap_mail()
4150 offset += slprintf(bufferBcc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4155 if (offset>0) { in _php_imap_mail()
4156 bufferBcc[offset-1] = 0; in _php_imap_mail()
4377 zend_long charset_token, encoding_token, end_token, end, offset=0, i; in PHP_FUNCTION() local
4391 while (offset < end) { /* Reached end of the string? */ in PHP_FUNCTION()
4392 …if ((charset_token = (zend_long)php_memnstr(&string[offset], "=?", 2, string + end))) { /* Is ther… in PHP_FUNCTION()
4394 if (offset != charset_token) { /* Is there anything before the encoded data? */ in PHP_FUNCTION()
4396 memcpy(text, &string[offset], charset_token-offset); in PHP_FUNCTION()
4397 text[charset_token - offset] = 0x00; in PHP_FUNCTION()
4434 offset = end_token+2; in PHP_FUNCTION()
4435 …for (i = 0; (string[offset + i] == ' ') || (string[offset + i] == 0x0a) || (string[offset + i] == … in PHP_FUNCTION()
4436 if ((string[offset + i] == '=') && (string[offset + i + 1] == '?') && (offset + i < end)) { in PHP_FUNCTION()
4437 offset += i; in PHP_FUNCTION()
4447 charset_token = offset; in PHP_FUNCTION()
4458 offset = end; /* We have reached the end of the string. */ in PHP_FUNCTION()