/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
Chunk.java | 22 * A chunk of DDM data. This is really just meant to hold a few pieces 28 public class Chunk { 33 public int type; // chunk type 34 public byte[] data; // chunk data 40 public Chunk() {} 45 public Chunk(int type, byte[] data, int offset, int length) { 53 * Construct from a ByteBuffer. The chunk is assumed to start at 56 public Chunk(int type, ByteBuffer buf) {
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
PODArena.h | 146 m_chunks.append(adoptPtr(new Chunk(m_allocator.get(), m_currentChunkSize))); 160 // Manages a chunk of memory and individual allocations out of it. 161 class Chunk { 162 WTF_MAKE_NONCOPYABLE(Chunk); 166 Chunk(Allocator* allocator, size_t size) 176 ~Chunk() 182 // Chunk could not satisfy the allocation. 205 Chunk* m_current; 207 Vector<OwnPtr<Chunk> > m_chunks;
|
/external/qemu/distrib/sdl-1.2.12/src/audio/ |
SDL_wave.h | 44 /* Not saved in the chunk we read: 56 /* The general chunk found in the WAVE file */ 57 typedef struct Chunk { 61 } Chunk;
|
/external/v8/src/ |
bignum.h | 96 typedef uint32_t Chunk; 99 static const int kChunkSize = sizeof(Chunk) * 8; 104 static const Chunk kBigitMask = (1 << kBigitSize) - 1; 124 Chunk BigitAt(int index) const; 127 Chunk bigits_buffer_[kBigitCapacity]; 130 Vector<Chunk> bigits_;
|
global-handles.cc | 246 current_ = new Chunk(); 266 Chunk* current = current_; 269 Chunk* previous = current->previous; 279 struct Chunk : public Malloced { 280 Chunk* previous; 285 Chunk* chunk = new Chunk(); local 286 chunk->previous = current_; 287 current_ = chunk; [all...] |
/external/clang/lib/Sema/ |
CodeCompleteConsumer.cpp | 82 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) 157 CodeCompletionString::Chunk 158 CodeCompletionString::Chunk::CreateText(const char *Text) { 159 return Chunk(CK_Text, Text); 162 CodeCompletionString::Chunk 163 CodeCompletionString::Chunk::CreateOptional(CodeCompletionString *Optional) { 164 Chunk Result; 170 CodeCompletionString::Chunk 171 CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder) [all...] |
SemaTemplateVariadic.cpp | 659 const DeclaratorChunk &Chunk = D.getTypeObject(I); 660 switch (Chunk.Kind) { 673 llvm_unreachable("Could not have seen this kind of declarator chunk"); 677 if (Chunk.Mem.Scope().getScopeRep() && 678 Chunk.Mem.Scope().getScopeRep()->containsUnexpandedParameterPack())
|
SemaExprCXX.cpp | [all...] |
SemaType.cpp | 116 /// The index of the declarator chunk we're currently processing. 300 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local 301 switch (chunk.Kind) { 305 chunk.getAttrListRef()); 337 DeclaratorChunk &chunk = declarator.getTypeObject(i); local 338 switch (chunk.Kind) { 371 // Otherwise, if we found an appropriate chunk, splice the attribute 396 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local 397 switch (chunk.Kind) { 400 chunk.getAttrListRef()) 428 DeclaratorChunk &chunk = declarator.getTypeObject(i); local 1566 DeclaratorChunk &chunk = declarator.getTypeObject(chunkIndex); local 2535 DeclaratorChunk &chunk = D.getTypeObject(chunkIndex); local 2571 DeclaratorChunk &chunk = D.getTypeObject(i); local [all...] |
SemaCodeComplete.cpp | [all...] |
SemaDecl.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
Thumb1RegisterInfo.cpp | 145 unsigned Chunk = ((1 << NumBits) - 1) * Scale; 148 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes; 153 Chunk = ((1 << NumBits) - 1) * Scale; 156 NumMIs += Bytes / Chunk; 157 if ((Bytes % Chunk) != 0) 238 unsigned Chunk = (1 << 3) - 1; 239 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes; 253 unsigned Chunk = ((1 << NumBits) - 1) * Scale [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZFrameLowering.cpp | 69 unsigned Opc; uint64_t Chunk; 75 Chunk = (1LL << 31) - 1; 78 Chunk = (1LL << 15) - 1; 84 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
|
/external/valgrind/main/memcheck/perf/ |
many-loss-records.c | 42 struct Chunk { 43 struct Chunk* child; 47 struct Chunk** topblocks; 58 void free_chunks (struct Chunk ** mem) 70 void release (struct Chunk ** mem) 87 int sz = sizeof(struct Chunk*) + malloc_data; 92 struct Chunk *new = NULL; // shut gcc up 93 struct Chunk *prev = NULL; 206 topblocks = malloc(sizeof(struct Chunk*) * stacks * malloc_fan);
|
/external/webkit/Source/WebCore/bindings/v8/ |
IntrusiveDOMWrapperMap.h | 47 m_chunks = new Chunk(m_chunks); 65 Chunk* toDelete = m_chunks; 79 Chunk* last = m_chunks; 81 Chunk* previous = last->m_previous; 100 for (Chunk* chunk = m_chunks->m_previous; chunk; chunk = chunk->m_previous) 101 visitEntries(store, chunk->m_entries, chunk->m_entries + CHUNK_SIZE, visitor) [all...] |
/frameworks/base/core/java/android/webkit/ |
ByteArrayBuilder.java | 34 private static final LinkedList<SoftReference<Chunk>> sPool = 35 new LinkedList<SoftReference<Chunk>>(); 37 private static final ReferenceQueue<Chunk> sQueue = 38 new ReferenceQueue<Chunk>(); 40 private LinkedList<Chunk> mChunks; 43 mChunks = new LinkedList<Chunk>(); 48 Chunk c = null; 69 * chunks. This returns the first chunk. Note: this pulls the 70 * chunk out of the queue. The caller must call Chunk.release() t [all...] |
/external/bluetooth/glib/gio/ |
gmemoryinputstream.c | 45 typedef struct _Chunk Chunk; 147 Chunk *chunk = data; local 149 if (chunk->destroy) 150 chunk->destroy (chunk->data); 152 g_slice_free (Chunk, chunk); 246 Chunk *chunk; local 275 Chunk *chunk; local [all...] |
/frameworks/base/include/media/stagefright/ |
MPEG4Writer.h | 104 struct Chunk { 110 Chunk(): mTrack(NULL), mTimeStampUs(0) {} 112 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples) 119 List<Chunk> mChunks; // Remaining chunks to be written 121 // Previous chunk timestamp that has been written 132 List<ChunkInfo> mChunkInfos; // Chunk infos 141 // Buffer a single chunk to be written out later. 142 void bufferChunk(const Chunk& chunk); 147 // Retrieve the proper chunk to write if there is on [all...] |
/libcore/luni/src/main/java/java/util/jar/ |
Manifest.java | 65 static class Chunk { 69 Chunk(int start, int end) { 75 private HashMap<String, Chunk> chunks; 118 chunks = new HashMap<String, Chunk>(); 284 Chunk getChunk(String name) {
|
/external/clang/include/clang/Sema/ |
CodeCompleteConsumer.h | 375 struct Chunk { 382 /// CK_Informative, or CK_Comma chunk. 383 /// The string is owned by the chunk and will be deallocated 384 /// (with delete[]) when the chunk is destroyed. 387 /// \brief The code completion string associated with a CK_Optional chunk. 388 /// The optional code completion string is owned by the chunk, and will 389 /// be deallocated (with delete) when the chunk is destroyed. 393 Chunk() : Kind(CK_Text), Text(0) { } 395 Chunk(ChunkKind Kind, const char *Text = ""); 397 /// \brief Create a new text chunk [all...] |
/frameworks/media/libvideoeditor/vss/3gpwriter/inc/ |
M4MP4W_Types.h | 195 M4OSA_UChar** Chunk; 237 M4OSA_UChar** Chunk;
|