Lines Matching refs:shorter
1486 zval *longer, *shorter; in bitwise_or_function() local
1500 shorter = op2; in bitwise_or_function()
1503 shorter = op1; in bitwise_or_function()
1507 for (i = 0; i < Z_STRLEN_P(shorter); i++) { in bitwise_or_function()
1508 ZSTR_VAL(str)[i] = Z_STRVAL_P(longer)[i] | Z_STRVAL_P(shorter)[i]; in bitwise_or_function()
1564 zval *longer, *shorter; in bitwise_and_function() local
1578 shorter = op2; in bitwise_and_function()
1581 shorter = op1; in bitwise_and_function()
1584 str = zend_string_alloc(Z_STRLEN_P(shorter), 0); in bitwise_and_function()
1585 for (i = 0; i < Z_STRLEN_P(shorter); i++) { in bitwise_and_function()
1586 ZSTR_VAL(str)[i] = Z_STRVAL_P(shorter)[i] & Z_STRVAL_P(longer)[i]; in bitwise_and_function()
1642 zval *longer, *shorter; in bitwise_xor_function() local
1656 shorter = op2; in bitwise_xor_function()
1659 shorter = op1; in bitwise_xor_function()
1662 str = zend_string_alloc(Z_STRLEN_P(shorter), 0); in bitwise_xor_function()
1663 for (i = 0; i < Z_STRLEN_P(shorter); i++) { in bitwise_xor_function()
1664 ZSTR_VAL(str)[i] = Z_STRVAL_P(shorter)[i] ^ Z_STRVAL_P(longer)[i]; in bitwise_xor_function()