saumya_85
Advanced Member level 4
- Joined
- Mar 18, 2009
- Messages
- 107
- Helped
- 6
- Reputation
- 12
- Reaction score
- 5
- Trophy points
- 1,298
- Location
- INDIA
- Activity points
- 1,948
for(i=0; i<SAMPLE; i=i+1)
{
x = ((int32_t)(input)) * ((int32_t)(input));
uadd32_64(x,Sum);
}
What is the meaning of above << and >> logic
{
x = ((int32_t)(input)) * ((int32_t)(input));
uadd32_64(x,Sum);
}
Code C - [expand] 1 2 3 4 [SIZE=4] Sum[1]= Sum[1] >> 5; temp = Sum[0] << 27; Sum[1]= Sum[1]| temp; Sum[0]= Sum[0] >>5; [/SIZE]
What is the meaning of above << and >> logic