Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
4k views

What does `dword ptr` mean?

Could someone explain what this means? (Intel Syntax, x86, Windows) and dword ptr [ebp-4], 0
5
votes
1answer
10k views

dword ptr usage confusion

In assembly language if we use mov eax, dword ptr[ebx] then it means copy the value pointed by ebx (ebx contains the address value, not the actual value, this instruction copies the actual value in ...
2
votes
4answers
102 views

Pointers in c++ pass by value/reference

like simple variables ,the pointer variables can also be used as a Value parameter or Reference parameter in functions..... but as the pointer variables are used 2 hold memory location or content of ...
2
votes
4answers
340 views

Convert IPV6 to nibble format for PTR records

I need to convert a ipv6 address to its nibble format for use in creating ptr records dynamically. Here is the information I got from Wikipedia: IPv6 reverse resolution Reverse DNS lookups ...
1
vote
2answers
183 views

sizeof(): where is the problem with calculation?

First of all, on my system the following hold: sizeof(char) == 1 and sizeof(char*) == 4. So simply, when we calculate the total size of the class below: class SampleClass { char c; char* c_ptr; }; ...
0
votes
2answers
116 views

Malloc memory for C string inside a structure

I currently have the following code. struct qnode { char *path; struct qnode *next; } typedef struct qnode Node; My code fails at this point however when I try to ...
0
votes
0answers
106 views

Bulk email - Spam prevention - Setup PTR - Setup SPF - What else required ? - Mass Email [closed]

I am going to send bulk email to my game players. It will be like 300k. I have setup PTR (Reverse DNS) and SPF record. My email sending address is : noreplay@monstermmorpg.com My email sendin IP is : ...
0
votes
0answers
144 views

Client host rejected: cannot find your hostname

I use SPECTral SMTP server to send business letters directly from CRM. Some letters comes away ok, but some can't go. I look to SMTP log of SPECTral, here is it: (log is for sending letter from ...
0
votes
0answers
155 views

intrusive_ptr => _BLOCK_TYPE_IS_VALID(pHead->nBlockUse)

I use boost 'intrusive_ptr' in my code but when I delete some objects I got a crash ! In fact I use the same 'intrusive_ptr' into a class and return it, like this : typedef intrusive_ptr<Node> ...
0
votes
2answers
214 views

<bad ptr> Overloading + Operator

The debugger is giving me 'bad ptr' when I create a new string array in this constructor, but only when my overloading operator method creates a new MyString object... confused. Here is my ...
0
votes
1answer
157 views

opencv: execution halting at double pointer arithmetic for image pixel access

A single channel image is my input. ( defalut IPL_DEPTH_8U) I am multiplying each pixel of my input image with scalar floating point numbers like 2.8085 (as a part of my algorithm). So this needs me ...