__t               335 arch/arc/include/asm/bitops.h #define ffs(x)	({ unsigned long __t = (x); fls(__t & -__t); })
__t                33 arch/unicore32/include/asm/bitops.h #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
__t                55 arch/x86/include/asm/vm86.h 	struct thread_struct *__t = (t);		\
__t                56 arch/x86/include/asm/vm86.h 	if (__t->vm86 != NULL) {			\
__t                57 arch/x86/include/asm/vm86.h 		kfree(__t->vm86);			\
__t                58 arch/x86/include/asm/vm86.h 		__t->vm86 = NULL;			\
__t               298 drivers/gpu/drm/i915/display/intel_display.h #define for_each_cpu_transcoder_masked(__dev_priv, __t, __mask) \
__t               299 drivers/gpu/drm/i915/display/intel_display.h 	for ((__t) = 0; (__t) < I915_MAX_TRANSCODERS; (__t)++)	\
__t               300 drivers/gpu/drm/i915/display/intel_display.h 		for_each_if ((__mask) & (1 << (__t)))
__t               138 drivers/gpu/drm/msm/adreno/adreno_gpu.h 	unsigned long __t = jiffies + ADRENO_IDLE_TIMEOUT; \
__t               144 drivers/gpu/drm/msm/adreno/adreno_gpu.h 	} while (time_before(jiffies, __t));               \
__t                83 drivers/media/i2c/s5k4ecgx.c #define  US_TO_FR_TIME(__t)		((__t) / 100)
__t               121 drivers/media/i2c/s5k6aa.c #define  US_TO_FR_TIME(__t)		((__t) / 100)
__t               502 include/linux/wait.h 	struct hrtimer_sleeper __t;						\
__t               504 include/linux/wait.h 	hrtimer_init_sleeper_on_stack(&__t, CLOCK_MONOTONIC,			\
__t               507 include/linux/wait.h 		hrtimer_start_range_ns(&__t.timer, timeout,			\
__t               512 include/linux/wait.h 		if (!__t.task) {						\
__t               518 include/linux/wait.h 	hrtimer_cancel(&__t.timer);						\
__t               519 include/linux/wait.h 	destroy_hrtimer_on_stack(&__t.timer);					\
__t               108 security/apparmor/include/match.h 		TTYPE *__t = (TTYPE *) TABLE; \
__t               111 security/apparmor/include/match.h 			__t[__i] = NTOHX(__b[__i]); \
__t              1174 tools/perf/util/parse-events.c 	struct perf_evsel_config_term *__t;			\
__t              1176 tools/perf/util/parse-events.c 	__t = zalloc(sizeof(*__t));				\
__t              1177 tools/perf/util/parse-events.c 	if (!__t)						\
__t              1180 tools/perf/util/parse-events.c 	INIT_LIST_HEAD(&__t->list);				\
__t              1181 tools/perf/util/parse-events.c 	__t->type       = PERF_EVSEL__CONFIG_TERM_ ## __type;	\
__t              1182 tools/perf/util/parse-events.c 	__t->val.__name = __val;				\
__t              1183 tools/perf/util/parse-events.c 	__t->weak	= term->weak;				\
__t              1184 tools/perf/util/parse-events.c 	list_add_tail(&__t->list, head_terms);			\