Home | History | Annotate | Download | only in Modules

Lines Matching defs:tdelta

194  *      PI           tdelta          -- iff frame times are enabled
198 * MPI(2,type) tdelta -- type is 0x01; tdelta will be 0
204 * PI tdelta -- iff LINENO includes it
233 * tdelta field, otherwise it will be omitted. If this record is not
234 * given, LINENO records will not contain the tdelta field.
243 * include the tdelta field, otherwise it will be omitted. If this
244 * record is not given, ENTER and EXIT records will contain the tdelta
393 int tdelta = -1;
425 err = unpack_packed_int(self, &tdelta, 0);
429 err = unpack_packed_int(self, &tdelta, 2);
434 err = unpack_packed_int(self, &tdelta, 0);
490 PyTuple_SET_ITEM(result, 1, PyInt_FromLong(tdelta));
512 tdelta = ((b0 & 0xF0) << 4) + b1;
721 pack_enter(ProfilerObject *self, int fileno, int tdelta, int lineno)
730 return pack_packed_int(self, tdelta);
736 pack_exit(ProfilerObject *self, int tdelta)
743 return pack_modified_packed_int(self, tdelta, 2, WHAT_EXIT);
760 pack_lineno_tdelta(ProfilerObject *self, int lineno, int tdelta)
768 return pack_packed_int(self, tdelta);
834 int tdelta;
841 tdelta = (int)diff;
847 tdelta = tv.tv_usec - self->prev_timeofday.tv_usec;
849 tdelta += (tv.tv_sec - self->prev_timeofday.tv_sec) * 1000000;
852 if (tdelta < 0)
856 return tdelta;