HomeSort by relevance Sort by last modified time
    Searched defs:inlen (Results 1 - 25 of 36) sorted by null

1 2

  /external/protobuf/src/google/protobuf/testing/
zcgunzip.cc 67 int inlen; local
69 ok = in.Next(&inptr, &inlen);
73 if (inlen > 0) {
74 int err = write(STDOUT_FILENO, inptr, inlen);
75 assert(err == inlen);
  /external/curl/lib/
dotdot.c 55 size_t inlen = strlen(input); local
57 size_t clen = inlen; /* the length of the cloned input */
58 char *out = malloc(inlen + 1);
  /external/squashfs-tools/squashfs-tools/
lzma_wrapper.c 86 size_t outlen, inlen = size - LZMA_HEADER_SIZE; local
99 res = LzmaUncompress(dest, &outlen, src + LZMA_HEADER_SIZE, &inlen, src,
  /external/toybox/toys/posix/
iconv.c 39 size_t outlen, inlen = 0; local
45 if (readlen && 0>(readlen = read(fd, in+inlen, 2048-inlen))) {
49 inlen += readlen;
50 if (!inlen) break;
53 iconv(TT.ic, &in, &inlen, &out, &outlen);
58 inlen--;
61 memmove(toybuf, in, inlen);
  /external/curl/tests/unit/
unit1396.c 43 int inlen; member in struct:test
87 list1[i].in, list1[i].inlen,
102 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
  /external/fio/crc/
sha3.c 158 unsigned int i, inlen = sctx->partial; local
160 sctx->buf[inlen++] = 0x06;
161 memset(sctx->buf + inlen, 0, sctx->rsiz - inlen);
  /external/kernel-headers/original/scsi/
scsi_ioctl.h 28 unsigned int inlen; member in struct:scsi_ioctl_command
  /external/libxml2/
testHTML.c 422 int inlen = len, outlen = 30; local
424 htmlEncodeEntities(output, &outlen, ch, &inlen, 0);
443 int inlen = len, outlen = 30; local
445 htmlEncodeEntities(output, &outlen, ch, &inlen, 0);
nanohttp.c 138 int inlen; /* len of the input buffer */ member in struct:xmlNanoHTTPCtxt
551 ctxt->inlen = 65000;
563 if ((ctxt->in + ctxt->inlen) < (ctxt->inptr + XML_NANO_HTTP_CHUNK)) {
569 ctxt->inlen *= 2;
570 ctxt->in = (char *) xmlRealloc(tmp_ptr, ctxt->inlen);
    [all...]
encoding.c 166 * @inlen: the length of @in
171 * The value of @inlen after return is the number of octets consumed
177 const unsigned char* in, int *inlen) {
185 inend = in + (*inlen);
195 *inlen = processed - base;
202 *inlen = processed - base;
212 * @inlen: the length of @in
218 * The value of @inlen after return is the number of octets consumed
224 const unsigned char* in, int *inlen) {
233 if ((out == NULL) || (outlen == NULL) || (inlen == NULL)) return(-1)
502 unsigned int c, d, inlen; local
740 unsigned int c, d, inlen; local
    [all...]
runtest.c 1615 int inlen = len, outlen = 30; local
1636 int inlen = len, outlen = 30; local
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 106 unsigned long inlen; /* available input at in */ member in struct:state
133 if (s->incnt == s->inlen)
173 if (s->incnt + 4 > s->inlen)
182 if (s->incnt + len > s->inlen)
298 if (s->incnt == s->inlen)
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/puff/
puff.c 106 unsigned long inlen; /* available input at in */ member in struct:state
133 if (s->incnt == s->inlen)
173 if (s->incnt + 4 > s->inlen)
182 if (s->incnt + len > s->inlen)
298 if (s->incnt == s->inlen)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
stropmodule.c 954 Py_ssize_t inlen, tablen, dellen = 0; local
969 inlen = PyString_GET_SIZE(input_obj);
970 result = PyString_FromStringAndSize((char *)NULL, inlen);
978 for (i = inlen; --i >= 0; ) {
996 for (i = inlen; --i >= 0; ) {
1009 if (inlen > 0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
stropmodule.c 952 Py_ssize_t inlen, tablen, dellen = 0; local
967 inlen = PyString_GET_SIZE(input_obj);
968 result = PyString_FromStringAndSize((char *)NULL, inlen);
976 for (i = inlen; --i >= 0; ) {
994 for (i = inlen; --i >= 0; ) {
1007 if (inlen > 0)
    [all...]
  /external/python/cpython2/Modules/
stropmodule.c 954 Py_ssize_t inlen, tablen, dellen = 0; local
969 inlen = PyString_GET_SIZE(input_obj);
970 result = PyString_FromStringAndSize((char *)NULL, inlen);
978 for (i = inlen; --i >= 0; ) {
996 for (i = inlen; --i >= 0; ) {
1009 if (inlen > 0)
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/
multibytecodec.c 21 Py_ssize_t inpos, inlen; member in struct:__anon33410
332 newpos += (Py_ssize_t)buf->inlen;
333 if (newpos < 0 || newpos > buf->inlen) {
479 buf.inlen = datalen;
494 while (buf.inpos < buf.inlen) {
501 &buf.inpos, buf.inlen,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 1444 Py_ssize_t inlen; local
    [all...]
stringobject.c 2205 Py_ssize_t inlen, tablen, dellen = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 1440 Py_ssize_t inlen; local
    [all...]
stringobject.c 2186 Py_ssize_t inlen, tablen, dellen = 0; local
    [all...]
  /external/python/cpython2/Objects/
bytearrayobject.c 1449 Py_ssize_t inlen; local
    [all...]
stringobject.c 2205 Py_ssize_t inlen, tablen, dellen = 0; local
    [all...]
  /external/python/cpython3/Objects/
bytearrayobject.c 1201 Py_ssize_t inlen; local
    [all...]
bytesobject.c 2098 Py_ssize_t inlen, tablen, dellen = 0; local
    [all...]

Completed in 1026 milliseconds

1 2