Home
last modified time | relevance | path

Searched refs:totalSize (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/crypto/external/cpl/trousers/dist/src/tcs/rpc/tcstp/
H A Drpc_evlog.c94 UINT32 firstEvent, eventCount, totalSize, pcrIndex, i, j; in tcs_wrap_GetPcrEventsByPcr() local
117 for (i = 0, totalSize = 0; i < eventCount; i++) in tcs_wrap_GetPcrEventsByPcr()
118 totalSize += get_pcr_event_size(&(ppEvents[i])); in tcs_wrap_GetPcrEventsByPcr()
152 UINT32 eventCount, totalSize, i, j; in tcs_wrap_GetPcrEventLog() local
162 for (i = 0, totalSize = 0; i < eventCount; i++) in tcs_wrap_GetPcrEventLog()
163 totalSize += get_pcr_event_size(&(ppEvents[i])); in tcs_wrap_GetPcrEventLog()
/netbsd-src/usr.sbin/bta2dpd/bta2dpd/
H A Dsbc_encode.c850 size_t readsize, totalSize; in stream() local
906 totalSize = sizeof(myHeader); in stream()
919 while (totalSize + ((size_t)pkt_len * 2) <= mtu) { in stream()
930 totalSize += (size_t)mySize[numpkts]; in stream()
945 whole = malloc(totalSize); in stream()
970 len = write(outfd, whole, totalSize); in stream()
978 len = (ssize_t)totalSize; in stream()
982 len = (ssize_t)totalSize; in stream()
1001 size_t decsize, totalSize, offset; in recvstream() local
1005 totalSize = 0; in recvstream()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.h60 size_t totalSize() const;
H A DMachOWriter.cpp34 size_t MachOWriter::totalSize() const { in totalSize() function in llvm::objcopy::macho::MachOWriter
515 size_t TotalSize = totalSize(); in write()
521 memset(Buf->getBufferStart(), 0, totalSize()); in write()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DABIInfo.h138 virtual bool isLegalVectorTypeForSwift(CharUnits totalSize,
H A DTargetInfo.cpp5469 bool isLegalVectorTypeForSwift(CharUnits totalSize, llvm::Type *eltTy,
5840 bool AArch64ABIInfo::isLegalVectorTypeForSwift(CharUnits totalSize, in isLegalVectorTypeForSwift() argument
5845 if (totalSize.getQuantity() != 8 && in isLegalVectorTypeForSwift()
5846 (totalSize.getQuantity() != 16 || elts == 1)) in isLegalVectorTypeForSwift()
6259 bool isLegalVectorTypeForSwift(CharUnits totalSize, llvm::Type *eltTy,
/netbsd-src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
H A Dsvga3d_cmd.h1114 uint32 totalSize; /* Set by guest before query is ended. */ member
/netbsd-src/sys/external/bsd/drm2/dist/drm/vmwgfx/
H A Dvmwgfx_drv.c393 result->totalSize = sizeof(*result); in vmw_dummy_query_bo_create()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.h343 size_t totalSize() const;
H A DObject.cpp2402 template <class ELFT> size_t ELFWriter<ELFT>::totalSize() const { in totalSize() function in llvm::objcopy::elf::ELFWriter
2547 size_t TotalSize = totalSize(); in finalize()
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c26902 int totalSize; in sqlite3MemMalloc() local
26907 totalSize = nReserve + sizeof(*pHdr) + sizeof(int) + in sqlite3MemMalloc()
26909 p = malloc(totalSize); in sqlite3MemMalloc()