HomeSort by relevance Sort by last modified time
    Searched refs:Chunk (Results 51 - 75 of 122) sorted by null

1 23 4 5

  /prebuilts/gdb/linux-x86/lib/python2.7/
wave.py 92 from chunk import Chunk
118 _fmt_chunk_read -- 1 iff the FMT chunk has been read
121 _data_chunk -- instantiation of a chunk class for the DATA chunk
128 self._file = Chunk(file, bigendian = 0)
138 chunk = Chunk(self._file, bigendian = 0)
141 chunkname = chunk.getname()
143 self._read_fmt_chunk(chunk)
    [all...]
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
aifc.py 23 A chunk consists of an identifier (4 bytes) followed by a size (4 bytes,
27 The following chunk types are recognized.
253 from chunk import Chunk
284 # _comm_chunk_read -- 1 iff the COMM chunk has been read
288 # _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
298 chunk = Chunk(file)
299 if chunk.getname() != 'FORM'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
wave.py 92 from chunk import Chunk
118 _fmt_chunk_read -- 1 iff the FMT chunk has been read
121 _data_chunk -- instantiation of a chunk class for the DATA chunk
128 self._file = Chunk(file, bigendian = 0)
138 chunk = Chunk(self._file, bigendian = 0)
141 chunkname = chunk.getname()
143 self._read_fmt_chunk(chunk)
    [all...]
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
aifc.py 23 A chunk consists of an identifier (4 bytes) followed by a size (4 bytes,
27 The following chunk types are recognized.
253 from chunk import Chunk
284 # _comm_chunk_read -- 1 iff the COMM chunk has been read
288 # _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
298 chunk = Chunk(file)
299 if chunk.getname() != 'FORM'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
wave.py 92 from chunk import Chunk
118 _fmt_chunk_read -- 1 iff the FMT chunk has been read
121 _data_chunk -- instantiation of a chunk class for the DATA chunk
128 self._file = Chunk(file, bigendian = 0)
138 chunk = Chunk(self._file, bigendian = 0)
141 chunkname = chunk.getname()
143 self._read_fmt_chunk(chunk)
    [all...]
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
aifc.py 23 A chunk consists of an identifier (4 bytes) followed by a size (4 bytes,
27 The following chunk types are recognized.
253 from chunk import Chunk
284 # _comm_chunk_read -- 1 iff the COMM chunk has been read
288 # _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
298 chunk = Chunk(file)
299 if chunk.getname() != 'FORM'
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_packet.cc 147 // chunk | SSRC/CSRC_1 |
152 // chunk | SSRC/CSRC_2 |
166 void CreateSdes(const std::vector<Sdes::Chunk>& chunks,
170 for (std::vector<Sdes::Chunk>::const_iterator it = chunks.begin();
437 // In each chunk, the list of items must be terminated by one or more null
438 // octets. The next chunk must start on a 32-bit boundary.
441 Chunk chunk; local
442 chunk.ssrc = ssrc;
443 chunk.name = cname
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
LDSection.h 33 friend class Chunk<LDSection, MCLD_SECTIONS_PER_INPUT>;
EhFrame.h 35 friend class Chunk<EhFrame, MCLD_SECTIONS_PER_INPUT>;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
aifc.py 23 A chunk consists of an identifier (4 bytes) followed by a size (4 bytes,
27 The following chunk types are recognized.
253 from chunk import Chunk
284 # _comm_chunk_read -- 1 iff the COMM chunk has been read
288 # _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
298 chunk = Chunk(file)
299 if chunk.getname() != 'FORM'
    [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.h 483 /// \param Chunked True if chunk is specified in the clause.
498 llvm::Value *Chunk = nullptr);
521 /// \param Chunk Value of the chunk for the static_chunked scheduled loop.
522 /// For the default (nullptr) value, the chunk 1 will be used.
529 llvm::Value *Chunk = nullptr);
    [all...]
CGStmtOpenMP.cpp     [all...]
CGOpenMPRuntime.cpp     [all...]
  /external/clang/lib/Sema/
SemaType.cpp 140 /// The index of the declarator chunk we're currently processing.
309 /// Given the index of a declarator chunk, check whether that chunk
363 llvm_unreachable("bad declarator chunk kind");
369 llvm_unreachable("bad declarator chunk kind");
391 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local
392 switch (chunk.Kind) {
402 if (!destChunk) destChunk = &chunk;
451 DeclaratorChunk &chunk = declarator.getTypeObject(i); local
452 switch (chunk.Kind)
510 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local
542 DeclaratorChunk &chunk = declarator.getTypeObject(i); local
2366 DeclaratorChunk &chunk = declarator.getTypeObject(chunkIndex); local
3056 DeclaratorChunk &chunk = declarator.getTypeObject(i); local
3369 DeclaratorChunk &chunk = D.getTypeObject(i); local
4332 DeclaratorChunk &chunk = D.getTypeObject(chunkIndex); local
4374 DeclaratorChunk &chunk = D.getTypeObject(i); local
5717 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local
    [all...]
  /external/chromium-trace/catapult/third_party/coverage/coverage/
parser.py 294 # Opcodes that unconditionally end the code chunk.
300 # Opcodes that unconditionally begin a new code chunk. By starting new chunks
411 """Split the code object into a list of `Chunk` objects.
413 Each chunk is only entered at its first instruction, though there can
414 be many exits from a chunk.
416 Returns a list of `Chunk` objects.
421 chunk = None
449 # Maybe have to start a new chunk.
453 # Start a new chunk for each source line number.
459 # chunk when we get to a place some bytecode jumps to
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /frameworks/base/libs/hwui/
RenderNode.h 281 void buildZSortedChildList(const DisplayList::Chunk& chunk,
DisplayListCanvas.cpp 521 // op is first in new chunk
523 DisplayList::Chunk& newChunk = mDisplayList->chunks.back();
532 // standard case - append to existing chunk
565 // update the chunk's child indices
566 DisplayList::Chunk& chunk = mDisplayList->chunks.back(); local
567 chunk.endChildIndex = childIndex + 1;
  /frameworks/base/core/java/android/os/
Debug.java 43 import org.apache.harmony.dalvik.ddmc.Chunk;
775 System.out.println("Sending WAIT chunk");
777 Chunk waitChunk = new Chunk(ChunkHandler.type("WAIT"), data, 0, 1);
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 963 // Fix up the size of the 'mdat' chunk.
1705 Chunk chunk; local
1769 Chunk chunk; local
    [all...]
  /frameworks/base/core/java/android/util/jar/
StrictJarVerifier.java 447 StrictJarManifest.Chunk chunk = manifest.getChunk(entry.getKey()); local
448 if (chunk == null) {
452 chunk.start, chunk.end, createdBySigntool, false)) {

Completed in 887 milliseconds

1 23 4 5