Memory management is the act of managing computer memory. The essential requirement of memory management is to provide ways to dynamically allocate portions of memory to programs at their request, and freeing it for reuse when no longer needed. This is critical to the computer system.
0
votes
2answers
15 views
Universal Image Loader UIL nostra out of memory error
I am using UIL to load remote images and fill up Fragments in a FragmentStatePagerAdapter.
I have read readme and usual errors but i can't solve up this bug.
Here is the config:
...
0
votes
2answers
19 views
Frequent random access of large arrays
I have to implement 4 Hash Tables. The size of hash tables are going to be very large ~ 1 GB Each. The hash values will be the address of accessing the data. Now, since the hash values will be ...
2
votes
5answers
61 views
String operations and memory management
I want to write a convenient wrapper to a C-style function strftime. And I've come to some options to convert char-array to string and vise-versa. Here is my code:
std::string ...
0
votes
0answers
7 views
Using XLCycleScrollView (Preload all views)
Currently I am using the class XLCycleScrollView found here... XLCycleScrollView
At the moment, created 7 views the user is able to scroll through. I noticed that when looking at the example code for ...
0
votes
1answer
35 views
C Socket Append Data To Buffer Gets Corrupted
I'm still refining my C coding skills and keep running into issues with properly managing memory--go figure. Anyhow, I'm reading from a socket and I'm fine as long as my total response length from the ...
0
votes
0answers
67 views
Why am I getting heap corruption destructing my bitmap class? Is the trouble in this inline assembly?
I'm doing image processing and have been working with a class I pulled from CodeProject called CBitmapEx.
The class manages a data buffer and has useful functions for transforming bitmap images. It ...
1
vote
1answer
30 views
Best allocation for NSString when alternating between constant and non constant strings
I would like some help better understanding the memory characteristics of Strings in Cocoa.
The app I am working with uses one view controller and n tool objects. The View controller lives for the ...
1
vote
7answers
107 views
What is the difference between 'int [] arr1=null;' and 'int [] arr1=int [5];' regarding the memory allocation [closed]
I'd like to know what is the difference difference between
int [] arr1=null;
and
int [] arr1=int [5];
regarding the memory allocation? I read somewhere that null is a reference variable and ...
-1
votes
1answer
19 views
FLASHING IMAGE(.img) IN SDCARD
Every time i try to copy a directory along with its contents to my sdcard it shows different disk usage.
to copy the directory i use
sudo cp -a folder-name/* /media/system/
while being in the ...
1
vote
3answers
36 views
Memory allocation error - malloc: cannot convert void* to structure pointer
I am getting this error error C2440: '=' : cannot convert from 'void *' to 'TrackedObj *'
my TrackedObj structure looks like this :
typedef struct {
IplImage* hsv;
IplImage* hue;
...
1
vote
1answer
20 views
.net memory usage reporting difference between task manager and windbg/sos
I have a .net application. In task manager it showing 249 MB usage in Memory (private working set) column. Then I attach windb and ran !address –summary command. Below is its result. The memory usage ...
-1
votes
1answer
67 views
how memory is being allocated in c for unsigned short
main()
{
while(1)
{
if(j==7)
{
unsigned short Alphabet[10]; //what is size of this variable
/* if i came out of this loop will the memory allocated be cleared? if not then how ...
0
votes
0answers
3 views
Flushing a Gembox Spreadsheet object to a stream while reading from a DataReader
Here's the scenario:
I have around 400k records in a SQL Server 2008 R2 database that I want to export to an XLSX spreadsheet.
The application is an ASP.NET 4.0 web application
I tried using a ...
-1
votes
1answer
32 views
How to use a mmap file mapping for variables
I'm currently experimenting with IPC via mmap on Unix.
So far, I'm able to map a sparse-file of 10MB into the RAM and access it reading and writing from two separated processes. Awesome :)
Now, I'm ...
0
votes
3answers
73 views
Polynomial class with 2d array of terms as data member and uses operator + overloading
A polynomial class is implemented, with 2 D array of terms, and number of terms as data members. array rows are coefficients and array columns are exponents. we aim to overload + operator to do ...
1
vote
1answer
73 views
glibc detected-double free or corruption
I have the following function which reads a buffer from a serial device, get some tokens and print these tokens every 10 seconds. I want these results to save them in a data.txt which I created in my ...
5
votes
2answers
124 views
Avoid creating multiple copies of code in memory
I'm new to developing on embedded systems and am not used to having very little program memory (16kB in this case) to play with. I would like to be able to create global variables, arrays, and ...
0
votes
1answer
104 views
Case classes memory consumption
I have the code that defines some entity structure, for example:
case class EntityDefinition(id: UUID,
name: String,
propertyDefinitions: ...
1
vote
1answer
43 views
Memory leak in CABasicAnimation
The following code points to a memory allocation leak (using the allocation tool in profiler) -
Can someone point out why -
I am using a CABAsicAnimation to rotate a UIImageView
...
0
votes
1answer
53 views
Resizing string arrays that may be too big
Some background: I'm writing a C function that reads text from a file into a dynamically reallocated array. I start off with BUF_SIZE character, read until I've hit the limit, then reallocate. When ...
2
votes
1answer
32 views
is it retain cycle in objective of the block function?
[UIView animateWithDuration:0.2
delay:0.0f
options:UIViewAnimationOptionCurveEaseIn
animations:^{
...
0
votes
0answers
24 views
Retained size of Javascript Object full of Booleans
I am new to using Chrome's profiler. So this might be a misinterpretation of the results I'm getting.
If I open Chromes profiler and take a heap snapshot of the following webpage I notice that obj3, ...
0
votes
0answers
56 views
UIWebView and memory management
In my app there are times when I display a UIWebView to display a web page. When I create the UIWebView it takes around 60 mb in vm.
After deleting all the pointers to the UIWebView it doesn't free ...
1
vote
1answer
41 views
Anyone use CFAllocatorSetDefault succesfully in an iPhone app?
I wish to replace the default CFAllocator in my iPhone app with my own implementation. I want to control the memory allocated by the UIWebView since it seems to hold on to so much memory after loading ...
11
votes
1answer
156 views
How does the memory management of closures in Scala work?
Scala allows closure like
def newCounter = {
var a=0
() => {a+=1;a}
}
which defines a function that on every call returns a new independent counter function starting at 1:
scala> val ...
0
votes
0answers
40 views
Segmentation fault - pointers and allocations in Bison with Flex
My main problem is I get really dizzy when it comes to pointers and memory allocation, so I dedicate this topic to my ignorance of the subject. If someone can take a look at the following code I'd be ...
11
votes
3answers
225 views
What is the lifecycle of a C++ object? [closed]
I'm a seasoned C developer who is just now getting into C++, and I must admit, I'm very confused about how many ways there are to create, retain, and destroy C++ objects. In C, life is simple: ...
0
votes
2answers
61 views
Updating an UILabel looks like wasting performances
I'm working on a project, where i have to update the text of a UILabel really regularly (0.085f). So, I insert the update of the label in a loop like this :
MetresNumber = MetresNumber + 0.25;
...
16
votes
0answers
395 views
concurrent garbage collection for a c++ graph data structure
I have a directed graph data structure used for audio signal processing (see http://audulus.com if you're curious).
I would like graph edges to be strong references, so in the absence of cycles, ...
0
votes
0answers
13 views
Received memory warning in ARC based project
I am working with ARC based project.
all its working fine, but when I do some activity for for longer time then I am getting warning like :
Received memory warning
So please suggest me to find ...
1
vote
1answer
16 views
ARC based project is able to Analyze or not?
I am working onxcode 4.6 with ARC based project.
but When I am going to do project Analyze, then it's not doing.
So please anyone tell me for ARC based project Analyze works or not?
-3
votes
0answers
45 views
Pragma and Compiler depndency [closed]
In the padding it will take memory than it's actual size,but when I use pragma pack It show the actual memory which I used in code.
Can anybody tell me how actually pragma do?
Is pragma compiler ...
0
votes
1answer
31 views
How to find memory usage of my android application written C++ using NDK
I am porting a game written in C++ to Android using NDK. I need to know how much memory it consumes while running. I am looking for programmatically way to find the memory usage of Android application ...
0
votes
5answers
80 views
C++ Allocate and free memory in function
Consider the following code (building with g++):
#include <stdlib.h>
#include <stdio.h>
typedef struct {
int a;
int b;
char c;
} memstr_t;
memstr_t *ptt_backup;
void ...
0
votes
1answer
16 views
Windows: track memory usage and limit threads
I am writing a Windows based application that uses the OpenCV library for image processing. This is a multi-threaded application and each thread loads an image and processes it. My problem is that ...
0
votes
0answers
44 views
strong weak IBOutlet in iOS 6
The general recommendation was to use weak IBOutlet for the subviews. But now in iOS 6, views are no longer purged with memory warning, so is there any real practical difference between declaring an ...
0
votes
2answers
24 views
Referring to weak self inside a nested block
Suppose I already create a weak self using
__weak typeof(self) weakSelf = self;
[self doABlockOperation:^{
...
}];
Inside that block, if I nest another block:
[weakSelf ...
0
votes
1answer
44 views
obj c class memory management
I have extended UIView in order to implement some unique functionality. Along with this, I have included several objects as properties and defined them in the initialiser as defaults. This means that ...
0
votes
0answers
33 views
How do I clean up dirty memory from CG Image
In my app, it seems like CG image is eating up a lot of dirty memory:
Is there any API to call to flush all the dirty image in the memory? In the code I am just resizing the images with this ...
0
votes
1answer
16 views
Change the order on element
I'm now doing an application, where i need to put some elements in the top of the views sometimes.
For example, how could i do to make the entire CGRect red and not the green visible here :
Could ...
3
votes
1answer
41 views
Loading image resources as RGB 565
I'm trying to lower the memory usage of my app, and I noticed most of it is caused by the activities' backgrounds: in XHDPI, 720*1280*4 = 3.6Mbytes each, and Android doesn't seem to release them as ...
3
votes
4answers
112 views
Are there any practical differences between constructing a string via strdup() and malloc()?
Suppose I want to write a function that will produce a string, and while I can set an upper limit on the size of the string I don’t know in advance exactly how much space the string will take up. I ...
0
votes
1answer
62 views
cudaHostAlloc limitations
I have a system running Windows Server 2012. The system has 128 GB of memory and 6 Nvidia K10 GPUs with 8 GB of memory.
I use pinned host memory for all my devices (about 47 GB, 12 * 3.92 GB per ...
2
votes
4answers
73 views
Understanding the use of a temporary object
Maybe a stupid question but I thought I'll ask it anyway since I am still trying to wrap my head around memory management.
Is this :
1.
ViewController *tViewController = [[ViewController alloc] ...
0
votes
1answer
30 views
receiving memory warning issue in iphone when taking picture from iphone camera
i have a problem while i am taking snap from iphone camera then i receive this error on device console "Received memory warning". while i am pick snap from iphone photo libarary then i dont get any ...
0
votes
0answers
39 views
Sequential read and write on ssd
How can I determine whether the file being read or written are in sequence. Further is there any way to know whether the files written on flash drives are in sequential order. Assume the flash drive ...
0
votes
2answers
87 views
Dynamic Memory Allocation and Memory Leaks
I am writing a matlab mex function using c code. I am having a little trouble freeing allocated memory. I am having trouble with the following code. If I get rid of all the free() lines, the code ...
1
vote
2answers
65 views
Fast allocation of linked list and slow deallocation
I'm a C++ novice and I've run into a frustrating problem -
I have this templated LinkedList implementation:
template <typename U>
class LinkedList : std::iterator<std::input_iterator_tag, ...
0
votes
0answers
26 views
Cplex C++ inferface. How to clean up memory?
Background: The C++ interface of IBM ILOG Cplex allocates and de-allocates memory rather unconventionally:
A declaration of an ILO environment IloEnv environment;, followed by a construction of ...
3
votes
2answers
43 views
iOS/iPhone ARC memory management
__weak NSString *strin = [[NSString alloc] initWithFormat:@"hey"] ;
NSLog(@"weak %@",strin); //returns weak (null)
__weak NSString *strin =@"hey";
NSLog(@"weak %@",strin); //returns weak hey
...



