Searched defs:chunk (Results 1 - 22 of 22) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/python/tests/
H A Dindexes.py63 chunk = """ <bar1>chars1</bar1>
75 ctxt.parseChunk(chunk, len(chunk), 0)
77 chunk = "</foo>" variable
78 ctxt.parseChunk(chunk, len(chunk), 1)
85 chunk="""<?xml version="1.0" encoding="ISO-8859-1"?>
88 ctxt = libxml2.createPushParser(handler, chunk, len(chunk), "test.xml")
89 chunk
103 chunk = "</foo>" variable
[all...]
H A DpushSAX.py46 chunk = " url='tst'>b"
47 ctxt.parseChunk(chunk, len(chunk), 0)
48 chunk = "ar</foo>" variable
49 ctxt.parseChunk(chunk, len(chunk), 1)
H A DpushSAXhtml.py46 chunk = " url='tst'>b"
47 ctxt.htmlParseChunk(chunk, len(chunk), 0)
48 chunk = "ar</foo>" variable
49 ctxt.htmlParseChunk(chunk, len(chunk), 1)
/vbox/src/VBox/RDP/client-1.8.3/
H A Dseamless.c150 int chunk, width, height, len; local
160 chunk = strtoul(tok4, &endptr, 0);
187 ui_seamless_seticon(id, tok5, width, height, chunk, icon_buf, len);
H A Drdpsnd.c187 uint32 remain, chunk; local
196 chunk = remain;
198 chunk = size;
200 memcpy(record_buffer + record_buffer_size, data, chunk);
205 chunk, &rec_formats[rec_current_format]);
208 record_buffer_size += chunk;
210 data = (const char *) data + chunk;
211 size -= chunk;
H A Dxwin.c4109 ui_seamless_seticon(unsigned long id, const char *format, int width, int height, int chunk, argument
4124 if (chunk == 0)
4153 warning("ui_seamless_seticon: Too large chunk received (%d bytes > %d bytes)\n",
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgun.c174 if (chunk > have) { \
175 chunk -= have; \
179 chunk--; \
180 if (chunk > have) { \
181 chunk = have = 0; \
185 have -= chunk; \
186 next += chunk; \
187 chunk = 0; \
203 unsigned chunk; /* bytes left in current chunk */ local
[all...]
/vbox/src/VBox/Runtime/common/misc/
H A Dhttp.cpp474 RTHTTPMEMCHUNK chunk = { NULL, 0 }; local
478 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_WRITEDATA, (void*)&chunk);
496 *ppvResponse = chunk.pu8Mem;
497 *pcb = chunk.cb;
H A Ds3.cpp600 RTS3TMPMEMCHUNK chunk = { NULL, 0 }; local
603 curl_easy_setopt(pS3Int->pCurl, CURLOPT_WRITEDATA, (void *)&chunk);
618 rc = rtS3ReadXmlFromMemory(&chunk, "ListAllMyBucketsResult", &pDoc, &pCur);
628 RTMemFree(chunk.pszMem);
786 RTS3TMPMEMCHUNK chunk = { NULL, 0 }; local
789 curl_easy_setopt(pS3Int->pCurl, CURLOPT_WRITEDATA, (void *)&chunk);
805 rc = rtS3ReadXmlFromMemory(&chunk, "ListBucketResult", &pDoc, &pCur);
815 RTMemFree(chunk.pszMem);
/vbox/src/libs/libpng-1.2.8/
H A Dpngpread.c194 /* First we make sure we have enough data for the 4 byte chunk name
195 * and the 4 byte chunk length before proceeding with decoding the
196 * chunk data. To fully decode each of these chunks, we also make
198 * end of every chunk (except IDAT, which is handled separately).
272 /* If we reach an IDAT chunk, this means we have read all of the
1066 png_warning(png_ptr, "tEXt chunk too large to fit in memory");
1141 png_warning(png_ptr, "Insufficient memory to store text chunk.");
1165 png_warning(png_ptr, "zTXt chunk too large to fit in memory");
1334 png_warning(png_ptr, "Insufficient memory to store text chunk.");
1356 png_warning(png_ptr, "iTXt chunk to
1483 png_unknown_chunk chunk; local
[all...]
H A Dpngset.c227 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
660 png_warning(png_ptr, "Insufficient memory to process iCCP chunk.");
781 png_warning(png_ptr, "iTXt chunk not supported.");
854 png_debug1(3, "transferred text chunk %d\n", info_ptr->num_text);
980 png_warning(png_ptr, "Out of memory while processing unknown chunk.");
998 png_warning(png_ptr, "Out of memory processing unknown chunk.");
1018 int chunk, int location)
1020 if(png_ptr != NULL && info_ptr != NULL && chunk >= 0 && chunk <
1022 info_ptr->unknown_chunks[chunk]
1017 png_set_unknown_chunk_location(png_structp png_ptr, png_infop info_ptr, int chunk, int location) argument
[all...]
H A Dpngrutil.c97 are reading a ancillary or critical chunk, and how the program has set
169 * Decompress trailing data in a chunk. The assumption is that chunkdata
170 * points at an allocated area holding the contents of a chunk with a
214 png_error(png_ptr,"Not enough memory to decompress chunk");
221 /* Copy what we can of the error message into the text chunk */
238 png_error(png_ptr,"Not enough memory to decompress chunk.");
257 png_error(png_ptr,"Not enough memory to decompress chunk..");
281 sprintf(umsg,"Buffer error in compressed datastream in %s chunk",
284 sprintf(umsg,"Data error in compressed datastream in %s chunk",
287 sprintf(umsg,"Incomplete compressed datastream in %s chunk",
2175 png_unknown_chunk chunk; local
[all...]
/vbox/src/VBox/Devices/Network/slirp/bsd/kern/
H A Duipc_mbuf.c995 int chunk = min(nsize - n->m_len, m->m_len - moff); local
997 bcopy(m->m_data + moff, n->m_data + n->m_len, chunk);
998 moff += chunk;
999 n->m_len += chunk;
1000 remain -= chunk;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dskge.c1714 u32 chunk, ram_addr; local
1756 chunk = (hw->ram_size - hw->ram_offset) / (hw->ports * 2);
1757 ram_addr = hw->ram_offset + 2 * chunk * port;
1759 skge_ramset(hw, rxqaddr[port], ram_addr, chunk);
1763 skge_ramset(hw, txqaddr[port], ram_addr+chunk, chunk);
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml.c1301 const char *chunk; local
1310 (args, (char *) "Oziz:xmlCreatePushParser", &pyobj_SAX, &chunk,
1316 pyobj_SAX, chunk, size, URI);
1323 ret = xmlCreatePushParserCtxt(SAX, pyobj_SAX, chunk, size, URI);
1333 const char *chunk; local
1342 (args, (char *) "Oziz:htmlCreatePushParser", &pyobj_SAX, &chunk,
1348 pyobj_SAX, chunk, size, URI);
1355 ret = htmlCreatePushParserCtxt(SAX, pyobj_SAX, chunk, size, URI,
H A Dlibxml2-py.c9643 char * chunk; local
9648 if (!PyArg_ParseTuple(args, (char *)"Ot#ii:htmlParseChunk", &pyobj_ctxt, &chunk, &py_buffsize0, &size, &terminate))
9652 c_retval = htmlParseChunk(ctxt, chunk, size, terminate);
11155 char * chunk; local
11160 if (!PyArg_ParseTuple(args, (char *)"Ot#ii:xmlParseChunk", &pyobj_ctxt, &chunk, &py_buffsize0, &size, &terminate))
11164 c_retval = xmlParseChunk(ctxt, chunk, size, terminate);
11769 char * chunk; local
11775 if (!PyArg_ParseTuple(args, (char *)"Ot#izz:xmlCtxtResetPush", &pyobj_ctxt, &chunk, &py_buffsize0, &size, &filename, &encoding))
11779 c_retval = xmlCtxtResetPush(ctxt, chunk, size, filename, encoding);
/vbox/src/libs/libxml2-2.6.31/
H A DxmlIO.c3132 int chunk; /* number of byte curreent processed from buf */ local
3139 chunk = len;
3140 if (chunk > 4 * MINLEN)
3141 chunk = 4 * MINLEN;
3153 ret = xmlBufferAdd(out->buffer, (const xmlChar *) buf, chunk);
3157 if ((out->buffer->use < MINLEN) && (chunk == len))
3171 ret = xmlBufferAdd(out->buffer, (const xmlChar *) buf, chunk);
3176 buf += chunk;
3177 len -= chunk;
3297 int chunk; /* numbe local
[all...]
H A DHTMLparser.c4565 * @terminate: last chunk indicator
5292 * @chunk: an char array
5293 * @size: the size in byte of the chunk
5294 * @terminate: last chunk indicator
5301 htmlParseChunk(htmlParserCtxtPtr ctxt, const char *chunk, int size, argument
5308 if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
5314 res = xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
5375 * @chunk: a pointer to an array of chars
5388 const char *chunk, int size, const char *filename,
5445 if ((size > 0) && (chunk !
5387 htmlCreatePushParserCtxt(htmlSAXHandlerPtr sax, void *user_data, const char *chunk, int size, const char *filename, xmlCharEncoding enc) argument
[all...]
H A Dparser.c455 errmsg = "chunk is not well balanced\n";
458 errmsg = "extra content at the end of well balanced chunk\n";
9645 * Doing validity checking on chunk doesn't make sense
9763 * Lookup the last < and > in the current chunk
9884 * @terminate: last chunk indicator
10815 * @chunk: an char array
10816 * @size: the size in byte of the chunk
10817 * @terminate: last chunk indicator
10824 xmlParseChunk(xmlParserCtxtPtr ctxt, const char *chunk, int size, argument
10834 if ((size > 0) && (chunk !
10940 xmlCreatePushParserCtxt(xmlSAXHandlerPtr sax, void *user_data, const char *chunk, int size, const char *filename) argument
13374 xmlCtxtResetPush(xmlParserCtxtPtr ctxt, const char *chunk, int size, const char *filename, const char *encoding) argument
[all...]
H A Dtestapi.c1505 char * chunk; /* a pointer to an array of chars */ local
1523 chunk = gen_const_char_ptr(n_chunk, 2);
1528 ret_val = htmlCreatePushParserCtxt(sax, user_data, (const char *)chunk, size, filename, enc);
1533 des_const_char_ptr(n_chunk, (const char *)chunk, 2);
2242 char * chunk; /* an char array */ local
2244 int size; /* the size in byte of the chunk */
2246 int terminate; /* last chunk indicator */
2255 chunk = gen_const_char_ptr(n_chunk, 1);
2259 ret_val = htmlParseChunk(ctxt, (const char *)chunk, size, terminate);
2264 des_const_char_ptr(n_chunk, (const char *)chunk,
12631 char * chunk; /* a pointer to an array of chars */ local
12900 char * chunk; /* a pointer to an array of chars */ local
13626 char * chunk; /* an char array */ local
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dsjsxp.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...

Completed in 225 milliseconds