HomeSort by relevance Sort by last modified time
    Searched refs:Byte (Results 76 - 100 of 236) sorted by null

1 2 34 5 6 7 8 910

  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 47 /// location of the next byte to emit. In the case of a buffer overflow (we
76 /// emitByte - This callback is invoked when a byte needs to be written to the
158 /// extra bytes are filled with the provided byte.
177 uint8_t Byte = Value & 0x7f;
179 if (Value || PadTo != 0) Byte |= 0x80;
180 emitByte(Byte);
185 uint8_t Byte = (PadTo > 1) ? 0x80 : 0x0;
186 emitByte(Byte);
198 uint8_t Byte = Value & 0x7f;
200 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0
    [all...]
BinaryObject.h 78 /// emitByte - This callback is invoked when a byte needs to be
192 /// fixByte - This callback is invoked when a byte needs to be
304 uint8_t Byte = (uint8_t)(Value & 0x7f);
306 if (Value) Byte |= 0x80;
307 emitByte(Byte);
318 uint8_t Byte = (uint8_t)(Value & 0x7f);
320 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
321 if (IsMore) Byte |= 0x80;
322 emitByte(Byte);
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 36 public static String getBytesAsString(byte[] data) {
39 result.append(Byte.toHexString(data[i], false));
53 public static String toString(byte[] array, String prefix) {
55 // in <code>String toString(byte[], String)</code> method
78 // put current byte
79 sb.append(Byte.toHexString(array[i], false));
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 49 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
51 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
52 if (IsMore) Byte |= 0x80;
53 OutStreamer.EmitIntValue(Byte, 1, /*addrspace*/0);
71 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
73 if (Value || PadTo != 0) Byte |= 0x80;
74 OutStreamer.EmitIntValue(Byte, 1, /*addrspace*/0);
84 /// EmitCFAByte - Emit a .byte 42 directive for a DW_CFA_xxx value.
123 /// EmitEncodingByte - Emit a .byte 42 directive that corresponds to an
170 /// EmitSectionOffset - Emit the 4-byte offset of Label from the start of it
    [all...]
  /external/zlib/
zconf.h 109 # define Byte z_Byte
333 typedef unsigned char Byte; /* 8 bits */
340 # define Bytef Byte FAR
342 typedef Byte FAR Bytef;
354 typedef Byte const *voidpc;
355 typedef Byte FAR *voidpf;
356 typedef Byte *voidp;
zconf.h.cmakein 111 # define Byte z_Byte
335 typedef unsigned char Byte; /* 8 bits */
342 # define Bytef Byte FAR
344 typedef Byte FAR Bytef;
356 typedef Byte const *voidpc;
357 typedef Byte FAR *voidpf;
358 typedef Byte *voidp;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
zconf.h 94 # define Byte z_Byte
328 typedef unsigned char Byte; /* 8 bits */
335 # define Bytef Byte FAR
337 typedef Byte FAR Bytef;
349 typedef Byte const *voidpc;
350 typedef Byte FAR *voidpf;
351 typedef Byte *voidp;
  /libcore/luni/src/main/java/java/text/
NumberFormat.java 276 * The number must be a subclass of {@code Number}. Instances of {@code Byte}, {@code Short},
299 if (object instanceof Byte || object instanceof Short || object instanceof Integer ||
684 new ObjectStreamField("maxFractionDigits", byte.class),
687 new ObjectStreamField("maxIntegerDigits", byte.class),
688 new ObjectStreamField("minFractionDigits", byte.class),
691 new ObjectStreamField("minIntegerDigits", byte.class),
700 maximumFractionDigits < Byte.MAX_VALUE ? (byte) maximumFractionDigits
701 : Byte.MAX_VALUE);
705 maximumIntegerDigits < Byte.MAX_VALUE ? (byte) maximumIntegerDigit
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/mul_int_lit8/
Test_mul_int_lit8.java 83 * @title Arguments = 0, Byte.MAX_VALUE
87 assertEquals(0, t.run(Byte.MAX_VALUE));
91 * @title Arguments = 1, Byte.MAX_VALUE
95 assertEquals(Byte.MAX_VALUE, t.run(Byte.MAX_VALUE));
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_int_lit8/
Test_rem_int_lit8.java 94 * @title Arguments = Byte.MIN_VALUE, -1
98 assertEquals(0, t.run(Byte.MIN_VALUE));
102 * @title Arguments = Byte.MIN_VALUE, 1
106 assertEquals(0, t.run(Byte.MIN_VALUE));
110 * @title Arguments = Byte.MAX_VALUE, 1
114 assertEquals(0, t.run(Byte.MAX_VALUE));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_int_lit8/
Test_mul_int_lit8.java 71 * @title Arguments = 0, Byte.MAX_VALUE
75 assertEquals(0, t.run(Byte.MAX_VALUE));
79 * @title Arguments = 1, Byte.MAX_VALUE
83 assertEquals(Byte.MAX_VALUE, t.run(Byte.MAX_VALUE));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_int_lit8/
Test_rem_int_lit8.java 82 * @title Arguments = Byte.MIN_VALUE, -1
86 assertEquals(0, t.run(Byte.MIN_VALUE));
90 * @title Arguments = Byte.MIN_VALUE, 1
94 assertEquals(0, t.run(Byte.MIN_VALUE));
98 * @title Arguments = Byte.MAX_VALUE, 1
102 assertEquals(0, t.run(Byte.MAX_VALUE));
  /dalvik/dx/src/com/android/dx/gen/
Constants.java 48 } else if (value instanceof Byte) {
49 return CstByte.make((Byte) value);
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 32 primitiveTypes.put(Byte.TYPE.getName(), Byte.TYPE);
RecordState.java 44 emptyReturnValues.put(Byte.TYPE, Byte.valueOf((byte) 0));
57 primitiveToWrapperType.put(Byte.TYPE, Byte.class);
231 if (returnType.equals(Byte.TYPE)) {
  /frameworks/compile/libbcc/lib/Disassembler/
Disassembler.cpp 57 virtual int readByte(uint64_t Addr, uint8_t *Byte) const {
60 *Byte = mBytes[Addr];
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprof.java 30 * Currently code only supports 4 byte id size.
44 byte[] bytes = new byte[512];
46 byte b = in.readByte();
79 public final byte tag;
92 this.tag = (byte) tag;
104 private static final Map<Byte, Tag> BYTE_TO_TAG
105 = new HashMap<Byte, Tag>();
113 public static Tag get(byte tag) {
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 78 unsigned Byte = Reg / 8;
79 if (Byte >= RegSetSize)
81 return (RegSet[Byte] & (1 << InByte)) != 0;
  /external/llvm/lib/MC/
MCAsmInfo.cpp 56 Data8bitsDirective = "\t.byte\t";
119 unsigned Byte = Value & 0x7f;
121 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /libcore/include/
ScopedPrimitiveArray.h 54 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RO(jbyte, Byte);
98 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RW(jbyte, Byte);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NfcUtils.java 24 /** Class with utility methods for testing equality of messages and displaying byte payloads. */
49 static CharSequence displayByteArray(byte[] bytes) {
52 builder.append(Byte.toString(bytes[i]));
  /cts/tools/vm-tests/src/dot/junit/opcodes/or_int_lit8/
Test_or_int_lit8.java 78 assertEquals(0xffffffff, t.run(Byte.MIN_VALUE));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/or_int_lit8/
Test_or_int_lit8.java 66 assertEquals(0xffffffff, t.run(Byte.MIN_VALUE));
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 115 } else if ("byte".equals(typeName)) {
268 if (value < Byte.MIN_VALUE || value > Byte.MAX_VALUE) {
271 return new Byte((byte)value);
368 * &lt;type&gt; is one of {boolean, byte, short, int, long,
377 * <li> byte, short, int, long: a valid Java integer constant
446 * Returns the value of a byte property, or the default if the property
452 * @throws TypeException if the property is set and is not a byte
454 public byte getByte(String property, byte def)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
MethodTest.java 34 long l, byte b, char c, double d, float f) {
42 boolean bool, Object o, long l, byte b, char c, double d,
54 public byte byteMethod() {
55 return (byte) 1;
101 public void invokeCastTest1(byte param) {
253 Object.class, long.class, byte.class, char.class, double.class,
318 assertTrue("Gave incorrect returne type, wanted byte", mth
319 .getReturnType().equals(byte.class));
322 assertTrue("Gave incorrect returne type, wanted byte", mth
323 .getReturnType().equals(byte.class))
    [all...]

Completed in 1421 milliseconds

1 2 34 5 6 7 8 910