/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | BinaryWriter.java | 1689 UnsafeUtil.putByte(buffer, pos--, (byte) value); in writeVarint32OneByte() 1693 UnsafeUtil.putByte(buffer, pos--, (byte) (value >>> 7)); in writeVarint32TwoBytes() 1694 UnsafeUtil.putByte(buffer, pos--, (byte) ((value & 0x7F) | 0x80)); in writeVarint32TwoBytes() 1698 UnsafeUtil.putByte(buffer, pos--, (byte) (value >>> 14)); in writeVarint32ThreeBytes() 1699 UnsafeUtil.putByte(buffer, pos--, (byte) (((value >>> 7) & 0x7F) | 0x80)); in writeVarint32ThreeBytes() 1700 UnsafeUtil.putByte(buffer, pos--, (byte) ((value & 0x7F) | 0x80)); in writeVarint32ThreeBytes() 1704 UnsafeUtil.putByte(buffer, pos--, (byte) (value >>> 21)); in writeVarint32FourBytes() 1705 UnsafeUtil.putByte(buffer, pos--, (byte) (((value >>> 14) & 0x7F) | 0x80)); in writeVarint32FourBytes() 1706 UnsafeUtil.putByte(buffer, pos--, (byte) (((value >>> 7) & 0x7F) | 0x80)); in writeVarint32FourBytes() 1707 UnsafeUtil.putByte(buffer, pos--, (byte) ((value & 0x7F) | 0x80)); in writeVarint32FourBytes() [all …]
|
D | UnsafeUtil.java | 124 static void putByte(Object target, long offset, byte value) { in putByte() method in UnsafeUtil 125 MEMORY_ACCESSOR.putByte(target, offset, value); in putByte() 180 static void putByte(byte[] target, long index, byte value) { in putByte() method in UnsafeUtil 181 MEMORY_ACCESSOR.putByte(target, BYTE_ARRAY_BASE_OFFSET + index, value); in putByte() 258 static void putByte(long address, byte value) { in putByte() method in UnsafeUtil 259 MEMORY_ACCESSOR.putByte(address, value); in putByte() 551 public abstract void putByte(Object target, long offset, byte value); in putByte() method in UnsafeUtil.MemoryAccessor 599 public abstract void putByte(long address, byte value); in putByte() method in UnsafeUtil.MemoryAccessor 628 public void putByte(long address, byte value) { in putByte() method in UnsafeUtil.JvmMemoryAccessor 629 unsafe.putByte(address, value); in putByte() [all …]
|
D | Utf8.java | 1533 UnsafeUtil.putByte(out, outIx++, (byte) c); in encodeUtf8() 1543 UnsafeUtil.putByte(out, outIx++, (byte) c); in encodeUtf8() 1545 UnsafeUtil.putByte(out, outIx++, (byte) ((0xF << 6) | (c >>> 6))); in encodeUtf8() 1546 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & c))); in encodeUtf8() 1549 UnsafeUtil.putByte(out, outIx++, (byte) ((0xF << 5) | (c >>> 12))); in encodeUtf8() 1550 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & (c >>> 6)))); in encodeUtf8() 1551 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & c))); in encodeUtf8() 1560 UnsafeUtil.putByte(out, outIx++, (byte) ((0xF << 4) | (codePoint >>> 18))); in encodeUtf8() 1561 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & (codePoint >>> 12)))); in encodeUtf8() 1562 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & (codePoint >>> 6)))); in encodeUtf8() [all …]
|
D | CodedOutputStream.java | 1341 UnsafeUtil.putByte(buffer, position++, (byte) value); in writeUInt32NoTag() 1344 UnsafeUtil.putByte(buffer, position++, (byte) (value | 0x80)); in writeUInt32NoTag() 1347 UnsafeUtil.putByte(buffer, position++, (byte) value); in writeUInt32NoTag() 1350 UnsafeUtil.putByte(buffer, position++, (byte) (value | 0x80)); in writeUInt32NoTag() 1353 UnsafeUtil.putByte(buffer, position++, (byte) value); in writeUInt32NoTag() 1356 UnsafeUtil.putByte(buffer, position++, (byte) (value | 0x80)); in writeUInt32NoTag() 1359 UnsafeUtil.putByte(buffer, position++, (byte) value); in writeUInt32NoTag() 1362 UnsafeUtil.putByte(buffer, position++, (byte) (value | 0x80)); in writeUInt32NoTag() 1364 UnsafeUtil.putByte(buffer, position++, (byte) value); in writeUInt32NoTag() 1401 UnsafeUtil.putByte(buffer, position++, (byte) value); in writeUInt64NoTag() [all …]
|
/third_party/flatbuffers/tests/MyGame/Example/ |
D | ArrayStruct.java | 41 builder.putByte(d_c[_idx0-1][_idx1-1]); in createArrayStruct() 43 builder.putByte(d_b[_idx0-1]); in createArrayStruct() 49 builder.putByte(c); in createArrayStruct()
|
D | NestedStruct.java | 31 builder.putByte(c[_idx0-1]); in createNestedStruct() 33 builder.putByte(b); in createNestedStruct()
|
D | Vec3.kt | 38 builder.putByte(test3_b) in mutateX() 41 builder.putByte(test2.toByte()) in mutateX()
|
D | Vec3.java | 33 builder.putByte(test3_b); in createVec3() 36 builder.putByte((byte)test2); in createVec3()
|
D | Test.kt | 28 builder.putByte(b) in mutateA()
|
D | Test.java | 23 builder.putByte(b); in createTest()
|
D | Vec3.php | 88 $builder->putByte($test2);
|
D | StructOfStructs.kt | 34 builder.putByte(b_b) in a()
|
D | StructOfStructs.java | 29 builder.putByte(b_b); in createStructOfStructs()
|
D | Monster.php | 862 $builder->putByte($data[$i]); 1033 $builder->putByte($data[$i]); 1299 $builder->putByte($data[$i]); 1675 $builder->putByte($data[$i]); 1719 $builder->putByte($data[$i]);
|
/third_party/flatbuffers/php/ |
D | FlatbufferBuilder.php | 128 $this->bb->putByte(--$this->space, "\0"); 193 public function putByte($x) function in Google\\FlatBuffers\\FlatbufferBuilder 309 $this->putByte($x);
|
D | ByteBuffer.php | 190 public function putByte($offset, $value) function in Google\\FlatBuffers\\ByteBuffer
|
/third_party/flatbuffers/tests/union_vector/ |
D | Movie.php | 157 $builder->putByte($data[$i]);
|
/third_party/flatbuffers/java/com/google/flatbuffers/ |
D | FlatBufferBuilder.java | 345 public void putByte (byte x) { bb.put (space -= Constants.SIZEOF_BYTE, x); } in putByte() method in FlatBufferBuilder 400 public void addByte (byte x) { prep(Constants.SIZEOF_BYTE, 0); putByte (x); } in addByte()
|
/third_party/flatbuffers/tests/ |
D | phpTest.php | 343 $uut->putByte(0, "\x63"); // 99 350 $uut->putByte(1, "\x63"); // 99
|
/third_party/quickjs/tests/ |
D | test_std.js | 71 f.putByte(str.charCodeAt(i));
|
/third_party/quickjs/doc/ |
D | quickjs.texi | 559 @item putByte(c)
|