Searched refs:totalmem (Results 1 – 8 of 8) sorted by relevance
/third_party/curl/tests/ |
D | memanalyze.pl | 127 $totalmem -= $sizeataddr{$addr}; 130 … printf("FREE: %d bytes freed, left allocated: $totalmem bytes\n", $sizeataddr{$addr}); 133 newtotal($totalmem); 152 $totalmem += $size; 156 " makes totally $totalmem bytes\n"; 159 newtotal($totalmem); 177 $totalmem += $size; 181 " makes totally $totalmem bytes\n"; 184 newtotal($totalmem); 192 $totalmem -= $sizeataddr{$oldaddr}; [all …]
|
/third_party/libuv/src/unix/ |
D | qnx.c | 33 get_mem_info(uint64_t* totalmem, uint64_t* freemem) { in get_mem_info() argument 42 *totalmem = msg.o.info.__posix_tmi_total; in get_mem_info() 45 *totalmem = 0; in get_mem_info() 71 uint64_t totalmem; in uv_get_free_memory() local 73 get_mem_info(&totalmem, &freemem); in uv_get_free_memory() 79 uint64_t totalmem; in uv_get_total_memory() local 81 get_mem_info(&totalmem, &freemem); in uv_get_total_memory() 82 return totalmem; in uv_get_total_memory()
|
/third_party/node/test/parallel/ |
D | test-os.js | 127 assert.ok(os.totalmem() > 0); 249 assert.strictEqual(+os.totalmem, os.totalmem());
|
/third_party/node/lib/ |
D | os.js | 366 totalmem: getTotalMem, property
|
/third_party/node/test/common/ |
D | index.js | 793 return require('os').totalmem() > 0x70000000; /* 1.75 Gb */
|
/third_party/node/doc/api/ |
D | os.md | 347 ## `os.totalmem()`
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 2252 * [#1233](https://github.com/joyent/node/issues/1233) Fix os.totalmem on FreeBSD amd64 (Artem Zayts… 2396 * Implement os.totalmem() and os.freemem() for SunOS (Alexandre Marangone) 2660 * Add os.cpus(), os.freemem(), os.totalmem(), os.loadavg() and other
|
D | CHANGELOG_V12.md | 3108 …* Fix `os.freemem()` and `os.totalmem` correctness (cjihrig) [#27718](https://github.com/nodejs/no…
|