Sponsored Content
Full Discussion: address of pointer
Top Forums Programming address of pointer Post 302085216 by Hitori on Wednesday 16th of August 2006 02:31:17 AM
Old 08-16-2006
then
for (i=0; heap+i < firstFree; i++)
heap+i == &(heap[i]) -pointer to the memory of element i of the heap, it must be less than firstFree
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

network address and broadcast address?

say I have a IP address which is 10.0.0.12, and subnet mask is 255.255.255.240, what is the network address and what is the broadcast address which host lives on? And could you explain how to get the answer? thanx in advance! (7 Replies)
Discussion started by: pnxi
7 Replies

2. IP Networking

How to Achive IP address through MAC(Ethernet) address

Hi sir, i want to make such programe which takes MAC(Ethernet) address of any host & give me its IP address....... but i'm nt getting that how i can pass the MAC address to Frame........ Please give me an idea for making such program... Thanks & regards Krishna (3 Replies)
Discussion started by: krishnacins
3 Replies

3. Programming

A Pointer to non-Virtual Address, and All of my Hard drive

How do I get a pointer to any 32 bit address on my hard drive, in which I then could read that memory or write to that memory address? And, while the subject is on, how do get a 32 bit pointer in RAM also, in which I can do the same? I'm using C and Objective-C with gcc on an iBook G4. A... (9 Replies)
Discussion started by: xcoder66
9 Replies

4. Programming

pass a pointer-to-pointer, or return a pointer?

If one wants to get a start address of a array or a string or a block of memory via a function, there are at least two methods to achieve it: (1) one is to pass a pointer-to-pointer parameter, like: int my_malloc(int size, char **pmem) { *pmem=(char *)malloc(size); if(*pmem==NULL)... (11 Replies)
Discussion started by: aaronwong
11 Replies

5. Shell Programming and Scripting

ksh - how to list all ip address between 2 ip address

Trying to do a ksh script that needs to list all ip address between ip address a and b .. ie. Ip address A=192.168.1.200 Ip address B=192.168.2.15 So the subnet changes from 1 to 2 but I want to list all possible ip addresses between the 2.. Which would be: 192.168.1.200... (4 Replies)
Discussion started by: frustrated1
4 Replies

6. UNIX for Dummies Questions & Answers

Panic kernal-mode address fault on user address 0x14

:) Firstly Hi all!!, im NEW!! and on here hoping that someone might be able to offer me some help... i have a server that keeps crashing every few days with the error message: PANIC KERNAL-MODE ADDRESS FAULT ON USER ADDRESS 0X14 KERNAL PAGE FAULT FROM (CS:EIP)=(100:EF71B5BD) EAX=EF822000... (10 Replies)
Discussion started by: Twix
10 Replies

7. IP Networking

Tracing a MAC address to IP address: Solaris

Hi there I lost connectivity to one of our remote systems and when I checked the messages log I found the following: Aug 10 23:42:34 host xntpd: time reset (step) 1.681729 s Aug 16 13:20:51 host ip: WARNING: node "mac address" is using our IP address x.x.x.x on aggr1 Aug 16 13:20:51 host... (9 Replies)
Discussion started by: notreallyhere
9 Replies

8. UNIX for Dummies Questions & Answers

Printing pointer address

How can I print the memory address of a pointer using printf (or any other STDOUT functions?). I see in Linux its %p but not in unix, help? thanks (5 Replies)
Discussion started by: perleo
5 Replies

9. Programming

Pointer and address

This code is to print out the program name and arguments list one by one: 1 #include<stdio.h> 2 3 void main(int argc, char *argv) 4 { 5 int iCount = 0; 6 while (iCount < argc) { 7 printf("argc:%d\t%s\n",iCount, argv); 8 ... (14 Replies)
Discussion started by: yifangt
14 Replies

10. UNIX for Advanced & Expert Users

C program to detect duplicate ip address if any after assigning ip address to ethernet interface

Hi , Could someone let me know how to detect duplicate ip address after assigning ip address to ethernet interface using c program (3 Replies)
Discussion started by: Gopi Krishna P
3 Replies
SbHeap(3)							       Coin								 SbHeap(3)

NAME
SbHeap - The SbHeap class is a generic heap class. FIXME: write doc. SYNOPSIS
#include <Inventor/SbHeap.h> Public Member Functions SbHeap (const SbHeapFuncs &SbHeapFuncs, const int initsize=1024) ~SbHeap () void emptyHeap (void) int size (void) const int add (void *obj) void remove (const int pos) void remove (void *obj) void * extractMin () void * getMin () void * operator[] (const int idx) void newWeight (void *obj, int hpos=-1) SbBool buildHeap (SbBool(*progresscb)(float percentage, void *data)=NULL, void *data=NULL) SbBool traverseHeap (SbBool(*func)(void *, void *), void *userdata) const Detailed Description The SbHeap class is a generic heap class. FIXME: write doc. Note: SbHeap is an extension versus the Open Inventor API. Constructor &; Destructor Documentation SbHeap::SbHeap (const SbHeapFuncs &hFuncs, const intinitsize = 1024) Constructor. hFuncs specifies the functions for modifying and returning information about the heap object, initsize specifies the initial number of allocated elements. This array will automatically grow when necessary, but if you know approximately how many elements the heap will contain, you should supply this to avoid some reallocs. SbHeap::~SbHeap (void) Destructor. Member Function Documentation void SbHeap::emptyHeap (void) Removes all the elements from the heap. int SbHeap::size (void) const Returns the number of elements in the heap. int SbHeap::add (void *obj) Adds an element to the heap. Returns the element's heap position. void SbHeap::remove (const intidx) Removes an element from the heap. void SbHeap::remove (void *obj) This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. void * SbHeap::extractMin (void) Returns and removes the first element in the heap, or NULL if heap is empty. void * SbHeap::getMin (void) Returns the first element in the heap, or NULL if heap is empty. void * SbHeap::operator[] (const intidx) Returns the heap element at index idx in the heap. void SbHeap::newWeight (void *obj, inthpos = -1) Fixes heap if necessary when the element at hpos has changed weight. If you know the element's heap position you can supply it in hpos. SbBool SbHeap::buildHeap (SbBool(*)(float percentage, void *data)progresscb = NULL, void *data = NULL) Builds heap out of randomly ordered data-structure. SbBool SbHeap::traverseHeap (SbBool(*)(void *, void *)func, void *userdata) const Traverses each heap elements, and calls func for each element. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SbHeap(3)
All times are GMT -4. The time now is 05:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy