HomeSort by relevance Sort by last modified time
    Searched full:chunk_type (Results 1 - 19 of 19) sorted by null

  /external/sonivox/arm-wt-22k/lib_src/
eas_mdls.h 203 CHUNK_TYPE is a macro that converts the 4 input args into a 32-bit int
209 #define CHUNK_TYPE(a,b,c,d) ( \
215 #define CHUNK_RIFF CHUNK_TYPE('R','I','F','F')
216 #define CHUNK_DLS CHUNK_TYPE('D','L','S',' ')
217 #define CHUNK_CDL CHUNK_TYPE('c','d','l',' ')
218 #define CHUNK_VERS CHUNK_TYPE('v','e','r','s')
219 #define CHUNK_DLID CHUNK_TYPE('d','l','i','d')
220 #define CHUNK_LIST CHUNK_TYPE('L','I','S','T')
221 #define CHUNK_COLH CHUNK_TYPE('c','o','l','h')
222 #define CHUNK_LINS CHUNK_TYPE('l','i','n','s'
    [all...]
eas_wavefile.c 52 #define CHUNK_TYPE(a,b,c,d) ( \
58 #define CHUNK_RIFF CHUNK_TYPE('R','I','F','F')
59 #define CHUNK_WAVE CHUNK_TYPE('W','A','V','E')
60 #define CHUNK_FMT CHUNK_TYPE('f','m','t',' ')
61 #define CHUNK_DATA CHUNK_TYPE('d','a','t','a')
62 #define CHUNK_LIST CHUNK_TYPE('L','I','S','T')
63 #define CHUNK_INFO CHUNK_TYPE('I','N','F','O')
64 #define CHUNK_INAM CHUNK_TYPE('I','N','A','M')
65 #define CHUNK_ICOP CHUNK_TYPE('I','C','O','P')
66 #define CHUNK_IART CHUNK_TYPE('I','A','R','T'
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 101 typedef ChunkType chunk_type; typedef in class:mcld::LinearAllocatorBase
137 { chunk_type::construct(pPtr, pValue); }
145 { chunk_type::construct(pPtr); }
150 { chunk_type::destroy(pPtr); }
158 if (0 == N || N > chunk_type::size())
164 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
179 if (chunk_type::size() == m_pCurrent->bound)
191 N > chunk_type::size() ||
214 pPtr <= &(m_pCurrent->data[chunk_type::size()-1]))
222 pPtr <= &(m_pCurrent->data[chunk_type::size()-1])
    [all...]
GCFactory.h 118 typedef DataIterator<typename Alloc::chunk_type,
121 typedef DataIterator<typename Alloc::chunk_type,
  /external/iptables/extensions/
