Searched defs:totalsize (Results 1 - 16 of 16) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.h66 GLuint totalsize; /** total size of the miptree, in bytes */ member in struct:_radeon_mipmap_tree
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.h66 GLuint totalsize; /** total size of the miptree, in bytes */ member in struct:_radeon_mipmap_tree
/external/dtc/libfdt/
H A Dfdt.h59 fdt32_t totalsize; /* total size of DT block */ member in struct:fdt_header
H A Dlibfdt.h217 #define fdt_totalsize(fdt) (fdt_get_header(fdt, totalsize))
234 __fdt_set_hdr(totalsize); variable
/external/skia/third_party/lua/src/
H A Dlstring.c101 size_t totalsize; /* total size of TString object */ local
102 totalsize = sizeof(TString) + ((l + 1) * sizeof(char));
103 ts = &luaC_newobj(L, tag, totalsize, list, 0)->ts;
/external/syslinux/com32/lua/src/
H A Dlstring.c101 size_t totalsize; /* total size of TString object */ local
102 totalsize = sizeof(TString) + ((l + 1) * sizeof(char));
103 ts = &luaC_newobj(L, tag, totalsize, list, 0)->ts;
/external/curl/lib/
H A Dfile.c135 curl_off_t totalsize=-1; local
164 totalsize = to-from;
165 data->req.maxdownload = totalsize+1; /* include last byte */
/external/dtc/
H A Dfdtdump.c57 uint32_t totalsize = fdt32_to_cpu(bph->totalsize); local
69 printf("// totalsize:\t\t0x%x (%d)\n", totalsize, totalsize);
H A Dutil.c300 int totalsize; local
311 totalsize = fdt_totalsize(blob);
314 while (offset < totalsize) {
315 ret = write(fd, ptr + offset, totalsize - offset);
H A Dflattree.c359 fdt->totalsize = cpu_to_fdt32(reserve_off + reservesize + dtsize + strsize);
397 * If the user asked for more space than is used, adjust the totalsize.
400 padlen = minsize - fdt32_to_cpu(fdt.totalsize);
406 fdt32_to_cpu(fdt.totalsize), minsize);
414 padlen = ALIGN(fdt32_to_cpu(fdt.totalsize) + padlen, alignsize)
415 - fdt32_to_cpu(fdt.totalsize);
418 int tsize = fdt32_to_cpu(fdt.totalsize);
420 fdt.totalsize = cpu_to_fdt32(tsize);
491 fprintf(f, "\t/* totalsize */\n");
820 uint32_t magic, totalsize, versio local
[all...]
/external/curl/tests/server/
H A Drtspd.c122 static void storerequest(char *reqbuf, size_t totalsize);
724 static void storerequest(char *reqbuf, size_t totalsize) argument
734 if(totalsize == 0)
747 writeleft = totalsize;
749 written = fwrite(&reqbuf[totalsize-writeleft],
758 logmsg("Wrote request (%zu bytes) input to " REQUEST_DUMP, totalsize);
763 totalsize-writeleft, totalsize, REQUEST_DUMP);
H A Dsws.c133 static void storerequest(char *reqbuf, size_t totalsize);
840 static void storerequest(char *reqbuf, size_t totalsize) argument
851 if(totalsize == 0)
864 writeleft = totalsize;
866 written = fwrite(&reqbuf[totalsize-writeleft],
875 logmsg("Wrote request (%zu bytes) input to %s", totalsize, dumpfile);
880 totalsize-writeleft, totalsize, dumpfile);
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_parser.cpp1199 uint32_t totalsize = pObjStream->GetSize(); local
1201 IFX_MemoryStream::Create((uint8_t*)pData, (size_t)totalsize, false);
1212 size = totalsize - (thisoff + offset);
/external/stressapptest/src/
H A Dos.cc435 int64 totalsize = pages * pagesize; local
437 if (reserve_kb > totalsize) {
439 "available %lld\n", reserve_kb, totalsize);
440 } else if (reserve_kb > totalsize - minsize) {
442 "current %lld\n", minsize, totalsize - reserve_kb);
443 minsize = totalsize - reserve_kb;
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c185 u32 totalsize; (tailer)
2317 tdb_off_t totalsize; local
2320 totalsize = sizeof(*rec) + rec->rec_len;
2321 return tdb_ofs_write(tdb, offset + totalsize - sizeof(tdb_off_t),
2322 &totalsize);
2980 printf("ERROR: tailer does not match record! tailer=%u totalsize=%u\n",
/external/libmtp/src/
H A Dptp-pack.c985 uint32_t totalsize = 0; local
990 totalsize = sizeof(uint32_t); /* 4 bytes to store the number of elements */
995 totalsize += sizeof(uint32_t); /* Object ID */
998 totalsize += sizeof(uint16_t);
1001 totalsize += sizeof(uint16_t);
1004 totalsize += packedpropslens[noitems];
1010 opldata = malloc(totalsize);
1030 return totalsize;

Completed in 3990 milliseconds