active questions tagged size - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T10:03:53Zhttp://stackoverflow.com/feeds/tag/sizehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810083/c-pointers-pointing-to-an-array-of-fixed-size1C pointers : pointing to an array of fixed sizefigurassa2009-11-27T18:20:17Z2009-11-28T05:28:01Z
<p>This question goes out to the C gurus out there:</p>
<p>In C, it is possible to declare a pointer as follows:</p>
<pre><code>char (* p)[10];
</code></pre>
<p>.. which basically states that this pointer points to an array of 10 chars. The neat thing about declaring a pointer like this is that you will get a compile time error if you try to assign a pointer of an array of different size to p. It will also give you a compile time error if you try to assign the value of a simple char pointer to p. I tried this with gcc and it seems to work with ANSI, C89 and C99.</p>
<p>It looks to me like declaring a pointer like this would be very useful - particularly, when passing a pointer to a function. Usually, people would write the prototype of such a function like this:</p>
<pre><code>void foo(char * p, int plen);
</code></pre>
<p>If you were expecting a buffer of an specific size, you would simply test the value of plen. However, you cannot be guaranteed that the person who passes p to you will really give you plen valid memory locations in that buffer. You have to trust that the person who called this function is doing the right thing. On the other hand:</p>
<pre><code>void foo(char (*p)[10]);
</code></pre>
<p>..would force the caller to give you a buffer of the specified size.</p>
<p>This seems very useful but I have never seen a pointer declared like this in any code I have ever ran across. </p>
<p>My question is: Is there any reason why people do not declare pointers like this? Am I not seeing some obvious pitfall?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1799739/how-to-get-size-of-div-at-100-zoom1how to get size of DIV at 100% zoom?understack2009-11-25T20:29:25Z2009-11-28T04:44:56Z
<p>If a web page is zoomed out/in in any modern browser, then how I can find size of a DIV element at 100% zoom?</p>
<p><strong>EDIT:: I asked another <a href="http://stackoverflow.com/questions/1713771/how-to-detect-page-zoom-level-in-all-modern-browsers">similar question</a> here, which was unanswered.</strong></p>
http://stackoverflow.com/questions/1808243/how-does-one-calculate-the-minimum-client-size-of-a-net-windows-form1how does one calculate the minimum _client_ size of a .net windows form?fusi2009-11-27T11:38:33Z2009-11-27T14:03:10Z
<p>Hi everyone</p>
<p>I am trying to programmatically position certain controls within a form, based on the difference between the forms minimum size and its client size - this unfortunately produces different results depending on what theme the user has loaded (mostly the problem seems to be due to the fact that the title bar and form border have different heights/widths in different themes). I have tried using the height of the entire window (including the title bar etc) but this doesn't seem to work as expected :(</p>
<p>this unfortunately causes contained controls to misalign. in this particular usage scenario, use of automatic layout controls (such as the flow layout panel) isn't a viable solution.</p>
<p>I must be missing something really obvious - is there a better way of doing this?</p>
<p>Apologies if this question sounds dumb</p>
<p>Many Thanks
Dave</p>
http://stackoverflow.com/questions/1155974/windows-mobile-form-size1Windows Mobile form sizeJMD2009-07-20T21:11:47Z2009-11-27T12:15:35Z
<p>I’m creating a windows mobile app which uses a custom GUI. It has an image as background and some text and images rendered on it. I want to do as little image processing in the app itself, so I’m creating different skins for different screen resolutions. If I need to support another screen resolution I’ll just add another skin.</p>
<p>But what concerns me is that different emulator images have different sizes on their taskbars and menu bars, so the size of the actual form is not the same for all devices with the same resolution. So far I’ve found emulators where the taskbar and menu is either 104 (usually VGA, WVGA…) or 52 (QVGA, QWVGA…) pixels high. Do those menus always take up 52 or 104 pixels, or do device vendors or power users install things like a 3px high battery meter so the menu suddenly takes up 107 pixels?</p>
http://stackoverflow.com/questions/1790026/what-can-i-do-to-make-jar-classes-smaller4What can I do to make jar / classes smaller?amarillion2009-11-24T13:22:30Z2009-11-24T19:33:14Z
<p>I'm developing a Java Applet, and reducing the size of the binary code will make the applet open faster and will improve the user experience.</p>
<p>Is there anything I can do to reduce the size of classes and / or jar files? I want to be sure I'm not missing obvious tricks.</p>
<p>I know that in the C++ world compiler options for e.g. stripping debug symbols can make a huge difference, but I've never seen something like that for Java.</p>
http://stackoverflow.com/questions/38305/how-do-i-strip-the-fluff-out-of-a-third-party-library3How do I strip the fluff out of a third party library?Allain Lalonde2008-09-01T19:09:19Z2009-11-24T07:47:12Z
<p>It may not be best practice but are there ways of removing unsused classes from a third party's jar files. Something that looks at the way in which my classes are using the library and does some kind of coverage analysis, then spits out another jar with all of the untouched classes removed.</p>
<p>Obviously there are issues with this. Specifically, the usage scenario I put it though may not use all classes all the time.</p>
<p>But neglecting these problems, can it be done in principle?</p>
http://stackoverflow.com/questions/1159693/dynamic-changes-to-thread-stack-size-in-solaris-90Dynamic changes to thread stack size in Solaris 9 ?Satya2009-07-21T14:53:41Z2009-11-24T01:00:01Z
<p>Hello,</p>
<p>I am looking for a configurable / tunable on Solaris 9 through which I can change the default thread stack size <em>without</em> recompiling the code to use "pthread_attr_setstacksize"</p>
<p>For example on HPUX 11.11 / 11.23 the environment variable "PTHREAD_DEFAULT_STACK_SIZE" can be exported (available via HPUX patches PHCO_38307 / PHCO_38955 ) - Is there a equivalent Solaris 9 way to achieve the same ?</p>
<p>Thanks!
Satya</p>
http://stackoverflow.com/questions/1686525/pvrtc-compression-increasing-the-file-sizes-of-png0PVRTC compression increasing the file sizes of PNGSankar2009-11-06T09:47:49Z2009-11-23T13:09:11Z
<p>Hi,</p>
<p>For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is creating files that are much bigger than the PNG files.. So a PNG of 140 KB (1024x1024) gets bloated to 512 KB or more in the PVRTC format.. I read somewhere that a PNG file of 50KB got compressed to some 10KB and all, in my case, its the other way around..</p>
<p>Any reason why it happens this way and how I can avoid this.. If PVRTC compression is blindly doing 4bpp conversion (1024x1024x0.5) irrespective of the transparencies in the PNG, then whats the compression we are achieving here..</p>
<p>I have 100s of these 1024x1024 images in my game as there are numerous characters each doing some complex animations.. so in this rate of 512KB per image, my app would get more than 50MB.. which is unacceptable for my customer.. ( with PNG, I could have got my app to 10MB)..</p>
<p>Sankar</p>
http://stackoverflow.com/questions/1518711/c-programming-how-does-free-know-how-much-to-free14C programming : How does free know how much to free?Joshua Cheek2009-10-05T07:45:31Z2009-11-22T06:25:27Z
<p>In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to also pass the size (ie an array of 10 elements needs to receive 10 as a parameter to know the size of the array), but I do not have to pass the size to the free function. Why not, and can I use this same technique in my own functions to save me from needing to cart around the extra variable of the array's length?</p>
http://stackoverflow.com/questions/1777790/making-a-div-smaller-than-its-contents1Making a div smaller than its contentsAriel Jacobs2009-11-22T04:14:55Z2009-11-22T04:34:43Z
<p>I'm trying to show a div on a webpage, with mostly text. I would like to know if I can make it smaller so that not all the contents are able to be seen. (Javascript would make it larger later on.)</p>
http://stackoverflow.com/questions/1392413/calculating-a-directory-size-using-python2Calculating a directory size using Python?Gary Willoughby2009-09-08T07:06:42Z2009-11-21T23:57:12Z
<p>Before i re-invent this particular wheel, has anybody got a nice routine for calculating the size of a directory using Python? It would be very nice if the routine would format the size nicely in Mb/Gb etc. Thanks.</p>
http://stackoverflow.com/questions/1747195/how-to-load-a-big-picture-or-swf-file-by-calling-loader-load-in-flex-and-make0how to load a big picture or swf file by calling Loader.load() in Flex, and make the container adjust the size of the loading content?unknown (google)2009-11-17T07:35:35Z2009-11-20T21:59:25Z
<p>Hi All,</p>
<p>I get a ActionScript class for loading the content:</p>
<p>public class LoaderContainer extends Sprite {</p>
<pre><code> public function LoaderExample() {
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
addChild(loader);
var request:URLRequest = new URLRequest("File://C:/1.swf");
loader.load(request);
}
private function completeHandler(event:Event):void {
Alert.show(this.x+"/"+this.y+"/"+this.width +"/"+ this.height);
}
</code></pre>
<p>}</p>
<p>And then add the LoaderContainer to a Panel control in main MXML.</p>
<p>What supprise me is that the LoaderContainer's width/height is changing all the way according to the contents that it loaded.</p>
<p>Is there any way that we can limit the content's size right obeying the container's size?</p>
<p>Thanks
Michael</p>
http://stackoverflow.com/questions/453099/size-of-static-array1Size of static arrayRon2009-01-17T10:25:19Z2009-11-20T13:40:46Z
<p>I declare a static char array, then I pass it to a function. How to get the no. of bytes in the array inside the function?</p>
http://stackoverflow.com/questions/1739107/sharepoint-approaching-website-storage-limit-email0SharePoint - Approaching Website Storage Limit EmailEmon2009-11-15T22:34:35Z2009-11-19T07:38:01Z
<p>Hi all,</p>
<p>How can i go about changing the distribution list as well as the email text for the email that goes out to site collection admin when a site collection approaches it's size limit?</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1761360/cgimage-create-thumbnail-image-with-desired-size0CGImage create thumbnail image with desired sizeDhanaraj2009-11-19T06:51:00Z2009-11-19T06:51:00Z
<p>Hi,</p>
<p>I want to create the thumbnail using the CG. It creates the thumbnails. </p>
<p>Here i want to have the thumbnail with the size 1024 (with aspect ratio.) Is it possible to get the desired size thumbnail directly from the CG?</p>
<p>In the options dictionary i can pass the max size of the thumnail can be created, but is there any way to have min size for the same..?</p>
<pre><code>NSURL * url = [NSURL fileURLWithPath:inPath];
CGImageSourceRef source = CGImageSourceCreateWithURL((CFURLRef)url, NULL);
CGImageRef image=nil;
if (source)
{
NSDictionary* thumbOpts = [NSDictionary dictionaryWithObjectsAndKeys:
(id) kCFBooleanTrue, (id)kCGImageSourceCreateThumbnailWithTransform,
(id)kCFBooleanTrue, (id)kCGImageSourceCreateThumbnailFromImageIfAbsent,
[NSNumber numberWithInt:2048], kCGImageSourceThumbnailMaxPixelSize,
nil];
image = CGImageSourceCreateThumbnailAtIndex(source, 0, (CFDictionaryRef)thumbOpts);
NSLog(@"image width = %d %d", CGImageGetWidth(image), CGImageGetHeight(image));
CFRelease(source);
}
</code></pre>
http://stackoverflow.com/questions/1761124/how-many-characters-in-varcharmax0How many characters in varchar(max)Russell2009-11-19T05:37:51Z2009-11-19T05:52:24Z
<p>How many characters can a SQL Server 2008 database field contain when the data type is VARCHAR(MAX)?</p>
<p>Thanks guys, helped me out a lot :)</p>
http://stackoverflow.com/questions/1757638/how-to-get-the-size-of-an-image-in-bytes-with-delphi1How to get the size of an image in bytes with Delphi?Billiardo Aragorn2009-11-18T17:20:03Z2009-11-18T18:43:02Z
<p>Hi dudes, my app has 3 controls: TThumbnailList (image viewer from TMS components), TImage, and TLabel. I wish that when I drag an image from TThumbnailList to TImage, and drop it, the TLabel object shows the size in bytes for that image. How do I get this?
Thanks in advance.</p>
<pre><code>procedure TForm1.AssignImage;
begin
//tl: TThumbnailList
if (tl.ItemIndex>=0) then begin
Image1.Picture.Assign(tl.Thumbnails.Items[tl.ItemIndex].Picture);
end;
end;
procedure TForm1.Image1DragDrop(Sender, Source: TObject; X, Y: Integer);
begin
if (Source is TThumbnailList) then AssignImage;
end;
procedure TForm1.Image1DragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState;
var Accept: Boolean);
begin
Accept:= Source is TThumbnailList;
end;
</code></pre>
http://stackoverflow.com/questions/1748751/dynamicaly-chaning-the-textarea-size-style1Dynamicaly Chaning the <textarea > size,stylestreetparade2009-11-17T13:06:57Z2009-11-18T07:40:07Z
<p>How can i change the field size diynamicaly? <br>
I have a select field and there are 3 options with different values.
So if the user selects one of them in the you see the values.
But how can i change the size that the values from option field fits in the </p>
<pre><code>function changeText()
{
var select = document.getElementById("surl");
var textfield = document.getElementById("turl");
var bold = document.getElementById("burl");
var link = document.getElementById("linkText");
if(bold.style.display == "none")
bold.style.display = "";
//if(link.innerHtml)
bold.innerHtml = select.value;
//if(link.innerHTML !="")
link.innerHTML= select.value;
textfield.value = select.value;
}
<b>Sample: </b><select id="surl" onchange="changeText();" style="visibility: visible;" name="linkText">
<option>Select LinkText</option>
<option value="<a href='http://www.doesntexist.dsdsd/'>Want sign? http://www.doesntexist.dsdsd</a>">
Variant1
</option>
<option value="<a href='http://www.doesntexist.dsdsd/'>Wanna killme? http://www.doesntexist.dsdsd</a>">
Variant 2
</option>
</select>
<br />
<div class="succes">
<span id="burl" style="display: none"><br /><a id="linkText" href="http://www.doesntexist/"></a></span>
</div>
</p>
<p>
<textarea id="turl" style="">
<a href="http://www.doesntexist">text...</a>
</textarea>
</p>
</code></pre>
http://stackoverflow.com/questions/1740448/how-to-estimate-size-of-a-jpeg-file-before-saving-it-with-a-certain-quality-facto0How to estimate size of a Jpeg file before saving it with a certain quality factor?sxingfeng2009-11-16T06:37:32Z2009-11-17T19:46:21Z
<p>I'v got a bitmap 24bits, I am writing application in c++, MFC,
I am using libjpeg for encoding the bitmap into jpeg file 24bits.</p>
<p>When this bitmap's width is M, and height is N.</p>
<p>How to estimate jpeg file size before saving it with certain quality factor N (0-100).</p>
<p>How can I do it ? Many thanks!</p>
<p>Is it possible to do this?</p>
<p>For example.
I want to implement a slide bar, which represent save a current bitmap with certain quality factor N.
A label is beside it. shows the approximate file size when decode the bitmap with this quality factor.
When user move the slide bar. He can have a approximate preview of the filesize of the tobe saved jpeg file.</p>
http://stackoverflow.com/questions/1747569/c-datagrid-event-handler-for-changing-column-width0C# datagrid: event handler for changing column widthnet2009-11-17T09:23:28Z2009-11-17T09:23:28Z
<p>Hi,</p>
<p>I'm programming a windows mobile app in C# and I need to resize the columns of a datagrid when columns from another datagrid are resized.
Is this possible ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1742124/different-lucene-search-results-using-different-search-space-size1Different lucene search results using different search space size.Franz See2009-11-16T13:13:19Z2009-11-17T07:49:56Z
<p>I have an application that uses lucene for searching. The search space are in the thousands. Searching against these thousands, I get only a few results, around 20 (which is ok and expected).</p>
<p>However, when I reduce my search space to just those 20 entries (i.e. I indexed only those 20 entries and disregard everything else...so that development would be easier), I get the same 20 results but in different order (and scoring).</p>
<p>I tried disabling the norm factors via Field#setOmitNorms(true), but I still get different results?</p>
<p>What could be causing the difference in the scoring?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1740543/determine-total-size-of-svn-directory-trunk2Determine total size of SVN directory/trunkadammw1112009-11-16T07:03:58Z2009-11-16T07:09:31Z
<p>Is there a way to count/calculate the total size of a svn directory if you were to checkout a revision?</p>
<p>I have limited internet downloads so I need to know how big something is before I go and download it.</p>
<p><em>Thank you.</em></p>
http://stackoverflow.com/questions/719795/drag-size-handle-implementation0Drag/Size Handle implementationneodymium2009-04-05T22:09:26Z2009-11-14T09:00:02Z
<p>I'm looking for drag/size handle implementations or explanations.</p>
<p>Perhaps I'm using the wrong nomenclature, but I mean the "handles" that appear around an object (mostly in drawing programs) when you select it and want to perform an operation on that object such as rotate, size, scale, etc...</p>
<p>Can anyone point me to an OSS implementation I can look at or explain how they have/would implement this?</p>
http://stackoverflow.com/questions/634257/innodb-does-the-space-occupied-by-deleted-rows-get-re-used3Innodb: does the space occupied by deleted rows get re-used?raquo2009-03-11T12:11:40Z2009-11-14T05:22:07Z
<p>I have read several times that after you delete a row in an InnoDB table in MySQL, its space is not reused, so if you make a lot of INSERTs into a table and then periodically DELETE some rows the table will use more and more space on disk, as if the rows were not deleted at all.</p>
<p>Recently I've been told though that the space occupied by deleted rows is re-used but only after some transactions are complete and even then - not fully. I am now confused.</p>
<p>Can someone please make sense of this to me? I need to do a lot of INSERTs into an InnoDB table and then every X minutes I need to DELETE records that are more than Y minutes old. Do I have a problem of ever-growing InnoDB table here, or is it paranoia?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1728909/how-to-find-the-number-of-data-added-in-cstringarray0How to find the number of data added in CStringArrayunknown (google)2009-11-13T12:23:40Z2009-11-14T03:54:16Z
<p>Helo guys,
I am working wid CStringArray and i want to know how to find the number of datas added in a CStringArray . in the below i have a defined the size of the array as 10 but i have added only three 3 data,So i want to know the number of data's added to the array.(here its 3).Is there any way we can do it in CStringArray to find the number of data's added to array</p>
<blockquote>
<p>CStringArray filepaths[10] =
{path1.path2,path3};</p>
</blockquote>
http://stackoverflow.com/questions/1725601/qt-increase-qtabwidgets-qtabbar-size1Qt Increase QTabWidget's QTabBar sizeSan Jacinto2009-11-12T21:38:18Z2009-11-13T06:55:58Z
<p>I need to make the tabs that I have oriented at the bottom of my QTabWidget larger. We'll be using a touch-screen, so the default sizes are a little too small.</p>
<p>I see no easy way to do this (currently seeing no good way to even do it at all. The only methods pertaining to the QTabBar that I see in QTabWidget are protected, and I don't see a need to inherit from the class other than for this express purpose).</p>
<p>Question:</p>
<p>What I'd like to do is to just set the QTabBar to a certain specific size. Is this possible?</p>
<p>Other than this, the only thing I can think of is to subclass QTabWidget and then I can control the size of the QTabBar by extending or overriding features of this class.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1721568/size-of-reference-of-an-class-in-java0Size of reference of an class in JAVASachin Chourasiya2009-11-12T11:26:48Z2009-11-12T12:32:09Z
<p>What is the size of reference of a class in Java? Is it constant for a particular JVM and OS irrespective of the class for which the reference is made.</p>
<p><hr></p>
<p>Class A
Class B
Class C</p>
<p><hr></p>
<p>A a;
B b;
C c;</p>
<p>Is size of a , b and c are same irrespective of the size of A, B and C classes?</p>
http://stackoverflow.com/questions/1719723/flex3-why-are-my-swfs-not-the-right-resolution0[Flex3] Why are my swfs not the right resolution?Conor2009-11-12T03:37:10Z2009-11-12T04:32:17Z
<p>Forgive me if this is a really stupid question, but I cant figure it out.</p>
<p>I must admit this is my first project in flex as opposed to flash cs3.</p>
<p>All of the assets that I'm using in my .swc are in a .fla that is 1024x768.</p>
<p>Nothing in my actionscript code is scaling down the size of my app, but every time I test my project, my project only takes up maybe 600x500 of the stage, instead of filling it up as I had imagined..</p>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1709854/what-is-max-size-of-ajax-response-data0What is max size of ajax response data?Alexander2009-11-10T17:47:45Z2009-11-11T00:05:55Z
<p>I send request from asp.net page and then wait for response, calling GetCommand via SetInterval method:</p>
<pre><code> function GetCommand(id, sid) {
getCommandResponse = $.ajax({
type: "POST",
async: true,
url: "../WebServices/TSMConsole.asmx/GetCommand",
data: "{'param' : '" + id + "', 'sid' : '" + sid + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(result, status) {
AjaxFinishedGet(result, status);
getCommandResponse = null;
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
AjaxFailedGet(XMLHttpRequest, textStatus, errorThrown);
getCommandResponse = null;
}
});
}
</code></pre>
<p>In AjaxFinishedGet(result, status) I try to extract my data:</p>
<pre><code> function AjaxFinishedGet(xml, status) {
endDate = new Date();
if (xml.d.IsPending == 'false' || endDate - startDate > timeoutMSec) {
if (getCommand != null) {
window.clearInterval(getCommand);
getCommand = null;
WriteGetCommand(xml.d.Text);
$("#showajax").fadeOut("fast");
}
}
}
</code></pre>
<p>However, if Text size is more than 102330 bytes - instead of AjaxFinishedGet, AjaxFailedGet is called :(</p>
<p>I have not found any info neither about some limitation of ajax response data size nor about javascript variable size, at least such variable can hold 1MB without problems. Actually Text may contain 1MB of data...</p>
<p>Where is the problem?</p>
http://stackoverflow.com/questions/1699070/can-i-reduce-the-font-size-of-iphone-tableview-header0Can i reduce the font size of iphone tableview headerShibin Moideen2009-11-09T04:19:00Z2009-11-09T04:52:23Z
<p>Hi All,</p>
<p>I need to reduce the font size of the table view header. My string value is a little bit longer and it doesnot fit in to the header. so planning to reduce the size. Any one knows how to reduce the size, so that i can add the string to my table view header.</p>
<p>Thanks in advance,
Shibin</p>