Is there any diff b/w multiplication time of same data type with variables with different values. e.g
uint32_t x; uint32_t y;
y = 2; x = 5; y = x*y;
y = 655356; x = 369; y = y*x;
y = 0; /* consider y comes via some calculation don't take as const 0 here */ x = 9874; y = y*x;
Will all multiplication take same time as datatypes are same or different time as values are smaller in on case & larger in other