The allocation tag has no wiki summary.
-2
votes
2answers
14 views
Why use the stack? Why not just heap? - C/C++
From what I've learned about dynamic memory allocation, the heap seems just to be an abundant pool of memory that you can use as much as you want of. My question is, why don't you just always use the ...
0
votes
2answers
14 views
ABPersonCopyImageData leaks
I have big problem with getting images from AddressBook, below I paste my code. This imageData never has been deallocated, on my Allocations Instruments it looks that it`s always in memory it never ...
1
vote
4answers
82 views
Declare large array on Stack
I am using Dev C++ to write a simulation program. For it, I need to declare a single dimensional array with the data type double. It contains 4200000 elements - like double n[4200000].
The compiler ...
0
votes
1answer
30 views
UIImage returning from OpenCV is too LARGE (6 MB) in iPhone
I was checking the allocations of my OpenCV app on iPhone and perceived that photos from the camera takes about 300kb and photos transformed by the app take 6 MB (20 times bigger).
Isn`t that ...
0
votes
0answers
14 views
Everytime a WEPopover is presented in iOS app the memory allocations grow
I am having some issues with my app, I am currently using the WEPopover library (ARCified) to create some custom popovers. However, everytime i present a popover and it's corresponding view ...
2
votes
1answer
86 views
How to memory allocate a pointer inside a pointer?
I'm new in C programming (my main area is java) and in java there exists the ArrayList which I can make like
ArrayList<Class> arraylist = new ArrayList<Class>();
where my class ...
-3
votes
2answers
48 views
malloc -warning returning zero every time when compiled [closed]
I am dealing with an embedded processor , i have to write my code with pointers ,the function below one with malloc in it never works, the one without malloc works perfect, i am not understanding how ...
0
votes
0answers
26 views
kmalloc(), __get_free_pages(), allocation rules
In context of Linux Device Drivers, we have kmalloc() function for allocating Kernel memory in byte-sized chunks. The thing that I know that we cant specify __GPF_HIGHMEME zone modifier to kmalloc(). ...
0
votes
1answer
56 views
Freeing any dynamically allocated memory associated with a list and returning NULL?
typedef struct ArrayList
{
// We will store an array of strings (i.e., an array of char arrays)
char **array;
// Size of list (i.e., number of elements that have been added to the array)
...
0
votes
2answers
33 views
What is the implementation detail for enumerate?
Python has enumerate() to iterate over objects with an index.I doubt that interpreters create a lot of int objects for the sole purpose of keeping track of where things are. The PEP page says the ...
1
vote
1answer
30 views
Do all interpreted/dynamically typed languages store everything on the heap?
I first wondered why a language would store everything on the heap, when it has serious performance cost. For example, Java folks avoid creating unnecessary objects because the performance differences ...
0
votes
2answers
78 views
What am I doing wrong when trying to implement an array of strings?
typedef struct ArrayList
{
// We will store an array of strings (i.e., an array of char arrays)
char **array;
// Size of list (i.e., number of elements that have been added to the array)
...
0
votes
4answers
50 views
get/setPreferredSize without allocating a Dimension object every time
Is there a good way to work with set/getPreferredSize, set/getMinimumSize, and set/getMaximumSize (or a way around them) without allocating a Dimension object every now and then? (Other than extending ...
0
votes
3answers
45 views
allocating and accessing matrix in C/C++
there is something that is troubling me, and I really can't find any answer through the internet (or at least i do not know how to search for it). I always thought that when declaring a size of a ...
-5
votes
2answers
56 views
Problems with memory allocations, string etc [closed]
I'm having problems with these three parts of codes, in the terms of Memory Allocations. I haven't got it yet.
Could you please point out to me what I am doing wrong and how I should go on ...
0
votes
0answers
25 views
I'm having trouble compiling ptmalloc2
I downloaded ptmalloc2 from http://malloc.de/malloc/ptmalloc2-current.tar.gz
and extracted it into a folder.
But when I type make I get
In file included from malloc.c:1484:0:
malloc.h:72:0: warning: ...
0
votes
1answer
31 views
iOS: Instruments, allocations peaking to a flat line
I'm trying to learn how to use instruments. I wonder is I can get some opinions or insight at to what is going on here.
Firstly, shortly after 02:00 my app crashes due to creating many high ...
-7
votes
0answers
61 views
Dynamically allocating space for a new ArrayList (C) [closed]
the function ArrayList *createArrayList(int length); is supposed to dynamically allocate space for a new ArrayList. Initialize its internal array to be of length length or DEFAULT_INIT_LEN, whichever ...
0
votes
2answers
41 views
Process in which new nodes are added to a linked list in C
I know how the program works but i can't wrap my head around the concenpt. Here is the main function:
void main() {
lista node1, p, q;
int n, i;
int a;
node1 = NULL;
printf("data = ");
scanf("%d", ...
-1
votes
1answer
61 views
c++ multiple times memory allocation to the same pointer [closed]
I'm dealing with a piece of code, where I'm not 100% sure about its correctness. Please can you tell me that what do you think about it? (I'm coding in Qt)
Only a sample:
CustomWidget *widget; ...
0
votes
2answers
23 views
Java Fill preallocated File with Data (on drive)
i want to download a videofile from the web. It is 121 MB. Now i want to pre allocate this 121 MB on the disk (with zeros or what ever) and fill it step by step with the data of the inputstream from ...
-2
votes
1answer
148 views
Why is C++ heap allocation so slow compared to Java's heap allocation? [closed]
I ran small tests in Java and C++, creating tons of very small objects (no class members, nothing in constructors) and Java is clearly faster (I mean C++ seems to be really slow). I bet this has to do ...
3
votes
1answer
110 views
SQL join allowing only one match from each table
I have two tables. One table has coupons allocated to each customer and the other table has redemption information for each customer. I essentially need to be left with only the coupons redeemed for ...
3
votes
5answers
93 views
Which is better in C allocating/deallocating memory of using a local variable? and Why?
If I need to do string manipulation or manipulating any kind of arrays be it stantard types like int or a self defined data structure. What is better local variable or dynamically allocating and ...
0
votes
1answer
93 views
allocated but not initialized
I have met aN allocated but not initialized issue.
here is part of the code:
void test2(vector<string> names, int num) // just for test
{
const char **tmp = new const char *[num]; // ...
0
votes
2answers
48 views
Something like new but to allocate 2 rooms
I have a member function that must create two objects of its class (in memory). So I must return a pointer "p", I want to access the objets by p[0] and p[1]. All I know is the keyword new, to ...
3
votes
2answers
70 views
Does Java's new keyword necessarily denote heap allocation?
I'm trying to write something fast, and that constantly allocates and deallocates memory, making where this memory is allocated important in terms of performance.
Does allocating objects always ...
0
votes
1answer
77 views
How to allocate memory using this malloc statement?
I have this method that reads a file. A matrix to be more specific where the first two numbers are the rows and the columns. However when i try to allocate the memory using malloc and using the rows ...
0
votes
3answers
111 views
FIFO String Allocation in C#
I am currently having a problem with the program that I'm creating right now. I already looked for answers, but it's different from what I want to happen because the given here are strings.
We were ...
1
vote
2answers
62 views
allocatable user derived types
I have a question about Fortran and correct allocation of
allocatable user derived types.
Here is my code:
module polynom_mod
implicit none
type monomial
integer,dimension(2) :: exponent
end ...
3
votes
2answers
54 views
Allocation algorithm for identifying the storage space
Refer the image
My Scenario
I1 and I2 are my SQL server instances which may be in same server or different server.
Inside small boxes represents the databases inside the sql instances.
The number ...
0
votes
0answers
43 views
Can't run first Android app to SIII via usb or emulator
Just started using the ADT Bundle on Win7/64bit which I believe should have everything to get started. After exactly following the "Building Your First App" tutorial I connected my Galaxy SIII via usb ...
0
votes
0answers
7 views
Addresses of dynamic versus static arrays?
I noticed that the address of a static array when called with or without & remains the same. However for a dynamic array, it will change as illustrated in the following code:
int *a = new ...
0
votes
2answers
40 views
Dynamic memory allocation with arrays
I just started learning about dynamic arrays, so pardon me because this is likely a simple question.
From what I have learned, we use dynamic arrays so we can re-size an array while the program is ...
0
votes
2answers
72 views
Returning instances allocated in the heap vs in the stack
It's been many, many years since the last time I did something in C++. These days, someone asked me for some help on a school project in C++, and I was intrigued by a "feature" of the language I've ...
1
vote
1answer
71 views
bad allocation of memory error with bigger data
I have a vector that contains elements of structure:
struct hairParticle{
bool seed;
double mass;
double diameter;
double stiffnessCoeff;
double ...
0
votes
2answers
81 views
Allocating memory for a 2d array of pointers wrapped within an struct in C
Let's say I have a struct named 'Foo' and inside of that I have a 2d array of pointers
typedef struct Foo {
Stuff* (*stuff)[16];
} Foo;
I have an initializeFoo function like ...
0
votes
1answer
33 views
Passing pointer to a stack allocated array to function
I have a function with the prototype below, the 3rd parameter (output variable) is the only relevant:
int ioman_write_pages(void**, unsigned, HDD_address**, /*rest is irrelevant*/)
The HDD_address ...
0
votes
0answers
38 views
Why has a (C-)stack a maximum of 2mb?
This question is about stack overflows, so where better to ask it than here.
If we consider how memory is used for a program (a.out) in unix, it is something like this:
| etext | stack, 2mb | heap ...
1
vote
2answers
148 views
Java - Strings and the substring method
I have some question that I wonder about. I know that string are immutable in Java and therefore a new string object is created rather than changed when for example assigning to a existing string ...
0
votes
0answers
36 views
An efficient way to allocate a large number of objects in javascript?
I want to preallocate a large number of objects X, in order to manage closely this memory myself, and save some garbage collection operations.
So i'm doing something like:
var size = 100000;
var t = ...
5
votes
1answer
183 views
Do Android devices use different amounts of heap and footprint for the same app
We have developed NDK prototypes for a simple project. The code is compiled and working on device and in simulator. However when looking in the settings menu on the phones: (Samsung Galaxy ...
-1
votes
1answer
82 views
Add a struct pointer to the end of a pointer of structs
I've searched through the forums for awhile, but can't seem to get this problem fixed. It compiles and does almost everything I need it to do, but one thing is off. Whenever I update a chore_array, ...
1
vote
0answers
24 views
Dynamic Memeory Allocation allocates lines in caches or not?
Using dynamic memory allocation at runtime in Linux allocates some memory in RAM. However, I want to know whether the cache lines are also allocated in the cache for that memory at the same time or ...
0
votes
0answers
37 views
Discrepancy between Live Bytes shown by Allocations instrument vs task_info() function
In my app the Live Bytes shown by Allocations Instrument are far different than what task_info function returns.
In Allocations Live Bytes do not go above 4-5 MB but task_info() can go as high as ...
0
votes
1answer
62 views
Memory allocation problems when working with a class in a new thread
I have this peace of code:
#include "Item.h"
#include "Object.h"
int main(){
Item Pan(0);
Pan.Prep2Cook();
//Object(char*, int);
Object Drawer(Pan.Oil_Memory, Pan.Oil_Size);
...
0
votes
3answers
80 views
Allocation of already allocated memory
I am developping an Objective-C (iOS) application which use very big-sized arrays (size > 10 000) in a C-based part of the app.
At a moment of the execution, i make a malloc of a little struct i ...
2
votes
0answers
31 views
most representative allocations metric for checking app memory usage
Recently I have been using Xcode instruments allocation to profile the memory usage of my app. There are a number of metrics, for example the heapshot analysis and live bytes amongst others. Which of ...
7
votes
1answer
148 views
strange slowing down of C++ allocs
Could someone please tell me why following things could happen:
I have 2 computers:
my working comp
Server
I maintain C++ program (msvc 2005 c++ compiled) that works too slow only on server,
...
1
vote
0answers
24 views
leaks allocations
I have create inside my storyboard file a UIImageView and I link image with:
@property (weak, nonatomic) IBOutlet UIImageView *imageAnimation;
I have insert into my function the following ...




