zend_binary_strncmp  525 Zend/zend_builtin_functions.c 	RETURN_LONG(zend_binary_strncmp(s1, s1_len, s2, s2_len, len));
zend_binary_strncmp 2126 Zend/zend_operators.c 	return zend_binary_strncmp(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2), Z_LVAL_P(s3));
zend_binary_strncmp  365 Zend/zend_operators.h ZEND_API int zend_binary_strncmp(const char *s1, uint len1, const char *s2, uint len2, uint length);
zend_binary_strncmp 5642 ext/standard/string.c 		RETURN_LONG(zend_binary_strncmp(s1 + offset, (s1_len - offset), s2, s2_len, cmp_len));