HomeSort by relevance Sort by last modified time
    Searched defs:outsize (Results 1 - 15 of 15) sorted by null

  /external/libjpeg-turbo/
jdatadst-tj.c 41 unsigned long *outsize; member in struct:__anon25021
134 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
151 unsigned char **outbuffer, unsigned long *outsize,
157 if (outbuffer == NULL || outsize == NULL) /* sanity check */
184 dest->outsize = outsize;
187 if (*outbuffer == NULL || *outsize == 0) {
193 *outsize = OUTPUT_BUF_SIZE;
200 dest->bufsize = *outsize;
jdatadst.c 53 unsigned long *outsize; member in struct:__anon25023
195 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
253 unsigned char **outbuffer, unsigned long *outsize)
257 if (outbuffer == NULL || outsize == NULL) /* sanity check */
279 dest->outsize = outsize;
282 if (*outbuffer == NULL || *outsize == 0) {
287 *outsize = OUTPUT_BUF_SIZE;
291 dest->pub.free_in_buffer = dest->bufsize = *outsize;
cjpeg.c 501 unsigned long outsize = 0; local
606 jpeg_mem_dest(&cinfo, &outbuffer, &outsize);
636 fprintf(stderr, "Compressed size: %lu bytes\n", outsize);
  /external/zopfli/src/zopfli/
zopfli_bin.c 40 unsigned char** out, size_t* outsize) {
44 *outsize = 0;
49 *outsize = ftell(file);
52 *out = (unsigned char*)malloc(*outsize);
54 if (*outsize && (*out)) {
55 size_t testsize = fread(*out, 1, *outsize, file);
56 if (testsize != *outsize) {
60 *outsize = 0;
64 assert(!(*outsize) || out); /* If size is not zero, out must be allocated. */
89 size_t outsize = 0 local
    [all...]
deflate.c 33 The outsize is number of necessary bytes to encode the bits.
39 unsigned char* bp, unsigned char** out, size_t* outsize) {
40 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize);
41 (*out)[*outsize - 1] |= bit << *bp;
46 unsigned char* bp, unsigned char** out, size_t* outsize) {
51 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize);
52 (*out)[*outsize - 1] |= bit << *bp;
63 size_t* outsize) {
68 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize);
69 (*out)[*outsize - 1] |= bit << *bp
325 bp, out, outsize); local
329 bp, out, outsize); local
    [all...]
  /external/curl/tests/server/
fake_ntlm.c 53 size_t outsize; local
68 outsize = inlength + outincr;
71 outsize = NOTHING_LEN + 1;
73 outbuf = malloc(outsize);
78 snprintf(&outbuf[0], outsize, "%s", NOTHING_STR);
84 if(o > outsize - (HEX_STR_LEN + 1)) {
85 newsize = outsize + outincr;
92 outsize = newsize;
100 snprintf(&outbuf[o], outsize - o, HEX_FMT_STR, inbuf[i]);
  /external/vboot_reference/futility/
vb1_helper.c 408 uint64_t outsize; local
433 outsize = keyblock->key_block_size + preamble->preamble_size;
434 outbuf = malloc(outsize);
435 Memset(outbuf, 0, outsize);
441 *vblock_size_ptr = outsize;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 310 int outsize = 0; local
312 outsize += buffers.get(i).length + 4;
314 byte[] output = new byte[outsize];
  /frameworks/av/media/libstagefright/
Utils.cpp 1470 size_t outsize = reassembleAVCC(csd0, csd1, avcc.data()); local
1482 size_t outsize = reassembleHVCC(csd0, hvcc.data(), hvcc.size(), 4); local
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-darwin.c 6691 vm_size_t outsize; member in struct:__anon42443
7331 mach_vm_size_t outsize; member in struct:__anon42467
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodeobject.c 1467 Py_ssize_t outsize = PyUnicode_GET_SIZE(*output); local
4561 Py_ssize_t outsize = PyString_GET_SIZE(*outobj); local
4586 Py_ssize_t outsize = PyString_GET_SIZE(*outobj); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodeobject.c 1409 Py_ssize_t outsize = PyUnicode_GET_SIZE(*output); local
4476 Py_ssize_t outsize = PyString_GET_SIZE(*outobj); local
4501 Py_ssize_t outsize = PyString_GET_SIZE(*outobj); local
    [all...]
  /external/python/cpython2/Objects/
unicodeobject.c 1469 Py_ssize_t outsize = PyUnicode_GET_SIZE(*output); local
4568 Py_ssize_t outsize = PyString_GET_SIZE(*outobj); local
4593 Py_ssize_t outsize = PyString_GET_SIZE(*outobj); local
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 349 unsigned lodepng_load_file(unsigned char** out, size_t* outsize, const char* filename)
356 *outsize = 0;
367 *outsize = 0;
369 if(size && (*out)) (*outsize) = fread(*out, 1, (size_t)size, file);
4759 size_t outsize; local
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 4255 Py_ssize_t outsize; local
7117 DWORD outsize; local
7178 Py_ssize_t outsize; local
7417 int outsize; local
7521 Py_ssize_t outsize; local
8304 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj); local
8328 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj); local
8482 Py_ssize_t outsize = PyBytes_Size(*res); local
    [all...]

Completed in 2670 milliseconds