libxt_sctp.c 93 unsigned int chunk_type; member in struct:sctp_chunk_names
99 = { { .name = "DATA", .chunk_type = 0, .valid_flags = "----IUBE"},
100 { .name = "INIT", .chunk_type = 1, .valid_flags = "--------"},
101 { .name = "INIT_ACK", .chunk_type = 2, .valid_flags = "--------"},
102 { .name = "SACK", .chunk_type = 3, .valid_flags = "--------"},
103 { .name = "HEARTBEAT", .chunk_type = 4, .valid_flags = "--------"},
104 { .name = "HEARTBEAT_ACK", .chunk_type = 5, .valid_flags = "--------"},
105 { .name = "ABORT", .chunk_type = 6, .valid_flags = "-------T"},
106 { .name = "SHUTDOWN", .chunk_type = 7, .valid_flags = "--------"},
107 { .name = "SHUTDOWN_ACK", .chunk_type = 8, .valid_flags = "--------"}
    [all...]
  /system/core/libsparse/
simg_dump.py 99 chunk_type = header[0]
108 if chunk_type == 0xCAC1:
116 elif chunk_type == 0xCAC2:
125 elif chunk_type == 0xCAC3:
131 elif chunk_type == 0xCAC4:
141 print("Unknown chunk type 0x%04X" % (chunk_type), end="")
sparse_format.h 43 __le16 chunk_type; /* 0xCAC1 -> raw; 0xCAC2 -> fill; 0xCAC3 -> don't care */ member in struct:chunk_header
output_file.c 360 chunk_header.chunk_type = CHUNK_TYPE_DONT_CARE;
386 chunk_header.chunk_type = CHUNK_TYPE_FILL;
422 chunk_header.chunk_type = CHUNK_TYPE_RAW;
457 chunk_header.chunk_type = CHUNK_TYPE_CRC32;
sparse_read.c 234 switch (chunk_header->chunk_type) {
271 chunk_header->chunk_type, offset);
  /dalvik/vm/alloc/
DdmHeap.cpp 123 dvmDbgDdmSendChunk(CHUNK_TYPE("HPIF"), b - buf, buf);
301 bool native = ctx->type == CHUNK_TYPE("NHSG");
407 ctx.type = CHUNK_TYPE("NHSG");
410 ctx.type = CHUNK_TYPE("HPSG");
412 ctx.type = CHUNK_TYPE("HPSO");
471 dvmDbgDdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"),
480 dvmDbgDdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"),
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp 486 uint32_t chunk_type = ntohl(hdr[1]); local
487 if (chunk_type == FOURCC('s', 'i', 'd', 'x')) {
490 } else if (chunk_type == FOURCC('m', 'o', 'o', 'f')) {
741 uint32_t chunk_type = ntohl(hdr[1]); local
761 MakeFourCCString(chunk_type, chunk);
782 PathAdder autoAdder(&mPath, chunk_type);
786 if (chunk_type != FOURCC('c', 'p', 'r', 't')
787 && chunk_type != FOURCC('c', 'o', 'v', 'r')
805 switch(chunk_type) {
821 if (chunk_type == FOURCC('s', 't', 'b', 'l'))
2414 uint32_t chunk_type = ntohl(hdr[1]); local
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_wavefile.c 52 #define CHUNK_TYPE(a,b,c,d) ( \
58 #define CHUNK_RIFF CHUNK_TYPE('R','I','F','F')
59 #define CHUNK_WAVE CHUNK_TYPE('W','A','V','E')
60 #define CHUNK_FMT CHUNK_TYPE('f','m','t',' ')
61 #define CHUNK_DATA CHUNK_TYPE('d','a','t','a')
62 #define CHUNK_LIST CHUNK_TYPE('L','I','S','T')
63 #define CHUNK_INFO CHUNK_TYPE('I','N','F','O')
64 #define CHUNK_INAM CHUNK_TYPE('I','N','A','M')
65 #define CHUNK_ICOP CHUNK_TYPE('I','C','O','P')
66 #define CHUNK_IART CHUNK_TYPE('I','A','R','T'
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wavefile.c 52 #define CHUNK_TYPE(a,b,c,d) ( \
58 #define CHUNK_RIFF CHUNK_TYPE('R','I','F','F')
59 #define CHUNK_WAVE CHUNK_TYPE('W','A','V','E')
60 #define CHUNK_FMT CHUNK_TYPE('f','m','t',' ')
61 #define CHUNK_DATA CHUNK_TYPE('d','a','t','a')
62 #define CHUNK_LIST CHUNK_TYPE('L','I','S','T')
63 #define CHUNK_INFO CHUNK_TYPE('I','N','F','O')
64 #define CHUNK_INAM CHUNK_TYPE('I','N','A','M')
65 #define CHUNK_ICOP CHUNK_TYPE('I','C','O','P')
66 #define CHUNK_IART CHUNK_TYPE('I','A','R','T'
    [all...]
  /dalvik/vm/
Ddm.cpp 269 type = CHUNK_TYPE("THCR");
294 type = CHUNK_TYPE("THDE");
332 dvmDbgDdmSendChunk(CHUNK_TYPE("THNM"), bufLen, buf);
Debugger.h 306 #define CHUNK_TYPE(_name) \
Profile.cpp 704 dvmDbgDdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
  /dalvik/vm/hprof/
Hprof.cpp 107 dvmDbgDdmSendChunkV(CHUNK_TYPE("HPDS"), iov, 2);
  /external/chromium/chrome/browser/safe_browsing/
protocol_parser.h 36 // <chunk_type>:<chunk_number>:<prefix_len>:<chunk_bytes>\n<binary_data>
safe_browsing_test.cc 468 // TODO(lzheng): Remove chunk_type=add once it is not needed by the server.
471 "chunk_type=add",

Completed in 331 milliseconds