Lines Matching refs:pProfileAdv

639  * @param   pProfileAdv     Pointer to the STAMPROFILEADV structure to operate on.
660 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
809 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
813 # define STAM_REL_PROFILE_ADV_START(pProfileAdv, Prefix) \
814 STAM_GET_TS((pProfileAdv)->tsStart)
816 # define STAM_REL_PROFILE_ADV_START(pProfileAdv, Prefix) do { } while (0)
821 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
825 # define STAM_PROFILE_ADV_START(pProfileAdv, Prefix) STAM_REL_PROFILE_ADV_START(pProfileAdv, Prefix)
827 # define STAM_PROFILE_ADV_START(pProfileAdv, Prefix) do { } while (0)
835 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
839 # define STAM_REL_PROFILE_ADV_STOP(pProfileAdv, Prefix) \
841 if ((pProfileAdv)->tsStart) \
845 Prefix##_cTicks -= (pProfileAdv)->tsStart; \
846 (pProfileAdv)->tsStart = 0; \
847 (pProfileAdv)->Core.cTicks += Prefix##_cTicks; \
848 (pProfileAdv)->Core.cPeriods++; \
849 if ((pProfileAdv)->Core.cTicksMax < Prefix##_cTicks) \
850 (pProfileAdv)->Core.cTicksMax = Prefix##_cTicks; \
851 if ((pProfileAdv)->Core.cTicksMin > Prefix##_cTicks) \
852 (pProfileAdv)->Core.cTicksMin = Prefix##_cTicks; \
856 # define STAM_REL_PROFILE_ADV_STOP(pProfileAdv, Prefix) do { } while (0)
862 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
866 # define STAM_PROFILE_ADV_STOP(pProfileAdv, Prefix) STAM_REL_PROFILE_ADV_STOP(pProfileAdv, Prefix)
868 # define STAM_PROFILE_ADV_STOP(pProfileAdv, Prefix) do { } while (0)
905 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
921 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
927 # define STAM_REL_PROFILE_ADV_SUSPEND(pProfileAdv, Prefix) \
931 # define STAM_REL_PROFILE_ADV_SUSPEND(pProfileAdv, Prefix) do { } while (0)
937 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
943 # define STAM_PROFILE_ADV_SUSPEND(pProfileAdv, Prefix) STAM_REL_PROFILE_ADV_SUSPEND(pProfileAdv, Prefix)
945 # define STAM_PROFILE_ADV_SUSPEND(pProfileAdv, Prefix) do { } while (0)
952 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
957 # define STAM_REL_PROFILE_ADV_RESUME(pProfileAdv, Prefix) \
961 (pProfileAdv)->tsStart += Prefix##_tsNow - Prefix##_tsSuspend; \
964 # define STAM_REL_PROFILE_ADV_RESUME(pProfileAdv, Prefix) do { } while (0)
969 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
974 # define STAM_PROFILE_ADV_RESUME(pProfileAdv, Prefix) STAM_REL_PROFILE_ADV_RESUME(pProfileAdv, Prefix)
976 # define STAM_PROFILE_ADV_RESUME(pProfileAdv, Prefix) do { } while (0)
984 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
990 # define STAM_REL_PROFILE_ADV_STOP_EX(pProfileAdv, pProfile2, Prefix) \
992 if ((pProfileAdv)->tsStart) \
996 Prefix##_cTicks -= (pProfileAdv)->tsStart; \
997 (pProfileAdv)->tsStart = 0; \
998 (pProfileAdv)->Core.cTicks += Prefix##_cTicks; \
999 (pProfileAdv)->Core.cPeriods++; \
1000 if ((pProfileAdv)->Core.cTicksMax < Prefix##_cTicks) \
1001 (pProfileAdv)->Core.cTicksMax = Prefix##_cTicks; \
1002 if ((pProfileAdv)->Core.cTicksMin > Prefix##_cTicks) \
1003 (pProfileAdv)->Core.cTicksMin = Prefix##_cTicks; \
1016 # define STAM_REL_PROFILE_ADV_STOP_EX(pProfileAdv, pProfile2, Prefix) do { } while (0)
1022 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
1028 # define STAM_PROFILE_ADV_STOP_EX(pProfileAdv, pProfile2, Prefix) STAM_REL_PROFILE_ADV_STOP_EX(pProfileAdv, pProfile2, Prefix)
1030 # define STAM_PROFILE_ADV_STOP_EX(pProfileAdv, pProfile2, Prefix) do { } while (0)
1036 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
1039 # define STAM_REL_PROFILE_ADV_IS_RUNNING(pProfileAdv) (pProfileAdv)->tsStart
1041 # define STAM_REL_PROFILE_ADV_IS_RUNNING(pProfileAdv) (false)
1046 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
1049 # define STAM_PROFILE_ADV_IS_RUNNING(pProfileAdv) STAM_REL_PROFILE_ADV_IS_RUNNING(pProfileAdv)
1051 # define STAM_PROFILE_ADV_IS_RUNNING(pProfileAdv) (false)
1059 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
1062 # define STAM_REL_PROFILE_ADV_SET_STOPPED(pProfileAdv) do { (pProfileAdv)->tsStart = 0; } while (0)
1064 # define STAM_REL_PROFILE_ADV_SET_STOPPED(pProfileAdv) do { } while (0)
1071 * @param pProfileAdv Pointer to the STAMPROFILEADV structure to operate on.
1074 # define STAM_PROFILE_ADV_SET_STOPPED(pProfileAdv) STAM_REL_PROFILE_ADV_SET_STOPPED(pProfileAdv)
1076 # define STAM_PROFILE_ADV_SET_STOPPED(pProfileAdv) do { } while (0)