HomeSort by relevance Sort by last modified time
    Searched full:chunk (Results 76 - 100 of 1233) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/main/docs/lib/
vg-html-website.xsl 5 <!-- the only differences between this and vg-html-chunk.xsl are: -->
17 <!-- see http://docbook.sourceforge.net/release/xsl/current/html/chunk-common.xsl -->
18 <xsl:template name="chunk-element-content">
  /frameworks/compile/linkloader/include/impl/
ELFSectionProgBits.hxx 55 if (!result->chunk.allocate(sh->getSize() + stub_size)) {
59 stubs->initStubTable(result->chunk.getBuffer()+sh->getSize(), func_count);
62 if (!result->chunk.allocate(sh->getSize())) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_sctp.h 24 #define SCTP_CHUNK_MATCH_ANY 0x01 /* Match if any of the chunk types are present */
25 #define SCTP_CHUNK_MATCH_ALL 0x02 /* Match if all of the chunk types are present */
26 #define SCTP_CHUNK_MATCH_ONLY 0x04 /* Match if these are the only chunk types present */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ipt_sctp.h 25 #define SCTP_CHUNK_MATCH_ANY 0x01 /* Match if any of the chunk types are present */
26 #define SCTP_CHUNK_MATCH_ALL 0x02 /* Match if all of the chunk types are present */
27 #define SCTP_CHUNK_MATCH_ONLY 0x04 /* Match if these are the only chunk types present */
  /external/chromium/chrome/browser/safe_browsing/
protocol_parser.h 9 // Parse the data returned from the chunk response.
16 // actual chunk responses. The consumer of the protocol data should instantiate
29 // 3. Redirect URL for retrieving a chunk
34 // a:1:4:523\n... <-- Add chunk + binary data
35 // s:13:4:17\n... <-- Sub chunk + binary data
56 // Parse the response of an update request. Results for chunk deletions (both
57 // add-del and sub-del are returned in 'chunk_deletes', and new chunk URLs to
64 // Returns 'true'if it was able to decode the chunk properly, 'false' if not
75 // Parse the response from a chunk URL request and returns the hosts/prefixes
safe_browsing_util.h 26 // Container for holding a chunk URL and the MAC of the contents of the URL.
47 // Container for information about a specific host in an add/sub chunk.
53 // Container for an add/sub chunk.
81 void push_back(const SBChunk& chunk) { chunks_.push_back(chunk); }
138 // [list id ][chunk id][prefix count (0..n)][prefix1][prefix2]
140 // [list id ][chunk id (only used if prefix count is 0][prefix count (0..n)]
141 // [add chunk][prefix][add chunk][prefix]
184 // For add entries, returns the add chunk id. For sub entries, returns th
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_xmf.h 42 /* size of chunk info (chunk ID + chunk size) */
45 /* 'MTrk' track chunk ID */
  /external/v8/test/cctest/
test-circular-queue.cc 24 // Fill up the first chunk.
33 // Fill up the second chunk. Consumption must still be unavailable.
45 // Now as we started filling up the third chunk, consumption
49 // Consume the first chunk.
59 // the first chunk for emptinness.
63 // From now, consumer no more polls ahead of the current chunk,
64 // so it's possible to consume the second chunk.
66 // Consume the second chunk
76 // last chunk is not clean.
test-spaces.cc 169 // Freeing pages at the first chunk starting at or after the second page
170 // should free the entire second chunk. It will return the page it was passed
171 // (since the second page was in the first chunk).
176 // Freeing pages in the first chunk starting at the first page should free
177 // the first chunk and return an invalid page.
199 void* chunk = local
201 CHECK(chunk != NULL);
202 Address start = RoundUp(static_cast<Address>(chunk),
236 void* chunk = memory_allocator->ReserveInitialChunk( local
238 CHECK(chunk != NULL)
    [all...]
  /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/valgrind/main/memcheck/tests/
writev.c 11 #define CHUNK K_1 /* single chunk */
21 {(caddr_t)-1, CHUNK},
62 if ((nbytes = read(fd, buf_list[0], CHUNK)) != 0)
  /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/webkit/Source/WebKit2/Shared/mac/
UpdateChunk.cpp 77 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& chunk)
82 chunk.m_rect = rect;
88 chunk.m_size = attachment.size();
89 chunk.m_data = reinterpret_cast<uint8_t*>(attachment.address());
  /external/bluetooth/glib/glib/
gstring.c 157 * @chunk: a #GStringChunk
164 g_string_chunk_free (GStringChunk *chunk)
168 g_return_if_fail (chunk != NULL);
170 if (chunk->storage_list)
172 for (tmp_list = chunk->storage_list; tmp_list; tmp_list = tmp_list->next)
175 g_slist_free (chunk->storage_list);
178 if (chunk->const_table)
179 g_hash_table_destroy (chunk->const_table);
181 g_free (chunk);
186 * @chunk: a #GStringChun
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 388 struct Chunk {
395 /// CK_Informative, or CK_Comma chunk.
396 /// The string is owned by the chunk and will be deallocated
397 /// (with delete[]) when the chunk is destroyed.
400 /// \brief The code completion string associated with a CK_Optional chunk.
401 /// The optional code completion string is owned by the chunk, and will
402 /// be deallocated (with delete) when the chunk is destroyed.
406 Chunk() : Kind(CK_Text), Text(0) { }
408 Chunk(ChunkKind Kind, const char *Text = "");
410 /// \brief Create a new text chunk
    [all...]
  /external/libvpx/vpx_mem/memory_manager/
hmm_grow.c 28 /* Chunk does not have valid dummy end block. */
44 ** free block at that was the last block in the chunk prior to
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
memory.c 63 struct chunk { struct
64 struct chunk *next;
74 struct chunk *next;
103 struct chunk *p, *next;
108 for (p = (struct chunk *)pool; p; p = next) {
116 struct chunk *ch;
122 size_t minreq = (size + sizeof(struct chunk) + pool->alignmask)
127 // a single chunk of the right size
  /frameworks/base/graphics/java/android/graphics/
NinePatch.java 48 * @param chunk The 9-patch data chunk describing how the underlying
52 public NinePatch(Bitmap bitmap, byte[] chunk, String srcName) {
54 mChunk = chunk;
56 validateNinePatchChunk(mBitmap.ni(), chunk); local
154 public native static boolean isNinePatchChunk(byte[] chunk);
156 private static native void validateNinePatchChunk(int bitmap, byte[] chunk);
164 int bitmap, byte[] chunk, Rect location);
  /frameworks/base/media/libstagefright/
SampleIterator.cpp 87 uint32_t chunk =
91 if (!mInitialized || chunk != mCurrentChunkIndex) {
92 mCurrentChunkIndex = chunk;
95 if ((err = getChunkOffset(chunk, &mCurrentChunkOffset)) != OK) {
182 status_t SampleIterator::getChunkOffset(uint32_t chunk, off64_t *offset) {
185 if (chunk >= mTable->mNumChunkOffsets) {
193 mTable->mChunkOffsetOffset + 8 + 4 * chunk,
205 mTable->mChunkOffsetOffset + 8 + 8 * chunk,
  /dalvik/vm/alloc/
DdmHeap.cpp 38 * Chunk HPIF (client --> server)
196 /* Send the chunk.
220 * allocation units used by the chunk.
231 LOGW("chunk is too big to transmit (chunklen=%zd, %zd bytes)",
240 * Start a new HPSx chunk.
265 /* Determine the type of this chunk.
268 /* It's a free chunk.
278 /* It's an allocated chunk. Figure out what it is.
280 //TODO: if ctx.merge, see if this chunk is different from the last chunk
    [all...]
  /dalvik/vm/
LinearAlloc.h 56 * Allocate a chunk of memory. The memory will be zeroed out.
63 * Reallocate a chunk. The original storage is not released, but may be
76 * Mark a chunk of memory from Alloc or Realloc as read-only. This must
87 * Make a chunk of memory writable again.
96 * Free a chunk. Does not increase available storage, but the freed area
  /external/libpng/
pngrutil.c 108 /* Read the chunk header (length + type name).
117 /* Read the length and the chunk name */
121 /* Put the chunk name into png_ptr->chunk_name */
124 png_debug2(0, "Reading %s chunk, length = %lu",
127 /* Reset the crc and run it over the chunk name */
131 /* Check to see if chunk name is valid */
149 * are reading a ancillary or critical chunk, and how the program has set
193 * are reading a ancillary or critical chunk, and how the program has set
302 msg = "Buffer error in compressed datastream in %s chunk";
305 msg = "Data error in compressed datastream in %s chunk";
    [all...]
  /dalvik/docs/
debugmon.html 189 <p>Information is sent in chunks. Each chunk starts with:
197 need an "error" chunk type and a handler on the server side.]
199 <p>The same chunk type may have different meanings when sent in different
207 and extensions"). Using the chunk format allows us to remain independent
210 single transmission unit. [I'm taking the multi-chunk packets into
215 compressed. Compressed chunks are written as a chunk type that
217 by the original chunk type and the uncompressed length. For zlib's deflate
218 algorithm, the chunk type is "ZLIB".
232 <p>After the JDWP handshake, the server sends a HELO chunk to the client.
239 <h4>Chunk HELO (server --&gt; client)</h4
    [all...]
  /bootable/recovery/applypatch/
imgpatch.c 60 // each chunk's header record starts with 4 bytes.
62 printf("failed to read chunk %d record\n", i);
72 printf("failed to read chunk %d normal header data\n", i);
86 printf("failed to read chunk %d raw header data\n", i);
93 printf("failed to read chunk %d raw data\n", i);
99 printf("failed to write chunk %d raw data\n", i);
104 // deflate chunks have an additional 60 bytes in their chunk header.
108 printf("failed to read chunk %d deflate header data\n", i);
123 // Decompress the source data; the chunk header tells us exactly
213 printf("patch chunk %d is unknown type %d\n", i, type)
    [all...]
  /external/openssl/crypto/evp/
e_des.c 138 size_t n,chunk=EVP_MAXCHUNK/8; local
141 if (inl<chunk) chunk=inl;
143 while (inl && inl>=chunk)
145 for(n=0 ; n < chunk*8; ++n)
153 inl-=chunk;
154 in +=chunk;
155 out+=chunk;
156 if (inl<chunk) chunk=inl
    [all...]

Completed in 1369 milliseconds

1 2 34 5 6 7 8 91011>>