/external/chromium_org/v8/src/ |
incremental-marking-inl.h | 45 MemoryChunk* chunk = MemoryChunk::FromAddress(obj->address()); local 46 if (chunk->IsFlagSet(MemoryChunk::HAS_PROGRESS_BAR)) { 47 if (chunk->IsLeftOfProgressBar(slot)) { 97 MemoryChunk* chunk = MemoryChunk::FromAddress(obj->address()); local 98 if (chunk->IsFlagSet(MemoryChunk::HAS_PROGRESS_BAR)) { 99 chunk->set_progress_bar(0);
|
spaces-inl.h | 42 void Bitmap::Clear(MemoryChunk* chunk) { 43 Bitmap* bitmap = chunk->markbits(); 45 chunk->ResetLiveBytes(); 163 MemoryChunk* chunk, 166 Page* page = reinterpret_cast<Page*>(chunk); 168 ASSERT(chunk->owner() == owner); 172 heap->incremental_marking()->SetOldSpacePageFlags(chunk); 206 MemoryChunk* chunk = MemoryChunk::FromAddress(o->address()); local 207 if (chunk->Contains(addr)) { 208 return chunk; [all...] |
incremental-marking.h | 186 inline void SetOldSpacePageFlags(MemoryChunk* chunk) { 187 SetOldSpacePageFlags(chunk, IsMarking(), IsCompacting()); 190 inline void SetNewSpacePageFlags(NewSpacePage* chunk) { 191 SetNewSpacePageFlags(chunk, IsMarking()); 242 static void SetOldSpacePageFlags(MemoryChunk* chunk, 246 static void SetNewSpacePageFlags(NewSpacePage* chunk, bool is_marking);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
dxbc_parse.cpp | 44 dxbc_chunk_header* chunk = (dxbc_chunk_header*)((char*)data + offset); local 45 unsigned fourcc = bswap_le32(chunk->fourcc); 47 container->chunks.push_back(chunk); 62 dxbc_chunk_header* chunk = (dxbc_chunk_header*)((char*)data + offset); local 63 if(bswap_le32(chunk->fourcc) == fourcc) 64 return chunk;
|
/external/chromium_org/ui/views/controls/ |
styled_label.cc | 199 string16 chunk = substrings[0]; local 200 if (chunk.empty()) { 222 if (style_info.disable_line_wrapping && chunk.size() < range.length() && 224 // If the chunk should not be wrapped, try to fit it entirely on the 231 chunk = chunk.substr(0, std::min(chunk.size(), range.end() - position)); 233 label = CreateLabelRange(chunk, style_info, this); 238 if (position + chunk.size() >= range.end()) 241 // This chunk is normal text [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
rand.c | 215 int chunk; local 217 chunk = num; 218 if (chunk > (int)sizeof(buf)) 219 chunk = sizeof buf; 220 r = RAND_bytes(buf, chunk); 224 BIO_write(out, buf, chunk); 227 for (i = 0; i < chunk; i++) 230 num -= chunk;
|
/external/openssl/apps/ |
rand.c | 215 int chunk; local 217 chunk = num; 218 if (chunk > (int)sizeof(buf)) 219 chunk = sizeof buf; 220 r = RAND_bytes(buf, chunk); 224 BIO_write(out, buf, chunk); 227 for (i = 0; i < chunk; i++) 230 num -= chunk;
|
/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...] |
/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...] |
/frameworks/rs/cpu_ref/linkloader/include/impl/ |
ELFSectionNoBits.hxx | 33 if (!result->chunk.allocate(sh->getSize())) {
|
/external/qemu/block/ |
dmg.c | 31 /* each chunk contains a certain number of sectors, 33 * lengths[i] is the length of the compressed chunk, 35 * sectorcounts[i] is the number of sectors in that chunk, 217 uint32_t chunk = search_chunk(s,sector_num); local 219 if(chunk>=s->n_chunks) 223 switch(s->types[chunk]) { 227 /* we need to buffer, because only the chunk as whole can be 231 ret = bdrv_pread(bs->file, s->offsets[chunk] + i, 232 s->compressed_chunk+i, s->lengths[chunk]-i); 236 } while(ret>=0 && ret+i<s->lengths[chunk]); [all...] |
/external/compiler-rt/lib/lsan/ |
lsan_common_linux.cc | 105 static void ProcessPlatformSpecificAllocationsCb(uptr chunk, void *arg) { 107 chunk = GetUserBegin(chunk); 108 LsanMetadata m(chunk); 112 reinterpret_cast<Frontier *>(arg)->push_back(chunk);
|
lsan_common.cc | 130 uptr chunk = PointsIntoChunk(p); local 131 if (!chunk) continue; 132 LsanMetadata m(chunk); 138 Report("%p: found %p pointing into chunk %p-%p of size %zu.\n", pp, p, 139 chunk, chunk + m.requested_size(), m.requested_size()); 141 frontier->push_back(chunk); 224 // ForEachChunk callback. If the chunk is marked as leaked, marks all chunks 226 static void MarkIndirectlyLeakedCb(uptr chunk, void *arg) { 227 chunk = GetUserBegin(chunk) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
ByteBuffer.java | 78 int chunk = 16384; local 80 this.buffer = new byte[chunk]; 83 while ((read = in.read(this.buffer, this.length, chunk)) > 0) 86 if (read == chunk) 88 ensureCapacity(length + chunk);
|
/external/apache-http/src/org/apache/http/impl/io/ |
AbstractSessionOutputBuffer.java | 155 int chunk = this.buffer.capacity() - this.buffer.length(); local 156 chunk = Math.min(chunk, remaining); 157 if (chunk > 0) { 158 this.buffer.append(s, off, chunk); 163 off += chunk; 164 remaining -= chunk;
|
/external/v8/src/ |
spaces-inl.h | 42 void Bitmap::Clear(MemoryChunk* chunk) { 43 Bitmap* bitmap = chunk->markbits(); 45 chunk->ResetLiveBytes(); 163 MemoryChunk* chunk, 166 Page* page = reinterpret_cast<Page*>(chunk); 167 ASSERT(chunk->size() == static_cast<size_t>(kPageSize)); 168 ASSERT(chunk->owner() == owner); 172 heap->incremental_marking()->SetOldSpacePageFlags(chunk); 206 MemoryChunk* chunk = MemoryChunk::FromAddress(o->address()); local 207 if (chunk->Contains(addr)) [all...] |
incremental-marking.h | 192 inline void SetOldSpacePageFlags(MemoryChunk* chunk) { 193 SetOldSpacePageFlags(chunk, IsMarking(), IsCompacting()); 196 inline void SetNewSpacePageFlags(NewSpacePage* chunk) { 197 SetNewSpacePageFlags(chunk, IsMarking()); 245 static void SetOldSpacePageFlags(MemoryChunk* chunk, 249 static void SetNewSpacePageFlags(NewSpacePage* chunk, bool is_marking);
|
/frameworks/base/libs/androidfw/ |
CursorWindow.cpp | 225 RowSlotChunk* chunk = static_cast<RowSlotChunk*>( local 228 chunk = static_cast<RowSlotChunk*>(offsetToPtr(chunk->nextChunkOffset)); 231 return &chunk->slots[chunkPos]; 236 RowSlotChunk* chunk = static_cast<RowSlotChunk*>( local 239 chunk = static_cast<RowSlotChunk*>(offsetToPtr(chunk->nextChunkOffset)); 243 if (!chunk->nextChunkOffset) { 244 chunk->nextChunkOffset = alloc(sizeof(RowSlotChunk), true /*aligned*/); 245 if (!chunk->nextChunkOffset) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/ |
SDL_wave.c | 30 static int ReadChunk(SDL_RWops *src, Chunk *chunk); 396 Chunk chunk; local 407 /* FMT chunk */ 434 /* Read the audio data format chunk */ 435 chunk.data = NULL; 437 if ( chunk.data != NULL ) { 438 SDL_free(chunk.data); 439 chunk.data = NULL [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
parser.py | 277 # Opcodes that unconditionally end the code chunk. 283 # Opcodes that unconditionally begin a new code chunk. By starting new chunks 409 """Split the code object into a list of `Chunk` objects. 411 Each chunk is only entered at its first instruction, though there can 412 be many exits from a chunk. 414 Returns a list of `Chunk` objects. 420 chunk = None 436 # Maybe have to start a new chunk 438 # Start a new chunk for each source line number. 439 if chunk [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/ |
AudioFilePlayer.c | 239 ChunkHeader chunk; local 260 if (result) return 0; /*THROW_RESULT("AudioFilePlayer::OpenFile(): chunk id is not 'FORM'");*/ 268 /* Search for the SSND chunk. We ignore all compression etc. information 271 TODO: Parse the COMM chunk we currently skip to fill in mFileDescription. 275 result = FSReadFork(afp->mForkRefNum, fsFromMark, offset, sizeof(chunk), &chunk, &actual); 278 chunk.ckID = SDL_SwapBE32(chunk.ckID); 279 chunk.ckSize = SDL_SwapBE32(chunk.ckSize) [all...] |
/external/chromium_org/third_party/jemalloc/chromium/ |
jemalloc.c | 91 * in the associated arena chunk header maps. 178 * files, so that if a chunk is mapped, it is guaranteed to be swappable. 504 * to the mandatory one chunk per arena. 806 /* Each element of the chunk map corresponds to one page within the chunk. */ 872 /* Arena chunk header. */ 875 /* Arena that owns the chunk. */ 884 /* Map of pages within chunk that keeps track of free/large/small. */ 964 * Chunk allocation sequence number, used to detect races with other 965 * threads during chunk allocation, and then discard unnecessary chunks 2686 void *chunk; local 3242 arena_chunk_t *chunk; local 3438 arena_chunk_t *chunk; local 3541 arena_chunk_t *chunk; local 3630 arena_chunk_t *chunk; local 4161 arena_chunk_t *chunk; local 4319 arena_chunk_t *chunk; local 4353 arena_chunk_t *chunk; local 4388 arena_chunk_t *chunk; local 4569 arena_chunk_t *chunk; local 4668 arena_chunk_t *chunk; local 6515 arena_chunk_t *chunk; local [all...] |
/external/chromium_org/third_party/jemalloc/vendor/ |
jemalloc.c | 91 * in the associated arena chunk header maps. 171 * files, so that if a chunk is mapped, it is guaranteed to be swappable. 497 * to the mandatory one chunk per arena. 799 /* Each element of the chunk map corresponds to one page within the chunk. */ 865 /* Arena chunk header. */ 868 /* Arena that owns the chunk. */ 877 /* Map of pages within chunk that keeps track of free/large/small. */ 957 * Chunk allocation sequence number, used to detect races with other 958 * threads during chunk allocation, and then discard unnecessary chunks 2675 void *chunk; local 3231 arena_chunk_t *chunk; local 3427 arena_chunk_t *chunk; local 3530 arena_chunk_t *chunk; local 3619 arena_chunk_t *chunk; local 4150 arena_chunk_t *chunk; local 4308 arena_chunk_t *chunk; local 4342 arena_chunk_t *chunk; local 4377 arena_chunk_t *chunk; local 4558 arena_chunk_t *chunk; local 4657 arena_chunk_t *chunk; local 6497 arena_chunk_t *chunk; local [all...] |
/external/chromium_org/content/browser/speech/ |
chunked_byte_buffer.cc | 32 : partial_chunk_(new Chunk()), 82 partial_chunk_.reset(new Chunk()); 91 partial_chunk_.reset(new Chunk()); 109 scoped_ptr<Chunk> chunk(*chunks_.begin()); 111 DCHECK_EQ(chunk->header.size(), kHeaderLength); 112 DCHECK_EQ(chunk->content->size(), chunk->ExpectedContentLength()); 113 total_bytes_stored_ -= chunk->content->size(); 115 return chunk->content.Pass() [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
WriterToUTF8Buffered.java | 209 for (int chunk = 1; chunk <= chunks; chunk++) 212 end_chunk = start + (int) ((((long) length) * chunk) / chunks); 214 // Adjust the end of the chunk if it ends on a high char 216 // is not going to be in the same chunk 227 // char in the current chunk of chars. 230 /* This is the last char of the last chunk, 344 for (int chunk = 1; chunk <= chunks; chunk++ [all...] |