Searched refs:mfunc (Results 1 – 5 of 5) sorted by relevance
63 unsigned long * mfunc; // actual function to be invoked in callVirtualMethod() local175 mfunc = *((unsigned long **)pAdjustedThisPtr); // get the address of the vtable in callVirtualMethod()176 mfunc = (unsigned long *)((char *)mfunc + off); // get the address from the vtable entry at offset in callVirtualMethod()177 mfunc = *((unsigned long **)mfunc); // the function is stored at the address in callVirtualMethod()178 ptr = (void (*)())mfunc; in callVirtualMethod()181 fprintf(stderr,"calling function %p\n",mfunc); in callVirtualMethod()
80 unsigned long * mfunc; // actual function to be invoked in callVirtualMethod() local85 mfunc = *((unsigned long **)pAdjustedThisPtr); // get the address of the vtable in callVirtualMethod()86 …mfunc = (unsigned long *)((char *)mfunc + off); // get the address from the vtable entry at offset in callVirtualMethod()87 mfunc = *((unsigned long **)mfunc); // the function is stored at the address in callVirtualMethod()88 ptr = (void (*)())mfunc; in callVirtualMethod()
66 unsigned long * mfunc; // actual function to be invoked local240 mfunc = *((unsigned long **)pAdjustedThisPtr); // get the address of the vtable241 …mfunc = (unsigned long *)((char *)mfunc + off); // get the address from the vtable entry at offset 242 mfunc = *((unsigned long **)mfunc); // the function is stored at the address243 ptr = (void (*)())mfunc;
66 unsigned long * mfunc; // actual function to be invoked in callVirtualMethod() local205 mfunc = *((unsigned long **)pAdjustedThisPtr); // get the address of the vtable in callVirtualMethod()206 …mfunc = (unsigned long *)((char *)mfunc + off); // get the address from the vtable entry at offset in callVirtualMethod()207 mfunc = *((unsigned long **)mfunc); // the function is stored at the address in callVirtualMethod()208 ptr = (void (*)())mfunc; in callVirtualMethod()
Completed in 32 milliseconds