The TIME field in CARLa is derived from the SMFxxTME, the 4 byte binary number of 1/100 seconds (csec) since midnight, at offset 6 in each SMF record. CARLa does not have a field that contains seconds, minutes or hours, and there is no CONVERT( ) function to calculate these.
However, you could define a field across the first 2 bytes of the SMFxxTME, ignoring the last 16 bits. This would count the 256*256/100 = 655 seconds since midnight, or close to 11 minutes. If you add this defined field in a summary, you would get counts with an 11 minute granularity.
But you also want to see the time stamp of the beginning of the interval, or close to the beginning. If you simply add TIME in the SUMMARY command, you will get 1 line for each time value, ignoring the 11 minute interval. If you change TIME into a statistic of the interval by using TIME(MIN) in the summary command, or the DEFINE equivalent, only the lowest value in the interval is shown.
You could try
NEWLIST TYPE=SMF
define eleven_minutes(dec) as smf_field(6,2)
define first_time min(time)
SELECT DESC=(VIOLATION) type=(80,81,83) (EVENT=ACCESS(FAILURE))
SUMMARY USER NAME CLASS SYSTEM DATE(10) eleven_minutes(nd) first_time(5) INTENT ACCESS JOBNAME PROFILE RESOURCE(FIRSTONLY)
Note: I have not tested this code.