Home | History | Annotate | Download | only in X86

Lines Matching full:callee

843 int callee(int32, int64); 
846 return callee(arg2, (int64)local);
853 Moving arg1 onto the stack slot of callee function would overwrite
859 - Analyse the actual parameters of the callee to see which would
860 overwrite a caller parameter which is used by the callee and only
863 int callee (int32 arg1, int32 arg2);
865 return callee(arg1,arg2);
871 int callee (int32 arg1, int32 arg2);
873 return callee(arg2,arg1);