Searched refs:totalsize (Results 1 – 8 of 8) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lstring.c | 101 size_t totalsize; /* total size of TString object */ in createstrobj() local 102 totalsize = sizeof(TString) + ((l + 1) * sizeof(char)); in createstrobj() 103 ts = &luaC_newobj(L, tag, totalsize, list, 0)->ts; in createstrobj()
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/libfdt/ |
D | fdt.h | 67 fdt32_t totalsize; /* total size of DT block */ member
|
D | libfdt.h | 211 #define fdt_totalsize(fdt) (fdt_get_header(fdt, totalsize)) 228 __fdt_set_hdr(totalsize)
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Include/ |
D | fdt.h | 59 fdt32_t totalsize; /* total size of DT block */ member
|
D | libfdt.h | 168 #define fdt_totalsize(fdt) (fdt_get_header(fdt, totalsize)) 185 __fdt_set_hdr(totalsize);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | bytearrayobject.c | 2585 Py_ssize_t totalsize = 0; in bytearray_join() local 2608 totalsize += mysize; in bytearray_join() 2609 totalsize += Py_SIZE(obj); in bytearray_join() 2610 if (totalsize < 0) { in bytearray_join() 2617 result = PyByteArray_FromStringAndSize(NULL, totalsize); in bytearray_join()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | bytearrayobject.c | 2593 Py_ssize_t totalsize = 0; in bytearray_join() local 2616 totalsize += mysize; in bytearray_join() 2617 totalsize += Py_SIZE(obj); in bytearray_join() 2618 if (totalsize < 0) { in bytearray_join() 2625 result = PyByteArray_FromStringAndSize(NULL, totalsize); in bytearray_join()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | urllib.py | 1580 def reporthook(blocknum, blocksize, totalsize): argument 1583 blocknum, blocksize, totalsize)
|