Home
last modified time | relevance | path

Searched refs:putByte (Results 1 – 25 of 53) sorted by relevance

123

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DUtf8.java1218 UNSAFE.putByte(out, outIx++, (byte) c); in encodeUtf8()
1228 UNSAFE.putByte(out, outIx++, (byte) c); in encodeUtf8()
1230 UNSAFE.putByte(out, outIx++, (byte) ((0xF << 6) | (c >>> 6))); in encodeUtf8()
1231 UNSAFE.putByte(out, outIx++, (byte) (0x80 | (0x3F & c))); in encodeUtf8()
1234 UNSAFE.putByte(out, outIx++, (byte) ((0xF << 5) | (c >>> 12))); in encodeUtf8()
1235 UNSAFE.putByte(out, outIx++, (byte) (0x80 | (0x3F & (c >>> 6)))); in encodeUtf8()
1236 UNSAFE.putByte(out, outIx++, (byte) (0x80 | (0x3F & c))); in encodeUtf8()
1245 UNSAFE.putByte(out, outIx++, (byte) ((0xF << 4) | (codePoint >>> 18))); in encodeUtf8()
1246 UNSAFE.putByte(out, outIx++, (byte) (0x80 | (0x3F & (codePoint >>> 12)))); in encodeUtf8()
1247 UNSAFE.putByte(out, outIx++, (byte) (0x80 | (0x3F & (codePoint >>> 6)))); in encodeUtf8()
[all …]
DCodedOutputStream.java1274 UNSAFE.putByte(buffer, pos++, (byte) value); in writeUInt32NoTag()
1278 UNSAFE.putByte(buffer, pos++, (byte) ((value & 0x7F) | 0x80)); in writeUInt32NoTag()
1322 UNSAFE.putByte(buffer, pos++, (byte) value); in writeUInt64NoTag()
1326 UNSAFE.putByte(buffer, pos++, (byte) (((int) value & 0x7F) | 0x80)); in writeUInt64NoTag()
1858 UNSAFE.putByte(buffer, pos++, (byte) value); in bufferUInt32NoTag()
1861 UNSAFE.putByte(buffer, pos++, (byte) ((value & 0x7F) | 0x80)); in bufferUInt32NoTag()
1893 UNSAFE.putByte(buffer, pos++, (byte) value); in bufferUInt64NoTag()
1896 UNSAFE.putByte(buffer, pos++, (byte) (((int) value & 0x7F) | 0x80)); in bufferUInt64NoTag()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothHidDeviceFacade.java198 result.putByte("type", type);
199 result.putByte("id", id);
208 result.putByte("type", type);
209 result.putByte("id", id);
218 result.putByte("protocol", protocol);
226 result.putByte("registered", reportId);
/external/protobuf/java/core/src/stubs/sun/misc/
DUnsafe.java43 public void putByte(Object o, long offset, byte x) { /* null implementation */ } in putByte() method in Unsafe
44 public void putByte(long address, byte x) { /* null implmentation */ } in putByte() method in Unsafe
/external/flatbuffers/tests/MyGame/Example/
DVec3.java33 builder.putByte(test3_b); in createVec3()
36 builder.putByte(test2); in createVec3()
DTest.java23 builder.putByte(b); in createTest()
/external/guava/guava-tests/test/com/google/common/hash/
DAbstractByteHasherTest.java35 hasher.putByte((byte) 1); in testBytes()
37 hasher.putByte((byte) 7); in testBytes()
DAbstractStreamingHasherTest.java46 sink.putByte((byte) 1); in testBytes()
48 sink.putByte((byte) 7); in testBytes()
DHashingOutputStreamTest.java46 EasyMock.expect(hasher.putByte((byte) b)).andReturn(hasher).once(); in testWrite_putSingleByte()
/external/guava/guava/src/com/google/common/hash/
DAbstractCompositeHashFunction.java55 @Override public Hasher putByte(byte b) { in newHasher()
57 hasher.putByte(b); in newHasher()
DPrimitiveSink.java35 PrimitiveSink putByte(byte b); in putByte() method
DAbstractHasher.java28 return putByte(b ? (byte) 1 : (byte) 0); in putBoolean()
DHashingOutputStream.java51 hasher.putByte((byte) b); in write()
DHasher.java54 @Override Hasher putByte(byte b); in putByte() method
DHashingInputStream.java54 hasher.putByte((byte) b); in read()
DAbstractByteHasher.java62 public Hasher putByte(byte b) { in putByte() method in AbstractByteHasher
DAbstractNonStreamingHashFunction.java85 public Hasher putByte(byte b) { in putByte() method in AbstractNonStreamingHashFunction.BufferingHasher
DAbstractStreamingHashFunction.java187 public final Hasher putByte(byte b) { in putByte() method in AbstractStreamingHashFunction.AbstractStreamingHasher
DFunnels.java237 sink.putByte((byte) b); in write()
/external/caliper/caliper/src/main/java/com/google/caliper/model/
DStringMapFunnel.java35 .putByte((byte) -1) // separate key and value in funnel()
/external/flatbuffers/php/
DFlatbufferBuilder.php128 $this->bb->putByte(--$this->space, "\0");
193 public function putByte($x) function in Google\\FlatBuffers\\FlatbufferBuilder
309 $this->putByte($x);
/external/xz-java/src/org/tukaani/xz/lz/
DLZDecoder.java79 public void putByte(byte b) { in putByte() method in LZDecoder
/external/xz-java/src/org/tukaani/xz/lzma/
DLZMADecoder.java179 lz.putByte((byte)symbol); in decode()
/external/flatbuffers/tests/union_vector/
DMovie.php157 $builder->putByte($data[$i]);
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java300 public void putByte (byte x) { bb.put (space -= Constants.SIZEOF_BYTE, x); } in putByte() method in FlatBufferBuilder
355 public void addByte (byte x) { prep(Constants.SIZEOF_BYTE, 0); putByte (x); } in addByte()

123