Sorry, but I don't really understand what your problem is.
What exactly do you expect ?
The screen of 320 * 480 or 480 * 320 is the reference screen for AutoScale. So AutoScale doesn't change anything for this screen size because the scale factor is equal to 1 independent of the scale rate value.
These are the equations for AutoScale (430 = 480 - 50 for the two top lines):
delta = ((100%x + 100%y) / (320dip + 430dip) - 1)
rate = 0.3 'value between 0 to 1.
scale = 1 + rate * delta
With the standard screen delta = 0 and scale = 1.
The goal of AutoScale is having two layout variants one for 320 * 480 and the other for 480 * 320 and use AutoScale, in the All variant script, to adjust the layout for all the other screen sizes.
Best regards.