Searched refs:Byte (Results 251 - 275 of 305) sorted by relevance

<<111213

/external/guava/guava/src/com/google/common/primitives/
H A DShorts.java51 public static final int BYTES = Short.SIZE / Byte.SIZE;
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DChars.java52 public static final int BYTES = Character.SIZE / Byte.SIZE;
H A DInts.java49 public static final int BYTES = Integer.SIZE / Byte.SIZE;
H A DLongs.java49 public static final int BYTES = Long.SIZE / Byte.SIZE;
H A DShorts.java49 public static final int BYTES = Short.SIZE / Byte.SIZE;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DField.java114 value = Byte.valueOf((byte) blenderInputStream.readByte());
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryImporter.java193 bco.aliasFields = new HashMap<Byte, BinaryClassField>(fields);
H A DBinaryInputCapsule.java64 protected HashMap<Byte, Object> fieldData;
75 fieldData = new HashMap<Byte, Object>();
300 return ((Byte) fieldData.get(field.alias)).byteValue();
/external/lzma/CS/7zip/Compress/LZ/
H A DLzBinTree.cs72 public new Byte GetIndexByte(Int32 index) { return base.GetIndexByte(index); }
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs304 outStream.WriteByte((Byte)(fileSize >> (8 * i)));
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1617 uint8_t Byte = static_cast<uint8_t>(Value);
1621 if (static_cast<uint8_t>(Value) != Byte) return -1;
1623 return Byte;
1629 int Byte = isRepeatedByteSequence(CA->getOperand(0), TM); local
1630 if (Byte == -1) return -1;
1635 if (Byte != ThisByte) return -1;
1637 return Byte;
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java423 if (Byte.class.isAssignableFrom(mClass)) {
424 return (T) LittleMock.<Byte>addMatcher(this, (byte) 0);
1112 PRIMITIVE_TO_BOXED_LOOKUP.put(byte.class, Byte.class);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DFormatterTest.java1133 { new Byte((byte) 0x01), "%3.2b", " tr", },
1134 { new Byte((byte) 0x01), "%-4.6b", "true", },
1135 { new Byte((byte) 0x01), "%.2b", "tr", },
1197 { new Byte((byte) 0x01), "%2.3s", " 1", },
1198 { new Byte((byte) 0x01), "%-6.4s", "1 ", },
1199 { new Byte((byte) 0x01), "%.5s", "1", },
1255 new Byte((byte) 0x01),
1298 new Byte((byte) 0x01),
1471 * Byte/Short/Integer/Long conversion type 'd'
1569 * Byte/Shor
[all...]
H A DArraysTest.java424 Arrays.fill(d, Byte.MAX_VALUE);
427 d[i] == Byte.MAX_VALUE);
435 byte val = Byte.MAX_VALUE;
702 Arrays.fill(d, Byte.MAX_VALUE);
703 Arrays.fill(x, Byte.MIN_VALUE);
705 Arrays.fill(x, Byte.MAX_VALUE);
1793 listOfByte.add(new Byte(byteArr[i]));
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
H A DSerializer.java110 registerClass(Byte.class, new ByteSerializer());
/external/lzma/CPP/Windows/
H A DRegistry.cpp352 const wchar_t *data = (const wchar_t *)(const Byte *)buffer;
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
H A DProxyBuilder.java694 PRIMITIVE_TO_BOXED.put(byte.class, Byte.class);
725 map.put(byte.class, TypeId.get(Byte.class).getMethod(TypeId.BYTE, "byteValue"));
/external/qemu/distrib/zlib-1.2.3/
H A Dtrees.c1169 put_byte(s, (Byte)s->bi_buf);
1184 put_byte(s, (Byte)s->bi_buf);
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas266 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
/external/zlib/src/
H A Dtrees.c1177 put_byte(s, (Byte)s->bi_buf);
1192 put_byte(s, (Byte)s->bi_buf);
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMInputCapsule.java129 return Byte.parseByte(tmpString);
164 tmp[i] = Byte.parseByte(strings[i]);
1402 for (String s : strings) tmp.put(Byte.valueOf(s));
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DRopeByteString.java786 public Byte next() {
787 return nextByte(); // Does not instantiate a Byte
/external/elfutils/libdwfl/
H A Drelocate.c347 #define TYPES DO_TYPE (BYTE, Byte); DO_TYPE (HALF, Half); \
/external/lzma/CPP/7zip/Archive/Common/
H A DHandlerOut.cpp147 destProp = (Byte)value;
/external/nist-sip/java/gov/nist/core/
H A DGenericObject.java76 "Boolean", "Byte", "Short", "Integer", "Long",
163 if (ec == Byte.TYPE)

Completed in 679 milliseconds

<<111213