HomeSort by relevance Sort by last modified time
    Searched refs:newsize (Results 126 - 150 of 174) sorted by null

1 2 3 4 56 7

  /external/u-boot/net/
nfs.c 83 ulong newsize = offset + len; local
111 net_boot_file_size = newsize;
  /external/e2fsprogs/lib/support/
profile.c 989 size_t newsize; local
992 newsize = b->max + (b->max >> 1) + len + 1024;
993 newptr = realloc(b->base, newsize);
999 b->max = newsize;
    [all...]
  /external/ltp/testcases/kernel/io/aio/
aio01.c 89 off_t newsize; member in struct:test_case_t
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodedata.c 532 Py_ssize_t newsize = PyString_GET_SIZE(result) + 10; local
534 if (PyUnicode_Resize(&result, newsize) == -1)
536 o = PyUnicode_AS_UNICODE(result) + newsize - space;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodedata.c 525 Py_ssize_t newsize = PyString_GET_SIZE(result) + 10; local
527 if (PyUnicode_Resize(&result, newsize) == -1)
529 o = PyUnicode_AS_UNICODE(result) + newsize - space;
    [all...]
  /external/flatbuffers/src/
reflection.cpp 319 uint8_t *ResizeAnyVector(const reflection::Schema &schema, uoffset_t newsize,
323 auto delta_elem = static_cast<int>(newsize) - static_cast<int>(num_elems);
337 WriteScalar(vector_data(*flatbuf) + vec_start, newsize); // Length field.
  /external/jemalloc/src/
arena.c     [all...]
  /external/python/cpython2/Modules/
unicodedata.c 532 Py_ssize_t newsize = PyString_GET_SIZE(result) + 10; local
534 if (PyUnicode_Resize(&result, newsize) == -1)
536 o = PyUnicode_AS_UNICODE(result) + newsize - space;
    [all...]
  /external/brotli/c/enc/
encode.c 1004 size_t newsize = s->num_commands_ + bytes \/ 2 + 1; local
    [all...]
  /external/libexif/libexif/
exif-entry.c 198 unsigned int i, newsize; local
243 newsize = e->components * exif_format_get_size (EXIF_FORMAT_SHORT);
244 newdata = exif_entry_alloc (e, newsize);
247 "Could not allocate %lu byte(s).", (unsigned long)newsize);
263 e->size = newsize;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 3634 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3698 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 3654 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3718 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
longobject.c 3634 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3698 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
stringobject.c 925 size_t newsize = 2 + 4 * Py_SIZE(op); local
927 if (newsize > PY_SSIZE_T_MAX || newsize / 4 != Py_SIZE(op)) {
932 v = PyString_FromStringAndSize((char *)NULL, newsize);
954 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
974 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
fileobject.c 800 Py_off_t newsize; local
826 /* Set newsize to current postion if newsizeobj NULL, else to the
831 newsize = PyInt_AsLong(newsizeobj);
833 newsize = PyLong_Check(newsizeobj) ?
841 newsize = initialpos;
855 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
863 ret = _portable_fseek(f->f_fp, newsize, SEEK_SET) != 0;
885 ret = ftruncate(fileno(f->f_fp), newsize);
    [all...]
  /external/python/cpython2/Objects/
longobject.c 3642 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3706 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
stringobject.c 935 size_t newsize; local
942 newsize = 2 + 4*Py_SIZE(op);
943 v = PyString_FromStringAndSize((char *)NULL, newsize);
965 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
985 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
fileobject.c 822 Py_off_t newsize; local
848 /* Set newsize to current position if newsizeobj NULL, else to the
853 newsize = PyInt_AsLong(newsizeobj);
855 newsize = PyLong_Check(newsizeobj) ?
863 newsize = initialpos;
877 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
885 ret = _portable_fseek(f->f_fp, newsize, SEEK_SET) != 0;
907 ret = ftruncate(fileno(f->f_fp), newsize);
    [all...]
  /external/python/cpython3/Objects/
longobject.c 4291 Py_ssize_t newsize, wordshift, hishift, i, j; local
4344 Py_ssize_t oldsize, newsize, wordshift, i, j; local
    [all...]
setobject.c 315 size_t newsize = PySet_MINSIZE; local
316 while (newsize <= (size_t)minused) {
317 newsize <<= 1; // The largest possible value is PY_SSIZE_T_MAX + 1.
325 if (newsize == PySet_MINSIZE) {
345 newtable = PyMem_NEW(setentry, newsize);
354 memset(newtable, 0, sizeof(setentry) * newsize);
355 so->mask = newsize - 1;
    [all...]
  /external/pcre/dist2/src/
pcre2_dfa_match.c 421 unsigned int newsize = rws->size * 2; local
424 if (newsize > heapleft) newsize = heapleft;
425 if (newsize < RWS_RSIZE + ovecsize + RWS_ANCHOR_SIZE)
427 new = mb->memctl.malloc(newsize*sizeof(int), mb->memctl.memory_data);
429 mb->heap_used += newsize;
431 new->size = newsize;
    [all...]
  /external/python/cpython3/Modules/_decimal/libmpdec/
mpdecimal.c 3246 mpd_ssize_t newsize, shift; local
3664 mpd_ssize_t newsize; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
stringobject.c 929 size_t newsize; local
936 newsize = 2 + 4*Py_SIZE(op);
937 v = PyString_FromStringAndSize((char *)NULL, newsize);
959 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
979 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
fileobject.c 814 Py_off_t newsize; local
840 /* Set newsize to current postion if newsizeobj NULL, else to the
845 newsize = PyInt_AsLong(newsizeobj);
847 newsize = PyLong_Check(newsizeobj) ?
855 newsize = initialpos;
869 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
877 ret = _portable_fseek(f->f_fp, newsize, SEEK_SET) != 0;
899 ret = ftruncate(fileno(f->f_fp), newsize);
    [all...]
  /external/python/cpython3/Parser/
tokenizer.c 1048 Py_ssize_t newsize = curvalid + BUFSIZ; local
1051 newsize);
1061 tok->end = tok->buf + newsize;
    [all...]

Completed in 2021 milliseconds

1 2 3 4 56 7