Searched refs:bytes (Results 126 - 150 of 2331) sorted by relevance

1234567891011>>

/external/valgrind/gdbserver_tests/
H A Dmcvabits.stderrB.exp4 Address 0x........ is 0 bytes inside data symbol "undefined"
6 Address 0x........ is 0 bytes inside data symbol "undefined"
13 Address 0x........ is 0 bytes inside data symbol "undefined"
16 Address 0x........ is 0 bytes inside data symbol "undefined"
19 Address 0x........ is 0 bytes inside data symbol "undefined"
22 Address 0x........ is 0 bytes inside data symbol "undefined"
25 Address 0x........ is 0 bytes inside data symbol "undefined"
28 Address 0x........ is 0 bytes inside data symbol "undefined"
31 Address 0x........ is 0 bytes inside data symbol "undefined"
34 Address 0x........ is 0 bytes insid
[all...]
/external/conscrypt/platform/src/main/java/org/conscrypt/
H A DHex.java30 public static String bytesToHexString(byte[] bytes) { argument
31 char[] buf = new char[bytes.length * 2];
33 for (byte b : bytes) {
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_ref_info.java62 protected CONSTANT_ref_info (final UDataInputStream bytes) argument
65 m_class_index = bytes.readU2 ();
66 m_name_and_type_index = bytes.readU2 ();
/external/icu/icu4c/as_is/
H A Dbomlist.py37 bytes=f.read(3) variable
38 if bytes and (bytes == bom):
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/
H A DTestUtils.java22 byte bytes[] = new byte[size];
24 RANDOM.nextBytes(bytes);
27 data.put(bytes);
/external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
H A DAbstractTestHttpServer.java52 byte[] bytes;
60 bytes = out.toByteArray();
64 return bytes;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DBinaryJavaBeanTest.java24 byte[] bytes = new byte[] { 1, 7, 9, 31, 65 };
25 bean.setData(bytes);
33 assertEquals(new String(bytes), new String(bean2.getData()));
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
H A Dllvm-objdump.h24 void DumpBytes(StringRef bytes);
31 StringRefMemoryObject(StringRef bytes) : Bytes(bytes) {} argument
/external/syslinux/com32/lib/syslinux/
H A Dinitramfs_file.c61 Returns the number of bytes; doesn't touch the buffer if too small. */
68 size_t bytes = 0, hdr_sz; local
74 bytes += ((sizeof(struct cpio_header) + len + 1) + 3) & ~3;
79 if (buflen >= bytes) {
98 return bytes;
109 size_t bytes, hdr_sz; local
115 bytes = initramfs_mkdirs(filename, NULL, 0);
117 bytes = 0;
120 bytes += hdr_sz;
122 bp = buffer = malloc(bytes);
[all...]
/external/valgrind/memcheck/tests/
H A Dleak-tree.stderr.exp1 leaked: 64 bytes in 4 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 48 bytes in 3 blocks
4 suppressed: 0 bytes in 0 blocks
5 16 bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dmalloc1_ks_none.stderr.exp3 Address 0x........ is 1 bytes inside a block of size 10 free'd
8 Address 0x........ is 1 bytes before a block of size 10 alloc'd
/external/bison/lib/
H A Dmbchar.h40 returns the number of bytes occupied by the multibyte sequence.
169 size_t bytes; /* number of bytes of current character, > 0 */ member in struct:mbchar
172 char buf[MBCHAR_BUF_SIZE]; /* room for the bytes, used for file input only */
175 /* EOF (not a real character) is represented with bytes = 0 and
182 #define mb_len(mbc) ((mbc).bytes)
194 : (mbc1).bytes == (mbc2).bytes \
195 ? memcmp ((mbc1).ptr, (mbc2).ptr, (mbc1).bytes) \
196 : (mbc1).bytes < (mbc
[all...]
/external/sonic/
H A Dwave.c23 int bytesWritten; /* The number of bytes written so far, including header */
31 void *bytes,
39 bytesWritten = fwrite(bytes, sizeof(char), length, file->soundFile);
60 char bytes[4]; local
64 bytes[i] = value;
67 writeBytes(file, bytes, 4);
75 char bytes[2]; local
79 bytes[i] = value;
82 writeBytes(file, bytes, 2);
85 /* Read bytes fro
29 writeBytes( waveFile file, void *bytes, int length) argument
86 readBytes( waveFile file, void *bytes, int length) argument
98 readExactBytes( waveFile file, void *bytes, int length) argument
119 unsigned char bytes[4]; local
134 unsigned char bytes[2]; local
332 unsigned char bytes[WAVE_BUF_LEN]; local
356 unsigned char bytes[WAVE_BUF_LEN]; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java46 public static String fromUTF8ByteArray(byte[] bytes) argument
51 while (i < bytes.length)
54 if ((bytes[i] & 0xf0) == 0xf0)
60 else if ((bytes[i] & 0xe0) == 0xe0)
64 else if ((bytes[i] & 0xc0) == 0xc0)
79 while (i < bytes.length)
83 if ((bytes[i] & 0xf0) == 0xf0)
85 int codePoint = ((bytes[i] & 0x03) << 18) | ((bytes[i + 1] & 0x3F) << 12) | ((bytes[
297 fromByteArray(byte[] bytes) argument
308 asCharArray(byte[] bytes) argument
[all...]
/external/google-breakpad/src/third_party/libdisasm/
H A Dx86_disasm.c20 unsigned char bytes[MAX_INSTRUCTION_SIZE]; local
44 /* copy enough bytes for disassembly into buffer : this
46 memset( bytes, 0, MAX_INSTRUCTION_SIZE );
47 memcpy( bytes, &buf[offset], (len < MAX_INSTRUCTION_SIZE) ? len :
52 size = ia32_disasm_addr( bytes, len, insn);
63 MAKE_INVALID( insn, bytes );
67 /* fill bytes field of insn */
68 memcpy( insn->bytes, bytes, size );
77 unsigned int buf_len, size, count = 0, bytes local
135 unsigned int size, count = 0, bytes = 0, cont = 1; local
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dscsi.h157 /** Block length in bytes */
174 * This is the size of the data-in buffer, in bytes.
187 /** Block length in bytes */
201 unsigned char bytes[16]; member in union:scsi_cdb
210 (cdb).bytes[0], (cdb).bytes[1], (cdb).bytes[2], (cdb).bytes[3], \
211 (cdb).bytes[4], (cdb).bytes[
[all...]
/external/libcups/cups/
H A Ddebug.c93 ssize_t bytes; /* Number of bytes in buffer */ local
143 bytes = _cups_safe_vsnprintf(buffer + 19, sizeof(buffer) - 20, format, ap) + 19;
146 if ((size_t)bytes >= (sizeof(buffer) - 1))
149 bytes = sizeof(buffer) - 1;
151 else if (buffer[bytes - 1] != '\n')
153 buffer[bytes++] = '\n';
154 buffer[bytes] = '\0';
162 write(_cups_debug_fd, buffer, (size_t)bytes);
176 ssize_t bytes; /* Numbe local
346 ssize_t bytes; /* Total number of bytes needed */ local
[all...]
/external/emma/core/java12/com/vladium/emma/rt/
H A DIClassLoadHook.java26 // * returns false, the current loader will load the class bytes itself and
62 * class definition in 'bytes' ('out' could be backed by the same array as
63 * 'bytes')
68 byte [] bytes, int length,
67 processClassDef(String className, byte [] bytes, int length, ByteArrayOStream out) argument
/external/guava/guava-tests/test/com/google/common/io/
H A DTestByteSink.java32 private final ByteArrayOutputStream bytes = new ByteArrayOutputStream(); field in class:TestByteSink
43 return bytes.toByteArray();
59 bytes.reset(); // truncate
66 super(bytes, options);
/external/libcups/filter/
H A Dgziptoany.c33 ssize_t bytes; /* Number of bytes read/written */ local
86 while ((bytes = cupsFileRead(fp, buffer, sizeof(buffer))) > 0)
87 if (write(1, buffer, (size_t)bytes) < bytes)
/external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DMessagePipeHandleImpl.java45 public void writeMessage(ByteBuffer bytes, List<? extends Handle> handles, WriteFlags flags) { argument
46 mCore.writeMessage(this, bytes, handles, flags);
54 ByteBuffer bytes, int maxNumberOfHandles, ReadFlags flags) {
55 return mCore.readMessage(this, bytes, maxNumberOfHandles, flags);
53 readMessage( ByteBuffer bytes, int maxNumberOfHandles, ReadFlags flags) argument
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DIsValidUtf8Test.java52 * bytes and will return false for any sequence that will not round trip.
100 // Bad trailing bytes
135 private byte[] toByteArray(int... bytes) { argument
136 byte[] realBytes = new byte[bytes.length];
137 for (int i = 0; i < bytes.length; i++) {
138 realBytes[i] = (byte) bytes[i];
143 private void assertValidUtf8(ByteStringFactory factory, int[] bytes, boolean not) { argument
144 byte[] realBytes = toByteArray(bytes);
146 assertTrue(not ^ Utf8.isValidUtf8(realBytes, 0, bytes.length));
148 ByteString sub = leaf.substring(0, bytes
162 assertValidUtf8(int... bytes) argument
168 assertInvalidUtf8(int... bytes) argument
[all...]
/external/syslinux/utils/
H A Dkeytab-lilo3 eval { use bytes; };
/external/webrtc/webrtc/modules/audio_processing/test/
H A Dprotobuf_utils.h24 // number of bytes read.
25 size_t ReadMessageBytesFromFile(FILE* file, rtc::scoped_ptr<uint8_t[]>* bytes);
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DBitsStreamGenerator.java65 public void nextBytes(byte[] bytes) { argument
67 final int iEnd = bytes.length - 3;
70 bytes[i] = (byte) (random & 0xff);
71 bytes[i + 1] = (byte) ((random >> 8) & 0xff);
72 bytes[i + 2] = (byte) ((random >> 16) & 0xff);
73 bytes[i + 3] = (byte) ((random >> 24) & 0xff);
77 while (i < bytes.length) {
78 bytes[i++] = (byte) (random & 0xff);

Completed in 1358 milliseconds

1234567891011>>