The allocation tag has no wiki summary.
0
votes
0answers
15 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
24 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 ...
-6
votes
0answers
31 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
37 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
53 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
18 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
132 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
89 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
84 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
89 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 ...
2
votes
2answers
56 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
74 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
86 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
56 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
49 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
28 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
36 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
70 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
53 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
69 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
31 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
36 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
105 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
32 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
149 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
76 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
18 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
26 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
60 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
77 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
28 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
145 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
19 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 ...
-1
votes
1answer
68 views
c++ memory allocation in a for loop in vector<char> in a for loop
I have a memory allocation problem in the following function when reallocating the vector chunk object, what am I missing and what could be the possible solution?
public:
void ...
1
vote
4answers
127 views
How to allocate memory for a very large two-dimensional array in C
I have a file which has 5 million rows and 4 columns. As usual, I try to read the data in a 5million by 4 array.
long M = 5000000;
double *coordinates[M];
for (i = 0; i < M; i++){
...
-1
votes
1answer
66 views
Pointer arithmetic to fill dynamically allocated array in C [closed]
I allocated an array using malloc and than tried filling it using a for loop and pointer arithmetic, It's not working for some reason though.
int* myArray = (int*)malloc(100*sizeof(int));
for (int i ...
4
votes
2answers
112 views
Block allocation
Is it better to pre-allocate (for example) 100KB of memory (in the heap) but then only go on to use 60KB, or is it better to allocate each byte as you need it?
My question arises from reading this ...
2
votes
3answers
118 views
Efficiency of multiplication by 2
I'm supposed to allocate memory geometrically and set the initial size to 1000. When this is filled, it would expand to 2000, 4000, and so on.
My question is: If I set the initial size to multiply of ...
2
votes
1answer
83 views
Bad performance when using templates and new allocation
there is some really strange behavior when using the new keyword to allocate memory in the constructor of a templated class:
The program executes very slowly when compared to the untemplated code.
...
5
votes
4answers
472 views
Memory Allocation/Deallocation? [closed]
I have been looking at memory allocation lately and I am a bit confused about the basics, the simples stuff is what I haven't been able to wrap my head around. What does it mean to allocate memory? ...
-1
votes
1answer
54 views
error message: invalid allocation size
I have two classes:
class A {
long int m_Code;
char m_Name[NAME_LEN];
bool vec[2];
};
class B {
A* movie;
char time[LEN_TIME];
};
class C {
int theater_number;
B *b;
};
class ...
-1
votes
3answers
330 views
Memory allocation of class objects [closed]
I have been asked this question in interview. Please help me find its answer.
Suppose you have a class Employee. There are 2 variables in it - 1. String Name 2. Int Age
Now, Employee emp = new ...
-3
votes
3answers
92 views
What accounts for the differences in how local variables are allocated in different languages? [closed]
What accounts for the difference in how local variables are allocated in different languages? For example: In Fortran 77 they are usually allocated statically, in C++ they are usually allocated in the ...
1
vote
1answer
67 views
Using dynamically allocated matrices [closed]
I am currently having trouble to use allocated matrices in C++. I have a variable board that I allocate to be a 8x8 matrix like this:
int **board;
board = new int*[8];
for(int i = 0; i < 8; i ...
0
votes
3answers
151 views
Where are dynamic size arrays created on? (stack or heap)
For example, I have an array with dynamic size based on user input:
int n;
cin >> n;
int items[n];
Is this array allocated on stack? Or is it on heap like if I have written:
int n, *items;
...
1
vote
3answers
115 views
Setting values of struct members in other functions
Let's say I have this struct:
typedef struct Foo {
int a;
int b;
int c;
} Foo;
Now, I made this initialization function that'll allocate memory for Foo, and preset ...
0
votes
1answer
71 views
allocate controlled memory - array size in bytes
I want to learn how to handle memory allocation and de-allocation. My first "task" is to experience a bit.
Basically, I want to allocate 1 kB memory using the new operator until an exception is ...
4
votes
2answers
273 views
malloc(sizeof(int)) vs malloc(sizeof(int *)) vs (int *)malloc(sizeof(int))
I acknowledge that all three of these have a different meaning. But, I don't understand on what particular instances would each of these apply. Can anyone share an example for each of these? Thank ...






