mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
Merge branch 'ver/1.16' of https://github.com/stonar96/Paper into ver/1.16
This commit is contained in:
commit
0f7c022cbc
@ -891,15 +891,14 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ }
|
||||
+
|
||||
+ public int read() {
|
||||
+ int value = (int) (current >>> bitInLongIndex) & mask;
|
||||
+ bitInLongIndex += bitsPerObject;
|
||||
+
|
||||
+ if (bitInLongIndex > 63) {
|
||||
+ if (bitInLongIndex + bitsPerObject > 64) {
|
||||
+ bitInLongIndex = 0;
|
||||
+ longInDataBitsIndex += 8;
|
||||
+ init();
|
||||
+ }
|
||||
+
|
||||
+ int value = (int) (current >>> bitInLongIndex) & mask;
|
||||
+ bitInLongIndex += bitsPerObject;
|
||||
+ return value;
|
||||
+ }
|
||||
+}
|
||||
@ -965,24 +964,24 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ }
|
||||
+
|
||||
+ public void write(int value) {
|
||||
+ current = current & ~(mask << bitInLongIndex) | (value & mask) << bitInLongIndex;
|
||||
+ dirty = true;
|
||||
+ bitInLongIndex += bitsPerObject;
|
||||
+
|
||||
+ if (bitInLongIndex > 63) {
|
||||
+ if (bitInLongIndex + bitsPerObject > 64) {
|
||||
+ finish();
|
||||
+ bitInLongIndex = 0;
|
||||
+ longInDataBitsIndex += 8;
|
||||
+ init();
|
||||
+ }
|
||||
+
|
||||
+ current = current & ~(mask << bitInLongIndex) | (value & mask) << bitInLongIndex;
|
||||
+ dirty = true;
|
||||
+ bitInLongIndex += bitsPerObject;
|
||||
+ }
|
||||
+
|
||||
+ public void skip() {
|
||||
+ bitInLongIndex += bitsPerObject;
|
||||
+
|
||||
+ if (bitInLongIndex > 63) {
|
||||
+ if (bitInLongIndex > 64) {
|
||||
+ finish();
|
||||
+ bitInLongIndex = 0;
|
||||
+ bitInLongIndex = bitsPerObject;
|
||||
+ longInDataBitsIndex += 8;
|
||||
+ init();
|
||||
+ }
|
||||
|
Loading…
Reference in New Issue
Block a user