Lines Matching refs:shorter
1643 zval *longer, *shorter; in bitwise_or_function() local
1657 shorter = op2; in bitwise_or_function()
1660 shorter = op1; in bitwise_or_function()
1664 for (i = 0; i < Z_STRLEN_P(shorter); i++) { in bitwise_or_function()
1665 ZSTR_VAL(str)[i] = Z_STRVAL_P(longer)[i] | Z_STRVAL_P(shorter)[i]; in bitwise_or_function()
1725 zval *longer, *shorter; in bitwise_and_function() local
1739 shorter = op2; in bitwise_and_function()
1742 shorter = op1; in bitwise_and_function()
1745 str = zend_string_alloc(Z_STRLEN_P(shorter), 0); in bitwise_and_function()
1746 for (i = 0; i < Z_STRLEN_P(shorter); i++) { in bitwise_and_function()
1747 ZSTR_VAL(str)[i] = Z_STRVAL_P(shorter)[i] & Z_STRVAL_P(longer)[i]; in bitwise_and_function()
1807 zval *longer, *shorter; in bitwise_xor_function() local
1821 shorter = op2; in bitwise_xor_function()
1824 shorter = op1; in bitwise_xor_function()
1827 str = zend_string_alloc(Z_STRLEN_P(shorter), 0); in bitwise_xor_function()
1828 for (i = 0; i < Z_STRLEN_P(shorter); i++) { in bitwise_xor_function()
1829 ZSTR_VAL(str)[i] = Z_STRVAL_P(shorter)[i] ^ Z_STRVAL_P(longer)[i]; in bitwise_xor_function()