Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
6answers
447 views

Programatically calculate the size of a value type

I'm writing a unit test for a method that packs boolean values into a byte. The various bit locations are determined by the value of an enum, which only has 5 values right now, but it's conceivable ...
1
vote
3answers
41 views

How to print out size of physical memory in linux

If I use this grep MemTotal /proc/meminfo in linux terminal, I get MemTotal: 2059908 kB. Does anybody know how to get numbers only? which will be 2059908?
1
vote
1answer
122 views

Script to report process memory size to an Excel file

Is it possible to write a script that will execute every day in certain time and check size of memory that one process is taking and write that result to an Excel file? That Excel file should be ...
1
vote
1answer
31 views

size of memory used by map incluing all the objects it is carrying

Measure size of Map in memory including the size of all the objects it is holding. It doesn't seem to be straight forward. Size of the object itself might return shallow size as oppose to the actual ...
1
vote
0answers
110 views

How to calculate the size of an object in memory using Silverlight?

How to calculate the size of an object in memory using Silverlight?
1
vote
4answers
582 views

Run time Data and Code memory size estimate

I am working on a project, C programing language, to develop an application, that can be ported on to a number of different microcontroller platforms, such as ARM\Freescale\PIC microcontroller. I am ...
0
votes
1answer
91 views

Configuring physical memory for linux kernel

I have an embedded board (MIPS architecture) running linux 2.6.29 with u-boot as the bootloader. I have 512MB(bytes) of DDR3 RAM. The problem is, Linux is able to use only around 128MB of it. I ...
0
votes
2answers
30 views

memory limit by calculation

lets suppose a 32 bit computer... in that each cell has 4 bytes...now a memory cell can only be accessed distinctly as it is a 32 bit computer only x=(2^32)-1 memory cells can be ...
0
votes
3answers
554 views

Xmx is 3072m but Runtime.getRuntime().totalMemory() returns 59mb

I am using eclipse EE in ubuntu by downloading the .tar.gz file from eclipse website and extracting in my home directory. I set the -Xmx to 3072m in the eclipse.ini. Here it is: -startup ...