| /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;
|
| /external/webkit/Source/WebCore/rendering/svg/ |
| SVGTextChunk.h | 31 // A SVGTextChunk describes a range of SVGTextFragments, see the SVG spec definition of a "text chunk". 61 // Contains all SVGInlineTextBoxes this chunk spans.
|
| /external/webkit/Source/WebKit2/UIProcess/qt/ |
| TiledDrawingAreaProxyQt.cpp | 65 void TiledDrawingAreaProxy::snapshotTaken(UpdateChunk& chunk) 67 emit m_webView->snapshotTaken(chunk.createImage());
|
| /frameworks/base/core/java/android/ddm/ |
| DdmRegister.java | 31 * Register handlers for all known chunk types. 41 * The chunk dispatcher will pause until we call registrationComplete(),
|
| /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
| HandleAppName.java | 23 * Handle the "app name" chunk (APNM). 54 * Chunk handler entry point.
|
| HandleWait.java | 25 * Handle the "wait" chunk (WAIT). These are sent up when the client is 57 * Chunk handler entry point.
|
| /external/chromium/net/http/ |
| http_chunked_decoder.cc | 76 // After each chunk's data there should be a CRLF 124 DLOG(ERROR) << "chunk data not terminated properly"; 129 // Ignore any chunk-extensions. 143 DLOG(ERROR) << "missing chunk-size"; 161 // While the HTTP 1.1 specification defines chunk-size as 1*HEX 163 // http://www.yahoo.com/, for example, pads chunk-size with trailing spaces
|
| /external/skia/src/core/ |
| SkDeque.cpp | 25 char* fBegin; // start of used section in this chunk 26 char* fEnd; // end of used section in this chunk 27 char* fStop; // end of the allocated chunk 121 if (begin < first->start()) { // no more room in this chunk 157 if (end > last->fStop) { // no more room in this chunk 242 if (next == fHead->fEnd) { // exhausted this chunk, move to next
|
| /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_;
|
| /system/extras/tests/sdcard/ |
| sdcard_perf_test.cpp | 73 // adb shell /system/bin/sdcard_perf_test --test=read --size=1000 --chunk-size=100 --procnb=1 --iterations=10 --dump > /tmp/data.txt 74 // adb shell /system/bin/sdcard_perf_test --test=write --size=1000 --chunk-size=100 --procnb=1 --iterations=100 --dump > /tmp/data.txt 111 {"chunk-size", required_argument, 0, 'S'}, 131 " -S --chunk-size: Size of a chunk. Default to size ie 1 chunk.\n" 132 " Data will be written/read using that chunk size.\n" 280 // @param chunk buffer large enough where the chunk read are written. 284 bool readData(char *const chunk, const int idx, TestCase *testCase 350 char *const chunk = new char[chunk_size]; local [all...] |
| /external/apache-http/src/org/apache/http/impl/io/ |
| ChunkedInputStream.java | 78 /** The chunk size */ 81 /** The current position within the current chunk */ 106 * <p> Returns all the data in a chunked stream in coalesced form. A chunk 179 * Read the next chunk. 185 throw new MalformedChunkCodingException("Negative chunk size"); 201 * @param required <tt>true<tt/> if a valid chunk must be present, 204 * @return the chunk size as integer 206 * @throws IOException when the chunk size could not be parsed 215 "CRLF expected at end of chunk"); 232 throw new MalformedChunkCodingException("Bad chunk header") [all...] |
| ChunkedOutputStream.java | 68 * @param bufferSize minimum chunk size (excluding last chunk) 80 * size of 2048 was chosen because the chunk overhead is less than 0.5% 106 * as one large chunk 121 // Write the final chunk. 128 * Must be called to ensure the internal cache is flushed and the closing chunk is written. 151 * not split, but rather written out as one large chunk.
|
| /external/bluetooth/glib/docs/reference/glib/tmpl/ |
| memory_chunks.sgml | 23 be freed individually. The memory chunk can only be free in its entirety. 27 The disadvantage of this is that the memory chunk has to keep track of which 35 To create a memory chunk use g_mem_chunk_new() or the convenience macro 44 g_chunk_free(). (Atoms can only be freed if the memory chunk is created 52 To reset the memory chunk, freeing all of the atoms, use g_mem_chunk_reset(). 55 To destroy a memory chunk, use g_mem_chunk_destroy(). 71 mem_chunk = g_mem_chunk_new ("test mem chunk", 50, 100, G_ALLOC_AND_FREE); 134 chunk. It should be accessed only through the use of the following functions. 248 @chunk: a #GMemChunk. 261 @chunk: a #GMemChunk [all...] |
| /external/llvm/utils/lit/lit/ |
| ShUtil.py | 32 chunk = self.data[self.pos - 1:].split(None, 1)[0] 35 if ('|' in chunk or '&' in chunk or 36 '<' in chunk or '>' in chunk or 37 "'" in chunk or '"' in chunk or 38 '\\' in chunk): 41 self.pos = self.pos - 1 + len(chunk) 42 return chunk [all...] |
| /external/openssl/crypto/evp/ |
| evp_locl.h | 113 size_t chunk=EVP_MAXCHUNK;\ 114 if (cbits==1) chunk>>=3;\ 115 if (inl<chunk) chunk=inl;\ 116 while(inl && inl>=chunk)\ 119 inl-=chunk;\ 120 in +=chunk;\ 121 out+=chunk;\ 122 if(inl<chunk) chunk=inl; [all...] |
| /external/yaffs2/yaffs2/ |
| yaffs_guts.c | 114 /* Function to calculate chunk and offset */ 116 static void yaffs_AddrToChunk(yaffs_Device *dev, loff_t addr, __u32 *chunk, __u32 *offset) 120 *chunk = (__u32)(addr >> dev->chunkShift); 128 *chunk = ((__u32)addr)/dev->crumbsPerChunk; 129 *offset += ((addr - (*chunk * dev->crumbsPerChunk)) << dev->crumbShift); 269 * Chunk bitmap manipulations 291 static Y_INLINE void yaffs_ClearChunkBit(yaffs_Device * dev, int blk, int chunk) 295 blkBits[chunk / 8] &= ~(1 << (chunk & 7)); 298 static Y_INLINE void yaffs_SetChunkBit(yaffs_Device * dev, int blk, int chunk) 395 int chunk; local 2680 int chunk; local 3884 int chunk; local 4004 int chunk; local 4655 int chunk; local 5187 int chunk; local [all...] |
| /external/chromium/chrome/browser/safe_browsing/ |
| safe_browsing_store.h | 36 // FinishUpdate() also handles dropping items who's chunk has been 103 // Determine less-than based on add chunk and prefix. 112 // Determine less-than based on add chunk, prefix, and full hash. 189 // Start a chunk of data. None of the methods through FinishChunk() 205 // Collect the chunk data and preferrably store it on disk to 217 // Delete the indicated chunk_id. The chunk will continue to be 228 // chunk to disk). |prefix_misses| is the set of prefixes where the
|
| /external/sonivox/arm-fm-22k/host_src/ |
| eas_wave.c | 157 /* initalize 'fmt' chunk */ 165 /* initialize 'data' chunk */ 298 } chunk; local 319 chunk.tag = chunk.size = 0; 332 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1) 336 if (chunk.tag != riffTag) 356 /* looking for fmt chunk */ 358 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1 [all...] |
| /external/sonivox/arm-hybrid-22k/host_src/ |
| eas_wave.c | 157 /* initalize 'fmt' chunk */ 165 /* initialize 'data' chunk */ 298 } chunk; local 319 chunk.tag = chunk.size = 0; 332 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1) 336 if (chunk.tag != riffTag) 356 /* looking for fmt chunk */ 358 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1 [all...] |
| /external/sonivox/arm-wt-22k/host_src/ |
| eas_wave.c | 157 /* initalize 'fmt' chunk */ 165 /* initialize 'data' chunk */ 298 } chunk; local 319 chunk.tag = chunk.size = 0; 332 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1) 336 if (chunk.tag != riffTag) 356 /* looking for fmt chunk */ 358 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1 [all...] |
| /system/extras/ext4_utils/ |
| output_file.c | 153 int ret, chunk; local 155 //DBG printf("skip chunk: 0x%llx bytes\n", skip_len); 163 /* We are skipping data, so emit a don't care chunk. */ 190 * chunk. The first write (of the super block) may not be 193 //DBG printf("write chunk: offset 0x%llx, length 0x%x bytes\n", off, len); 206 error("write chunk offset %llu is not a multiple of the block size %u", 219 /* Finally we can safely emit a chunk of data */ 261 * chunk. The first write (of the super block) may not be 264 //DBG printf("write chunk: offset 0x%llx, length 0x%x bytes\n", off, len); 277 error("write chunk offset %llu is not a multiple of the block size %u" [all...] |
| /external/emma/core/java12/com/vladium/util/ |
| ByteArrayOStream.java | 135 // int chunk = in.available (); 137 // System.out.println ("available = " + chunk); 140 // if (chunk == 0) chunk = READ_CHUNK_SIZE; 147 // if (free > chunk) 149 // // try reading more than 'chunk' anyway: 154 // // extend the capacity to match 'chunk': 157 // final byte [] newbuf = new byte [m_pos + chunk]; 167 // read = in.read (m_buf, m_pos, chunk);
|
| /external/quake/quake/src/QW/client/ |
| snd_mem.c | 199 { // didn't find the chunk 265 // find "RIFF" chunk 273 // get "fmt " chunk 280 Con_Printf("Missing fmt chunk\n"); 296 // get cue chunk 304 // if the next chunk is a LIST chunk, look for a cue length marker 320 // find data chunk 324 Con_Printf("Missing data chunk\n");
|
| /external/quake/quake/src/WinQuake/ |
| snd_mem.cpp | 199 { // didn't find the chunk 263 // find "RIFF" chunk 271 // get "fmt " chunk 278 Con_Printf("Missing fmt chunk\n"); 294 // get cue chunk 302 // if the next chunk is a LIST chunk, look for a cue length marker 318 // find data chunk 322 Con_Printf("Missing data chunk\n");
|
| /external/bluetooth/glib/glib/ |
| gstring.h | 53 void g_string_chunk_free (GStringChunk *chunk); 54 void g_string_chunk_clear (GStringChunk *chunk); 55 gchar* g_string_chunk_insert (GStringChunk *chunk, 57 gchar* g_string_chunk_insert_len (GStringChunk *chunk, 60 gchar* g_string_chunk_insert_const (GStringChunk *chunk,
|