/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | Utf8.java | 1218 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 …]
|
D | CodedOutputStream.java | 1274 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/ |
D | BluetoothHidDeviceFacade.java | 198 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/ |
D | Unsafe.java | 43 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/ |
D | Vec3.java | 33 builder.putByte(test3_b); in createVec3() 36 builder.putByte(test2); in createVec3()
|
D | Test.java | 23 builder.putByte(b); in createTest()
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | AbstractByteHasherTest.java | 35 hasher.putByte((byte) 1); in testBytes() 37 hasher.putByte((byte) 7); in testBytes()
|
D | AbstractStreamingHasherTest.java | 46 sink.putByte((byte) 1); in testBytes() 48 sink.putByte((byte) 7); in testBytes()
|
D | HashingOutputStreamTest.java | 46 EasyMock.expect(hasher.putByte((byte) b)).andReturn(hasher).once(); in testWrite_putSingleByte()
|
/external/guava/guava/src/com/google/common/hash/ |
D | AbstractCompositeHashFunction.java | 55 @Override public Hasher putByte(byte b) { in newHasher() 57 hasher.putByte(b); in newHasher()
|
D | PrimitiveSink.java | 35 PrimitiveSink putByte(byte b); in putByte() method
|
D | AbstractHasher.java | 28 return putByte(b ? (byte) 1 : (byte) 0); in putBoolean()
|
D | HashingOutputStream.java | 51 hasher.putByte((byte) b); in write()
|
D | Hasher.java | 54 @Override Hasher putByte(byte b); in putByte() method
|
D | HashingInputStream.java | 54 hasher.putByte((byte) b); in read()
|
D | AbstractByteHasher.java | 62 public Hasher putByte(byte b) { in putByte() method in AbstractByteHasher
|
D | AbstractNonStreamingHashFunction.java | 85 public Hasher putByte(byte b) { in putByte() method in AbstractNonStreamingHashFunction.BufferingHasher
|
D | AbstractStreamingHashFunction.java | 187 public final Hasher putByte(byte b) { in putByte() method in AbstractStreamingHashFunction.AbstractStreamingHasher
|
D | Funnels.java | 237 sink.putByte((byte) b); in write()
|
/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
D | StringMapFunnel.java | 35 .putByte((byte) -1) // separate key and value in funnel()
|
/external/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);
|
/external/xz-java/src/org/tukaani/xz/lz/ |
D | LZDecoder.java | 79 public void putByte(byte b) { in putByte() method in LZDecoder
|
/external/xz-java/src/org/tukaani/xz/lzma/ |
D | LZMADecoder.java | 179 lz.putByte((byte)symbol); in decode()
|
/external/flatbuffers/tests/union_vector/ |
D | Movie.php | 157 $builder->putByte($data[$i]);
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | FlatBufferBuilder.java | 300 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()
|