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

1 2 3 4 5 6 7 8 91011

  /external/pdfium/fxbarcode/pdf417/
BC_PDF417Compaction.h 11 enum Compaction { AUTO, TEXT, BYTES, NUMERIC };
  /external/ltp/testcases/network/nfs/nfslock01/
nfs_flock.c 13 #define BYTES 64
38 * else with 0's. Number of charcters in any line are BYTES-1,
41 for (i = 0; i < BYTES - 1; i++) {
47 buf[BYTES - 1] = '\n';
55 offset += 2 * BYTES;
61 offset = BYTES;
63 offset += 2 * BYTES;
68 if (writeb_lock(fd, offset, SEEK_SET, BYTES) < 0)
74 write(fd, buf, BYTES);
76 if (unb_lock(fd, offset, SEEK_SET, BYTES) < 0
    [all...]
  /hardware/nxp/secure_element/libese-spi/p73/utils/
config.h 24 enum Type { UNSIGNED, STRING, BYTES };
  /packages/services/Car/car-lib/src/android/car/
VehiclePropertyType.java 38 public static final int BYTES = 0x00700000;
52 BYTES,
  /system/nfc/utils/include/
config.h 24 enum Type { UNSIGNED, STRING, BYTES };
  /external/python/cpython2/Modules/_ctypes/libffi_msvc/
ffi.c 108 /* On Win64, if a single argument takes more than 8 bytes,
122 if (argp - stack > ecif->cif->bytes)
146 otherwise, put the 4- or 8-bytes integer type. */
218 return ffi_call_x86(ffi_prep_args, &ecif, cif->bytes,
224 return ffi_call_AMD64(ffi_prep_args, &ecif, cif->bytes,
382 /* On Win64, if a single argument takes more than 8 bytes,
409 short bytes; local
417 bytes = 0;
420 bytes = cif->bytes;
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi_msvc/
ffi.c 127 /* On Win64, if a single argument takes more than 8 bytes,
141 if (argp >= stack && (unsigned)(argp - stack) > ecif->cif->bytes)
165 otherwise, put the 4- or 8-bytes integer type. */
237 return ffi_call_x86(ffi_prep_args, &ecif, cif->bytes,
242 /* If a single argument takes more than 8 bytes,
253 return ffi_call_AMD64(ffi_prep_args, &ecif, cif->bytes,
411 /* On Win64, if a single argument takes more than 8 bytes,
438 short bytes; local
446 bytes = 0;
449 bytes = cif->bytes
    [all...]
  /external/ltp/testcases/kernel/syscalls/ipc/msgctl/
msgctl07.c 53 #define BYTES 100
68 char text[BYTES];
112 for (i = 0; i < BYTES; i++)
115 if (msgsnd(msqid, &p1_msgp, BYTES, 0) == -1) {
152 for (i = 0; i < BYTES; i++)
155 if (msgsnd(msqid, &p1_msgp, BYTES, 0) == -1) {
161 for (j = 0; j < BYTES; j++)
164 if (msgsnd(msqid, &p2_msgp, BYTES, 0) == -1) {
170 for (k = 0; k < BYTES; k++)
173 if (msgsnd(msqid, &p3_msgp, BYTES, 0) == -1)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Byte.java 511 * The number of bytes used to represent a {@code byte} value in two's
516 public static final int BYTES = SIZE / Byte.SIZE;
Short.java 474 * The number of bytes used to represent a {@code short} value in two's
479 public static final int BYTES = SIZE / Byte.SIZE;
482 * Returns the value obtained by reversing the order of the bytes in the
485 * @param i the value whose bytes are to be reversed
487 * the bytes in the specified {@code short} value.
Double.java 126 * The number of bytes used to represent a {@code double} value.
130 public static final int BYTES = SIZE / Byte.SIZE;
    [all...]
Float.java 124 * The number of bytes used to represent a {@code float} value.
128 public static final int BYTES = SIZE / Byte.SIZE;
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Chars.java 55 * The number of bytes required to represent a primitive {@code char}
58 public static final int BYTES = Character.SIZE / Byte.SIZE;
299 * stored in the first 2 bytes of {@code bytes}; equivalent to {@code
300 * ByteBuffer.wrap(bytes).getChar()}. For example, the input byte array
306 * @throws IllegalArgumentException if {@code bytes} has fewer than 2
310 public static char fromByteArray(byte[] bytes) {
311 checkArgument(bytes.length >= BYTES,
312 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
Floats.java 58 * The number of bytes required to represent a primitive {@code float}
63 public static final int BYTES = Float.SIZE / Byte.SIZE;
Shorts.java 54 * The number of bytes required to represent a primitive {@code short}
57 public static final int BYTES = Short.SIZE / Byte.SIZE;
307 * stored in the first 2 bytes of {@code bytes}; equivalent to {@code
308 * ByteBuffer.wrap(bytes).getShort()}. For example, the input byte array
314 * @throws IllegalArgumentException if {@code bytes} has fewer than 2
318 public static short fromByteArray(byte[] bytes) {
319 checkArgument(bytes.length >= BYTES,
320 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
Doubles.java 59 * The number of bytes required to represent a primitive {@code double}
64 public static final int BYTES = Double.SIZE / Byte.SIZE;
Ints.java 56 * The number of bytes required to represent a primitive {@code int}
59 public static final int BYTES = Integer.SIZE / Byte.SIZE;
309 * the first 4 bytes of {@code bytes}; equivalent to {@code
310 * ByteBuffer.wrap(bytes).getInt()}. For example, the input byte array {@code
317 * @throws IllegalArgumentException if {@code bytes} has fewer than 4 elements
320 public static int fromByteArray(byte[] bytes) {
321 checkArgument(bytes.length >= BYTES,
322 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
Longs.java 53 * The number of bytes required to represent a primitive {@code long}
56 public static final int BYTES = Long.SIZE / Byte.SIZE;
278 * stored in the first 8 bytes of {@code bytes}; equivalent to {@code
279 * ByteBuffer.wrap(bytes).getLong()}. For example, the input byte array
286 * @throws IllegalArgumentException if {@code bytes} has fewer than 8
289 public static long fromByteArray(byte[] bytes) {
290 checkArgument(bytes.length >= BYTES,
291 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 53 * The number of bytes required to represent a primitive {@code char}
56 public static final int BYTES = Character.SIZE / Byte.SIZE;
Doubles.java 54 * The number of bytes required to represent a primitive {@code double}
59 public static final int BYTES = Double.SIZE / Byte.SIZE;
Floats.java 54 * The number of bytes required to represent a primitive {@code float}
59 public static final int BYTES = Float.SIZE / Byte.SIZE;
Shorts.java 52 * The number of bytes required to represent a primitive {@code short}
55 public static final int BYTES = Short.SIZE / Byte.SIZE;
Ints.java 55 * The number of bytes required to represent a primitive {@code int}
58 public static final int BYTES = Integer.SIZE / Byte.SIZE;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
WireFormat.java 133 BYTES (JavaType.BYTE_STRING, WIRETYPE_LENGTH_DELIMITED) {
176 * contain non-UTF8 bytes.
179 /** Eagerly parses to String; silently accepts invalid UTF8 bytes. */
186 /** Eagerly parses to String; throws an IOException on invalid bytes. */
232 case BYTES : return input.readBytes ();
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 59 /** Assert that actual equals the first len bytes of expected. */
67 /** Assert that actual equals the first len bytes of expected. */
75 /** Assert that actual equals the first len bytes of expected. */
125 private static final byte[] BYTES = { (byte) 0xff, (byte) 0xee, (byte) 0xdd,
130 assertEquals(BYTES, 0, Base64.decode("", 0));
131 assertEquals(BYTES, 1, Base64.decode("/w==", 0));
132 assertEquals(BYTES, 2, Base64.decode("/+4=", 0));
133 assertEquals(BYTES, 3, Base64.decode("/+7d", 0));
134 assertEquals(BYTES, 4, Base64.decode("/+7dzA==", 0));
135 assertEquals(BYTES, 5, Base64.decode("/+7dzLs=", 0))
    [all...]

Completed in 366 milliseconds

1 2 3 4 5 6 7 8 91011