/vbox/src/VBox/Main/src-server/os2/ |
H A D | PerformanceOs2.cpp | 29 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 31 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); 50 int CollectorOS2::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 60 int CollectorOS2::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/ |
H A D | retry.c | 33 * used to build automatic retransmission into network protocols. 186 unsigned long used; local 194 used = ( now - timer->start ); 195 if ( used >= timer->timeout ) {
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | mem.c | 19 * 3. The name of the author may not be used to endorse or promote products 56 u8_t used; member in struct:mem 58 u16_t used; member in struct:mem 60 u32_t used; member in struct:mem 62 u64_t used; member in struct:mem 99 LWIP_ASSERT("plug_holes: mem->used == 0", mem->used == 0); 105 if (mem != nmem && nmem->used == 0 && (u8_t *)nmem != (u8_t *)ram_end) { 115 if (pmem != mem && pmem->used == 0) { 139 mem->used [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/ |
H A D | memtop_umalloc.c | 46 int used; member in struct:external_memory 122 if ( extmem.used ) 171 extmem.used = ( new_size > 0 );
|
/vbox/src/libs/zlib-1.2.6/contrib/infback9/ |
H A D | inftree9.c | 24 lens shorts, which is used as a work area. type is the type of code 47 unsigned used; /* code entries in table used */ local 101 The length counts are used for other purposes as well, i.e. finding 145 filled is at next and has curr index bits. The code being used is huff 159 counts are used for this, and so count[] is decremented as codes are 162 used keeps track of how many table entries have been allocated from the 177 base = extra = work; /* dummy value--not used */ 201 used = 1U << root; /* use root table entries */ 202 mask = used [all...] |
/vbox/src/libs/zlib-1.2.6/ |
H A D | inftrees.c | 24 lens shorts, which is used as a work area. type is the type of code 47 unsigned used; /* code entries in table used */ local 99 The length counts are used for other purposes as well, i.e. finding 151 filled is at next and has curr index bits. The code being used is huff 165 counts are used for this, and so count[] is decremented as codes are 168 used keeps track of how many table entries have been allocated from the 183 base = extra = work; /* dummy value--not used */ 207 used = 1U << root; /* use root table entries */ 208 mask = used [all...] |
/vbox/src/VBox/Main/src-server/freebsd/ |
H A D | PerformanceFreeBSD.cpp | 29 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 31 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); 59 int CollectorFreeBSD::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 93 *used = cPagesMemUsed * (cbPage / _1K); 107 int CollectorFreeBSD::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | stats.h | 13 * 3. The name of the author may not be used to endorse or promote products 61 mem_size_t used; member in struct:stats_mem 68 u16_t used; member in struct:stats_pbuf 77 u16_t used; member in struct:stats_syselem
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | mem.c | 35 * 3. The name of the author may not be used to endorse or promote products 161 /** 1: this area is used; 0: this area is unused */ 162 u8_t used; member in struct:mem 190 /** pointer to the lowest free block, this is used for faster search */ 243 LWIP_ASSERT("plug_holes: mem->used == 0", mem->used == 0); 249 if (mem != nmem && nmem->used == 0 && (u8_t *)nmem != (u8_t *)ram_end) { 260 if (pmem != mem && pmem->used == 0) { 287 mem->used = 0; 290 ram_end->used [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | uri.c | 229 int used = 0; local 258 used += ssnprintf ( buf + used, size - used, 266 used += ssnprintf ( buf + used, size - used, 271 used += uri_encode ( field, buf + used, 272 size - used, 446 size_t used; local [all...] |
H A D | settings.c | 654 * This function can also be used as an existence check for the 672 * This function can also be used as an existence check for the 1649 int used = 0; local 1655 used += ssnprintf ( ( buf + used ), ( len - used ), 1656 "%s%02x", ( used ? delimiter : "" ), 1659 return used;
|
/vbox/src/VBox/Main/src-server/darwin/ |
H A D | PerformanceDarwin.cpp | 64 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 66 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); 116 int CollectorDarwin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 125 *used = *total - *available; 166 int CollectorDarwin::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument 173 *used = tinfo.pti_resident_size / 1024;
|
/vbox/src/VBox/Main/testcase/ |
H A D | tstCollector.cpp | 211 ULONG total, used, available; local 213 int rc = collector->getHostFilesystemUsage(FSNAME, &total, &used, &available); 224 RTPrintf("tstCollector: host root fs used = %lu mB\n", used); 532 ULONG total, used, available, processUsed; local 534 rc = collector->getHostMemoryUsage(&total, &used, &available); 547 RTPrintf("tstCollector: host mem used = %lu kB\n", used); 549 RTPrintf("tstCollector: process mem used = %lu kB\n\n", processUsed);
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | virtio-ring.h | 12 /* Driver has used its parts of the config, and is happy */ 58 struct vring_used *used; member in struct:vring 100 /* physical address of used must be page aligned */ 104 vr->used = phys_to_virt(pa); 125 * is there some used buffers ? 132 return vq->last_used_idx != vq->vring.used->idx;
|
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/vbo/ |
H A D | vbo_save.h | 101 GLuint used; member in struct:vbo_save_vertex_store 107 GLuint used; member in struct:vbo_save_primitive_store
|
/vbox/src/VBox/Main/src-server/win/ |
H A D | PerformanceWin.cpp | 60 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 62 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); 298 int CollectorWin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 307 *used = *total - *available; 332 int CollectorWin::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument 341 *used = (ULONG)(it->second.ramUsed / 1024);
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/infiniband/ |
H A D | ib_srp.c | 130 size_t used; local 137 used = le32_to_cpu ( sbft->acpi.length ); 138 sbft->ib_offset = cpu_to_le16 ( used ); 139 ib_sbft = ( ( ( void * ) sbft ) + used ); 140 used += sizeof ( *ib_sbft ); 141 if ( used > len ) 143 sbft->acpi.length = cpu_to_le32 ( used );
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | stats.h | 13 * 3. The name of the author may not be used to endorse or promote products 95 mem_size_t used; member in struct:stats_mem 102 STAT_COUNTER used; member in struct:stats_syselem 170 #define STATS_INC_USED(x, y) do { lwip_stats.x.used += y; \ 171 if (lwip_stats.x.max < lwip_stats.x.used) { \ 172 lwip_stats.x.max = lwip_stats.x.used; \
|
/vbox/src/VBox/Main/src-server/linux/ |
H A D | PerformanceLinux.cpp | 51 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 52 virtual int getHostFilesystemUsage(const char *name, ULONG *total, ULONG *used, ULONG *available); 54 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); 212 int CollectorLinux::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 221 *used = *total - *available; 226 int CollectorLinux::getHostFilesystemUsage(const char *path, ULONG *total, ULONG *used, ULONG *available) argument 237 *used = (ULONG)(cbBlock * (stats.f_blocks - stats.f_bfree) / _1M); 265 int CollectorLinux::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument 274 *used = it->second.pagesUsed * (PAGE_SIZE / 1024); 448 * @param pszDevName The device name used t [all...] |
/vbox/src/libs/libxml2-2.6.31/ |
H A D | parserInternals.c | 281 int used; local 296 used = in->cur - in->buf->buffer->content; 297 ret = xmlBufferShrink(in->buf->buffer, used); 382 * This function removes used input for the parser. 386 int used; local 401 used = in->cur - in->buf->buffer->content; 406 if (used > INPUT_CHUNK) { 407 ret = xmlBufferShrink(in->buf->buffer, used - LINE_LEN); 1051 * We used to keep the internal content in the 1120 * "UTF-16" can be used fo [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
H A D | syn.h | 68 /* note that 'right' is used by the tree node allocator as a ptr for linked list */ 85 * context info (if used); later, this struct may include the 88 * A tree is used to indicate && vs || 104 Tree *tcontext; /* used if lookahead depth of > one is needed (tree) */ 106 set scontext[2];/* used if lookahead depth of one is needed (set) */ 107 /* scontext[0] is not used; only needed so genExprSets() 150 int used; /* MR7 */ member in struct:_ExceptionGroup 218 int done; /* don't dump if action dumped (used for predicates) */ 252 int astnode; /* leaf/root/excluded (used to build AST's) */ 255 /* used i [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/ |
H A D | fsw_hfs.c | 25 * The contents of this file may alternatively be used under the terms 347 * an unsuccessful mount to release the memory used by the file system type specific 384 * structure to release the memory used by the file system type specific part 624 fsw_u64 used; member in struct:__anon13090 668 vp->file_info.used = be32_to_cpu(folder_info->valence); 680 vp->file_info.used = LShiftU64(be32_to_cpu(file_info->dataFork.totalBlocks), 1021 baby->used_bytes = file_info->used; 1132 file_info.used = be32_to_cpu(info->valence); 1144 file_info.used = LShiftU64(be32_to_cpu(info->dataFork.totalBlocks), vol->block_size_shift); 1179 * and the dnode is actually a directory. The shandle provided by the caller is used t [all...] |
/vbox/src/VBox/Main/src-server/ |
H A D | MachineImplCloneVM.cpp | 324 * directly attached or have more than one directly/indirectly used child 389 /* Build a histogram of used medias and the parent chain. */ 447 uint32_t used = 0; local 456 RTPrintf("%ls: %d (%d)\n", bstrSrcName.raw(), hist, used); 461 if (hist > used) 464 used = hist; 1049 * cloned a second time, but simply used. */ 1096 /* diff image has to be used... */ 1141 * will be used. */ 1297 /* diff image has to be used [all...] |
H A D | Performance.cpp | 81 int CollectorHAL::getHostMemoryUsage(ULONG * /* total */, ULONG * /* used */, ULONG * /* available */) 86 int CollectorHAL::getHostFilesystemUsage(const char * /* name */, ULONG * /* total */, ULONG * /* used */, 97 int CollectorHAL::getProcessMemoryUsage(RTPROCESS /* process */, ULONG * /* used */) 875 ULONG total, used, available; local 876 int rc = mHAL->getHostMemoryUsage(&total, &used, &available); 880 mUsed->put(used); 900 ULONG total, used, available; local 901 int rc = mHAL->getHostFilesystemUsage(mFsName.c_str(), &total, &used, &available); 905 mUsed->put(used); 1070 ULONG used; local 1091 ULONG used = 0; local [all...] |
/vbox/src/VBox/Main/src-server/solaris/ |
H A D | PerformanceSolaris.cpp | 69 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 70 virtual int getHostFilesystemUsage(const char *name, ULONG *total, ULONG *used, ULONG *available); 72 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); 281 int CollectorSolaris::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 290 *used = *total - *available; 295 int CollectorSolaris::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument 311 *used = psinfo.pr_rssize; 525 int CollectorSolaris::getHostFilesystemUsage(const char *path, ULONG *total, ULONG *used, ULONG *available) argument 537 *used = (ULONG)(cbBlock * (stats.f_blocks - stats.f_bfree) / _1M);
|