/external/annotation-tools/asmx/src/org/objectweb/asm/ |
D | TypeAnnotationWriter.java | 308 out.putInt(size).putByte(panns.length); in put() 335 bv.putByte(target_type); in visitXTargetType() 347 bv.putByte(location_length); in visitXLocationLength() 354 bv.putByte(location.tag.tag); in visitXLocation() 355 bv.putByte(location.arg); in visitXLocation() 380 bv.putByte(param_index); in visitXParamIndex() 385 bv.putByte(bound_index); in visitXBoundIndex() 391 bv.putByte(type_index); in visitXTypeIndex() 395 bv.putByte(exception_index); in visitXExceptionIndex()
|
D | MethodWriter.java | 702 code.putByte(opcode); in visitInsn() 762 code.putByte(opt); in visitVarInsn() 764 code.putByte(196 /* WIDE */).put12(opcode, var); in visitVarInsn() 871 code.putByte(ix1); in visitInvokeDynamicInsn() 872 code.putByte(ix2); in visitInvokeDynamicInsn() 949 code.putByte(200); // GOTO_W in visitJumpInsn() 951 code.putByte(201); // JSR_W in visitJumpInsn() 953 code.putByte(opcode <= 166 in visitJumpInsn() 957 code.putByte(200); // GOTO_W in visitJumpInsn() 967 code.putByte(opcode); in visitJumpInsn() [all …]
|
D | ClassWriter.java | 1027 pool.putByte(UTF8).putUTF8(value); in newUTF8() 1338 pool.putByte(INT).putInt(value); in newInteger() 1356 pool.putByte(FLOAT).putInt(Float.floatToIntBits(value)); in newFloat() 1374 pool.putByte(LONG).putLong(value); in newLong() 1393 pool.putByte(DOUBLE).putLong(Double.doubleToLongBits(value)); in newDouble()
|
D | TypePath.java | 140 out.putByte(0); in fromString()
|
/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 | 186 result.putByte("type", type); 187 result.putByte("id", id); 196 result.putByte("type", type); 197 result.putByte("id", id); 206 result.putByte("protocol", protocol); 214 result.putByte("registered", reportId);
|
/external/annotation-tools/asmx/src/org/objectweb/asm/attrs/ |
D | StackMapTableAttribute.java | 666 bv.putByte(delta); in write() 670 bv.putByte(SAME_LOCALS_1_STACK_ITEM_FRAME + delta); in write() 675 bv.putByte(SAME_LOCALS_1_STACK_ITEM_FRAME_EXTENDED); in write() 681 bv.putByte(SAME_FRAME_EXTENDED); in write() 686 bv.putByte(SAME_FRAME_EXTENDED + k); // negative k in write() 691 bv.putByte(SAME_FRAME_EXTENDED + k); // positive k in write() 701 bv.putByte(FULL_FRAME); in write() 735 bv.putByte(typeInfo.getType());
|
/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 | HashingInputStream.java | 54 hasher.putByte((byte) b); in read()
|
D | Hasher.java | 54 @Override Hasher putByte(byte b); in putByte() method
|
D | AbstractByteHasher.java | 62 public Hasher putByte(byte b) { in putByte() method in AbstractByteHasher
|
/external/annotation-tools/asmx/core/org/objectweb/asm/ |
D | ByteVector.class | <Unknown>
package org.objectweb.asm
public org.objectweb.asm.ByteVector extends java ... |
/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 300 $this->putByte($x);
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/ |
D | LZDecoder.java | 72 public void putByte(byte b) { in putByte() method in LZDecoder
|