These are no functions or intrinsics, thus there are no parameters. These are type casts and a type cast has a right hand side (which is what is inside the parentheses) and a left hand side (which is the resulting type). And a Pointer can already be cast to LongWord (though you'll loose 32 bits on a 64-bit system) no intrinsics beside the type cast needed. It's just that the compiler will always issue a message in that case (a warning if the sizes don't match, a hint otherwise), because before the introduction of 64-bit systems many people used LongWord (or LongInt) and thus these people need to be made aware that something might be fishy in their code.
What would you like to call it: an implicit conversion rather than something function-like (whether or not it appeared in the RTL)?
Is there any way to find out when the compiler applies one of these, e.g. by an annotation in an assembler listing?
MarkMLl