HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 701 - 725 of 2623) sorted by null

<<21222324252627282930>>

  /libcore/benchmarks/src/benchmarks/regression/
SerializationBenchmark.java 28 private static byte[] bytes(Object o) throws Exception { method in class:SerializationBenchmark
96 byte[] bytes = bytes(object);
97 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileOutputStreamTest.java 36 private byte[] bytes; field in class:FileOutputStreamTest
41 bytes = new byte[10];
42 for (int i = 0; i < bytes.length; i++) {
43 bytes[i] = (byte) i;
198 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString
289 fos.write(bytes);
301 fos.write(bytes);
303 fos.write(bytes);
305 fos.write(bytes);
322 fos.write(bytes);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 24 private static byte[] bytes; field in class:ArrayTest
35 bytes = new byte[] { (byte) 0xff };
46 try { Array.getBoolean(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
58 assertEquals(bytes[0], Array.getByte(bytes, 0));
70 try { Array.getChar(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
82 assertEquals((double) bytes[0], Array.getDouble(bytes, 0));
94 assertEquals((float) bytes[0], Array.getFloat(bytes, 0))
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
ProcessEnvironment.java 31 * These are unsorted, case-sensitive, null-terminated arrays of bytes
128 protected final byte[] bytes; field in class:ProcessEnvironment.ExternalData
130 protected ExternalData(String str, byte[] bytes) {
132 this.bytes = bytes;
136 return bytes;
156 protected Variable(String str, byte[] bytes) {
157 super(str, bytes);
173 public static Variable valueOf(byte[] bytes) {
174 return new Variable(new String(bytes), bytes)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fileio.py 16 from test.test_support import py3k_bytes as bytes namespace
35 p.write(bytes(range(10)))
42 self.f.write(bytes(range(20)))
326 # Opening a bytes filename
369 f.write(bytes(bytearray(range(10))))
384 f.write(bytes(range(11)))
389 if data != bytes(range(5)):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
uuid.py 38 # get the raw 16 bytes of the UUID
39 >>> x.bytes
43 >>> uuid.UUID(bytes=x.bytes)
61 of 16 bytes (with all the integer fields in big-endian order) as an
62 argument named 'bytes', or a string of 16 bytes (with the first three
68 bytes the UUID as a 16-byte string (containing the six
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
104 a string of 16 bytes as the 'bytes' argument, a string of 16 byte
208 bytes = property(get_bytes) variable in class:UUID
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fileio.py 16 from test.test_support import py3k_bytes as bytes namespace
35 p.write(bytes(range(10)))
42 self.f.write(bytes(range(20)))
326 # Opening a bytes filename
369 f.write(bytes(bytearray(range(10))))
384 f.write(bytes(range(11)))
389 if data != bytes(range(5)):
  /prebuilts/gdb/linux-x86/lib/python2.7/
uuid.py 38 # get the raw 16 bytes of the UUID
39 >>> x.bytes
43 >>> uuid.UUID(bytes=x.bytes)
61 of 16 bytes (with all the integer fields in big-endian order) as an
62 argument named 'bytes', or a string of 16 bytes (with the first three
68 bytes the UUID as a 16-byte string (containing the six
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
104 a string of 16 bytes as the 'bytes' argument, a string of 16 byte
208 bytes = property(get_bytes) variable in class:UUID
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fileio.py 16 from test.test_support import py3k_bytes as bytes namespace
35 p.write(bytes(range(10)))
42 self.f.write(bytes(range(20)))
326 # Opening a bytes filename
369 f.write(bytes(bytearray(range(10))))
384 f.write(bytes(range(11)))
389 if data != bytes(range(5)):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 38 # get the raw 16 bytes of the UUID
39 >>> x.bytes
43 >>> uuid.UUID(bytes=x.bytes)
61 of 16 bytes (with all the integer fields in big-endian order) as an
62 argument named 'bytes', or a string of 16 bytes (with the first three
68 bytes the UUID as a 16-byte string (containing the six
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
104 a string of 16 bytes as the 'bytes' argument, a string of 16 byte
208 bytes = property(get_bytes) variable in class:UUID
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fileio.py 16 from test.test_support import py3k_bytes as bytes namespace
35 p.write(bytes(range(10)))
42 self.f.write(bytes(range(20)))
326 # Opening a bytes filename
369 f.write(bytes(bytearray(range(10))))
384 f.write(bytes(range(11)))
389 if data != bytes(range(5)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 38 # get the raw 16 bytes of the UUID
39 >>> x.bytes
43 >>> uuid.UUID(bytes=x.bytes)
61 of 16 bytes (with all the integer fields in big-endian order) as an
62 argument named 'bytes', or a string of 16 bytes (with the first three
68 bytes the UUID as a 16-byte string (containing the six
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
104 a string of 16 bytes as the 'bytes' argument, a string of 16 byte
208 bytes = property(get_bytes) variable in class:UUID
    [all...]
  /system/core/adb/
shell_service.cpp 128 int bytes = adb_read(fd, buffer, sizeof(buffer)); local
129 if (bytes <= 0) {
132 received.append(buffer, bytes);
622 int bytes = adb_write(stdinout_sfd_.fd(), input_->data() + index, local
624 if (bytes == 0 || (bytes < 0 && errno != EAGAIN)) {
625 if (bytes < 0) {
632 } else if (bytes > 0) {
633 input_bytes_left_ -= bytes;
641 int bytes = adb_read(sfd->fd(), output_->data(), output_->data_capacity()) local
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.h 101 uint64_t bytes; /* # of bytes written */ member in struct:__anon74432
  /system/media/audio_route/
audio_route.c 39 unsigned char *bytes; member in union:ctl_values
139 ALOGE(" id=%d value=0x%02x", j, path->setting[i].value.bytes[j]);
331 path->setting[path_index].value.bytes[0] = mixer_value->value;
342 path->setting[path_index].value.bytes[i] = mixer_value->value;
353 path->setting[path_index].value.bytes[mixer_value->index] = mixer_value->value;
527 ar->mixer_state[ctl_index].new_value.bytes[id] = value;
539 ar->mixer_state[ctl_index].new_value.bytes[i] = value;
653 if (ar->mixer_state[i].old_value.bytes[j] != ar->mixer_state[i].new_value.bytes[j]) {
807 if (ms->old_value.bytes[j] != ms->new_value.bytes[j])
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
libbfd.c 410 sections; each access (except for bytes) is vectored through
808 int bytes;
813 bytes = bits / 8;
814 for (i = 0; i < bytes; i++)
816 int addr_index = big_p ? bytes - i - 1 : i;
829 int bytes;
835 bytes = bits / 8;
836 for (i = 0; i < bytes; i++)
838 int addr_index = big_p ? i : bytes - i - 1;
806 int bytes; local
827 int bytes; local
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/
commons-codec-1.3.jar 

Completed in 1526 milliseconds

<<21222324252627282930>>