HomeSort by relevance Sort by last modified time
    Searched defs:BYTE (Results 1 - 25 of 50) sorted by null

1 2

  /external/arduino/hardware/arduino/cores/arduino/
Print.h 32 #define BYTE 0
46 void print(char, int = BYTE);
47 void print(unsigned char, int = BYTE);
56 void println(char, int = BYTE);
57 void println(unsigned char, int = BYTE);
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael_local.h 6 typedef u_int8_t BYTE;
  /external/chromium_org/third_party/icu/source/samples/layout/
UnicodeReader.cpp 20 #define BYTE(b) (((int) b) & 0xFF)
23 * Read the text from a file. The text must start with a Unicode Byte
75 BYTE(startBytes[0]), BYTE(startBytes[1]), BYTE(startBytes[2]), BYTE(startBytes[3]));
  /external/icu/icu4c/source/samples/layout/
UnicodeReader.cpp 20 #define BYTE(b) (((int) b) & 0xFF)
23 * Read the text from a file. The text must start with a Unicode Byte
75 BYTE(startBytes[0]), BYTE(startBytes[1]), BYTE(startBytes[2]), BYTE(startBytes[3]));
  /cts/common/util/src/com/android/compatibility/common/util/
ResultUnit.java 36 BYTE,
  /cts/libs/commonutil/src/com/android/cts/util/
ResultUnit.java 37 BYTE,
  /external/conscrypt/src/main/java/org/conscrypt/util/
EmptyArray.java 25 public static final byte[] BYTE = new byte[0];
  /dalvik/hit/src/com/android/hit/
Types.java 27 public static final int BYTE = 8;
44 case 'B': return 1; // byte
54 case BYTE: return 1;
71 case 'B': return "byte";
81 case BYTE: return "byte";
  /external/chromium_org/third_party/npapi/npspy/include/
xp.h 59 typedef unsigned char BYTE;
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 39 /** The {@code byte} primitive type. */
40 public static final TypeId<Byte> BYTE = new TypeId<Byte>(com.android.dx.rop.type.Type.BYTE);
74 PRIMITIVE_TO_TYPE.put(byte.class, BYTE);
  /external/openfst/src/include/fst/
string.h 42 enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 };
72 if (token_type_ == BYTE) {
149 TokenType token_type_; // Token type: symbol, byte or utf8 encoded
166 enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 };
191 } else if (token_type_ == BYTE) {
262 TokenType token_type_; // Token type: symbol, byte or utf8 encoded
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 37 /** {@code non-null;} instance corresponding to the class {@code Byte} */
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
64 /** {@code non-null;} instance corresponding to the type {@code byte[]} */
106 case Type.BT_BYTE: return BYTE;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 37 /** {@code non-null;} instance corresponding to the class {@code Byte} */
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
64 /** {@code non-null;} instance corresponding to the type {@code byte[]} */
106 case Type.BT_BYTE: return BYTE;
  /external/chromium_org/dbus/
message.h 67 BYTE = DBUS_TYPE_BYTE,
272 // Appends a byte to the message.
331 // Appends the byte wrapped in a variant data container. Variants are
380 // Gets the byte at the current iterator position.
382 // Returns false if the data type is not a byte.
438 // common errors come from the iterator not currently being at a byte array or
442 // Gets the byte from the variant data container at the current iterator
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
list_ports_windows.py 20 from ctypes.wintypes import BYTE
28 #~ LPBYTE = PBYTE = ctypes.POINTER(BYTE)
37 return (BYTE*length)()
52 ('Data4', BYTE*8),
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstType.java 37 /** {@code non-null;} instance corresponding to the class {@code Byte} */
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
64 /** {@code non-null;} instance corresponding to the type {@code byte[]} */
106 case Type.BT_BYTE: return BYTE;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 60 * The sort of the <tt>byte</tt> type. See {@link #getSort getSort}.
62 public static final int BYTE = 3;
115 * The <tt>byte</tt> type.
117 public static final Type BYTE_TYPE = new Type(BYTE);
235 } else if (c == Byte.TYPE) {
388 * {@link #CHAR CHAR}, {@link #BYTE BYTE}, {@link #SHORT SHORT},
434 case BYTE:
435 return "byte";
525 case BYTE:
    [all...]
Frame.java 174 * The BYTE type. This is a BASE type mainly used for array types.
176 static final int BYTE = BASE | 10;
645 data = BYTE;
    [all...]
  /bionic/libc/kernel/uapi/linux/
cciss_defs.h 54 #define BYTE __u8
66 BYTE Dev;
67 BYTE Bus:6;
69 BYTE Mode:2;
72 BYTE DevLSB;
74 BYTE DevMSB:6;
75 BYTE Mode:2;
79 BYTE Dev:5;
80 BYTE Bus:3;
81 BYTE Targ:6
    [all...]
  /development/ndk/platforms/android-L/include/linux/
cciss_defs.h 54 #define BYTE __u8
66 BYTE Dev;
67 BYTE Bus:6;
69 BYTE Mode:2;
72 BYTE DevLSB;
74 BYTE DevMSB:6;
75 BYTE Mode:2;
79 BYTE Dev:5;
80 BYTE Bus:3;
81 BYTE Targ:6
    [all...]
  /external/kernel-headers/original/uapi/linux/
cciss_defs.h 43 #define BYTE __u8
50 #define LEVEL2LUN 1 /* index into Target(x) structure, due to byte swapping */
58 BYTE Dev;
59 BYTE Bus:6;
60 BYTE Mode:2; /* b00 */
63 BYTE DevLSB;
64 BYTE DevMSB:6;
65 BYTE Mode:2; /* b01 */
68 BYTE Dev:5;
69 BYTE Bus:3
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 44 /** basic type constant for {@code byte} */
77 /** {@code non-null;} instance representing {@code byte} */
78 public static final Type BYTE = new Type("B", BT_BYTE);
113 putIntern(BYTE);
134 CLASS_TYPE_MAP.put(byte.class, BYTE);
173 * {@code non-null;} instance representing {@code java.lang.Byte}; the
177 public static final Type BYTE_CLASS = intern("Ljava/lang/Byte;");
231 /** {@code non-null;} instance representing {@code byte[]} */
232 public static final Type BYTE_ARRAY = BYTE.getArrayType()
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 42 /** basic type constant for {@code byte} */
75 /** {@code non-null;} instance representing {@code byte} */
76 public static final Type BYTE = new Type("B", BT_BYTE);
111 putIntern(BYTE);
157 * {@code non-null;} instance representing {@code java.lang.Byte}; the
161 public static final Type BYTE_CLASS = intern("Ljava/lang/Byte;");
215 /** {@code non-null;} instance representing {@code byte[]} */
216 public static final Type BYTE_ARRAY = BYTE.getArrayType();
502 case BT_BYTE: return "byte";
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
win32.py 9 from ctypes.wintypes import BYTE
279 ('ByteSize', BYTE),
280 ('Parity', BYTE),
281 ('StopBits', BYTE),
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 43 /** basic type constant for {@code byte} */
76 /** {@code non-null;} instance representing {@code byte} */
77 public static final Type BYTE = new Type("B", BT_BYTE);
112 putIntern(BYTE);
158 * {@code non-null;} instance representing {@code java.lang.Byte}; the
162 public static final Type BYTE_CLASS = intern("Ljava/lang/Byte;");
216 /** {@code non-null;} instance representing {@code byte[]} */
217 public static final Type BYTE_ARRAY = BYTE.getArrayType();
503 case BT_BYTE: return "byte";

Completed in 1119 milliseconds

1 2