Searched defs:bytes (Results 1 - 25 of 617) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2005-07-26-UnionInitCrash.c3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member in union:__anon4128
/external/skia/src/gpu/
H A DGrMemory.cpp13 void* GrMalloc(size_t bytes) { argument
14 void* ptr = ::malloc(bytes);
/external/chromium/chrome/common/
H A Dguid_posix.cc19 std::string RandomDataToGUIDString(const uint64 bytes[2]) { argument
21 static_cast<unsigned int>(bytes[0] >> 32),
22 static_cast<unsigned int>((bytes[0] >> 16) & 0x0000ffff),
23 static_cast<unsigned int>(bytes[0] & 0x0000ffff),
24 static_cast<unsigned int>(bytes[1] >> 48),
25 bytes[1] & 0x0000ffffffffffffULL);
H A Dguid_unittest.cc13 uint64 bytes[] = { 0, 0 }; local
14 std::string clientid = guid::RandomDataToGUIDString(bytes);
19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL }; local
20 std::string clientid = guid::RandomDataToGUIDString(bytes);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Enumerated.java8 ASN1Enumerated(byte[] bytes) argument
10 super(bytes);
H A DASN1GeneralizedTime.java8 ASN1GeneralizedTime(byte[] bytes) argument
10 super(bytes);
H A DASN1Integer.java8 ASN1Integer(byte[] bytes) argument
10 super(bytes);
H A DASN1UTCTime.java8 ASN1UTCTime(byte[] bytes) argument
10 super(bytes);
H A DASN1ObjectIdentifier.java11 ASN1ObjectIdentifier(byte[] bytes) argument
13 super(bytes);
/external/elfutils/libdw/
H A Ddwarf_nextcu.c87 char *bytes = (char *) dwarf->sectiondata[IDX_debug_info]->d_buf + off; local
110 4. A 1-byte unsigned integer representing the size in bytes of
114 uint64_t length = read_4ubyte_unaligned_inc (dwarf, bytes);
138 length = read_8ubyte_unaligned_inc (dwarf, bytes);
142 read_2ubyte_unaligned_inc (dwarf, bytes);
148 abbrev_offset = read_4ubyte_unaligned_inc (dwarf, bytes);
150 abbrev_offset = read_8ubyte_unaligned_inc (dwarf, bytes);
155 uint8_t address_size = *bytes++;
165 *header_sizep = (bytes
/external/flac/libFLAC/include/private/
H A Dmd5.h15 * To compute the message digest of a chunk of bytes, declare an
17 * needed on buffers full of bytes, and then call MD5Final, which
34 FLAC__uint32 bytes[2]; member in struct:__anon5458
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DReadListener.java37 public void readBytes(int bytes); argument
/external/libvpx/
H A Dmd5_utils.h12 * To compute the message digest of a chunk of bytes, declare an
14 * needed on buffers full of bytes, and then call MD5Final, which
33 UWORD32 bytes[2]; member in struct:MD5Context
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeReaderVariable.java22 public static long read(ByteBuffer bb, int bytes) { argument
23 switch (bytes) {
35 throw new RuntimeException("I don't know how to read " + bytes + " bytes");
H A DIsoTypeWriterVariable.java23 public static void write(long v, ByteBuffer bb, int bytes) { argument
24 switch (bytes) {
41 throw new RuntimeException("I don't know how to read " + bytes + " bytes");
/external/valgrind/main/helgrind/tests/
H A Dtc16_byterace.c7 char bytes[10]; variable
13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */
28 bytes accessed */
30 bytes[2*i + 1] ++; /* accesses: 1 3 5 7 9 */
32 /* Unprotected relative to child, but harmful; same bytes */
34 bytes[3*i + 1] ++; /* accesses: 1 4(race!) 7 */
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_jpeg_factory.cc16 char* bytes,
15 CanParse(const FilePath& path, char* bytes, int bytes_size) argument
/external/chromium/net/base/
H A Dbandwidth_metrics.cc32 void ScopedBandwidthMetrics::RecordBytes(int bytes) { argument
33 g_bandwidth_metrics.Get().RecordBytes(bytes);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayByteInput.java21 private final byte[] bytes; field in class:ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) { argument
25 this.bytes = bytes;
29 return bytes[position++];
/external/dhcpcd/compat/
H A Dgetline.c44 size_t bytes, newlen; local
54 bytes = 0;
58 if (*buf == NULL || bytes != 0) {
66 p = *buf + bytes;
70 bytes += strlen(p);
71 } while (bytes == 0 || *(*buf + (bytes - 1)) != '\n');
72 if (bytes == 0)
74 return bytes;
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathCacheEntry.java28 public ClassPathCacheEntry (final byte [] bytes, final String srcURL) argument
32 $assert.ASSERT (bytes != null, "bytes = null");
36 m_bytes = bytes;
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/icu4c/test/intltest/
H A Dtestutil.cpp54 UnicodeString TestUtility::hex(const uint8_t* bytes, int32_t len) { argument
57 buf.append(HEX[0x0F & (bytes[i] >> 4)]);
58 buf.append(HEX[0x0F & bytes[i]]);
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h24 void DumpBytes(StringRef bytes);
31 StringRefMemoryObject(StringRef bytes) : Bytes(bytes) {} argument
/external/okhttp/src/main/java/libcore/util/
H A DIntegralToString.java58 public static String bytesToHexString(byte[] bytes, boolean upperCase) { argument
60 char[] buf = new char[bytes.length * 2];
62 for (byte b : bytes) {

Completed in 621 milliseconds

1234567891011>>