You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
third_number=(second_adjustment_length >> 7) | 0x80# And with 0xFF00 to only get the top 8 bytes. Then right shift by 7 to undo the left shift by 7 in the code, and
107
-
# since this is a number greater than 0x7F, add in the sign bit again by ORing with 0x80.
108
-
second_number=(second_adjustment_length >> 7 >> 7) | 0x80# Same thing as above but right shift 7 twice to undo the left shift by 7 twice in the code.
109
-
first_number=(second_adjustment_length >> 7 >> 7 >> 8) | 0x80# Same thing as above but right shift 7 twice to undo the left shift by 7 twice in the code and also right shift by 8 to undo the left shift by 8 in the code.
second_number=(second_adjustment_length >> 7) | 0x80# And with 0xFF00 to only get the top 8 bytes. Then right shift by 7 to undo the left shift by 7 in the code, and
114
-
# since this is a number greater than 0x7F, add in the sign bit again by ORing with 0x80.
115
-
first_number=(second_adjustment_length >> 7 >> 7) | 0x80# Same thing as above but right shift 7 twice to undo the left shift by 7 twice in the code.
first_number=(second_adjustment_length >> 7) | 0x80# And with 0xFF00 to only get the top 8 bytes. Then right shift by 7 to undo the left shift by 7 in the code, and
120
-
# since this is a number greater than 0x7F, add in the sign bit again by ORing with 0x80.
0 commit comments