HelenOS sources

t1                 54 boot/genarch/src/multiplication.c 	unsigned long long t1 = a1 * b1;
t1                 59 boot/genarch/src/multiplication.c 	t3 = (((t1 << 16) + t2) << 16) + t3;
t1                 96 boot/genarch/src/multiplication.c 	unsigned long long t1 = mul(a1, b2) + mul(b1, a2);
t1                 98 boot/genarch/src/multiplication.c 	if ((SOFTINT_CHECK_OF) && (t1 > UINT32_MAX)) {
t1                103 boot/genarch/src/multiplication.c 	t1 = t1 << 32;
t1                105 boot/genarch/src/multiplication.c 	t2 += t1;
t1                111 boot/genarch/src/multiplication.c 	if ((SOFTINT_CHECK_OF) && ((t2 < t1) || (t2 & (1ull << 63)))) {
t1                115 kernel/arch/amd64/src/drivers/i8254.c 	uint32_t t1;
t1                122 kernel/arch/amd64/src/drivers/i8254.c 		t1 = pio_read_8(CLK_PORT1);
t1                123 kernel/arch/amd64/src/drivers/i8254.c 		t1 |= pio_read_8(CLK_PORT1) << 8;
t1                145 kernel/arch/amd64/src/drivers/i8254.c 	uint32_t delta = (t1 - t2) - (o1 - o2);
t1                503 kernel/arch/amd64/src/smp/apic.c 	uint32_t t1 = l_apic[CCRT];
t1                506 kernel/arch/amd64/src/smp/apic.c 	while (l_apic[CCRT] == t1)
t1                509 kernel/arch/amd64/src/smp/apic.c 	t1 = l_apic[CCRT];
t1                513 kernel/arch/amd64/src/smp/apic.c 	l_apic[ICRT] = t1 - t2;
t1                115 kernel/arch/ia32/src/drivers/i8254.c 	uint32_t t1;
t1                122 kernel/arch/ia32/src/drivers/i8254.c 		t1 = pio_read_8(CLK_PORT1);
t1                123 kernel/arch/ia32/src/drivers/i8254.c 		t1 |= pio_read_8(CLK_PORT1) << 8;
t1                145 kernel/arch/ia32/src/drivers/i8254.c 	uint32_t delta = (t1 - t2) - (o1 - o2);
t1                503 kernel/arch/ia32/src/smp/apic.c 	uint32_t t1 = l_apic[CCRT];
t1                506 kernel/arch/ia32/src/smp/apic.c 	while (l_apic[CCRT] == t1)
t1                509 kernel/arch/ia32/src/smp/apic.c 	t1 = l_apic[CCRT];
t1                513 kernel/arch/ia32/src/smp/apic.c 	l_apic[ICRT] = t1 - t2;
t1                 91 kernel/arch/mips32/include/arch/istate_struct.h 	uint32_t t1;  // arg6
t1                 86 kernel/arch/mips32/src/exception.c 	    istate->t0, istate->t1, istate->t2, istate->t3);
t1                 59 kernel/genarch/src/softint/multiplication.c 	unsigned long long t1, t2, t3;
t1                 66 kernel/genarch/src/softint/multiplication.c 	t1 = a1 * b1;
t1                 71 kernel/genarch/src/softint/multiplication.c 	t3 = (((t1 << 16) + t2) << 16) + t3;
t1                 82 kernel/genarch/src/softint/multiplication.c 	unsigned long long t1, t2;
t1                108 kernel/genarch/src/softint/multiplication.c 	t1 = mul(a1, b2) + mul(b1, a2);
t1                110 kernel/genarch/src/softint/multiplication.c 	if (SOFTINT_CHECK_OF && t1 > MAX_UINT32) {
t1                115 kernel/genarch/src/softint/multiplication.c 	t1 = t1 << 32;
t1                117 kernel/genarch/src/softint/multiplication.c 	t2 += t1;
t1                123 kernel/genarch/src/softint/multiplication.c 	if (SOFTINT_CHECK_OF && ((t2 < t1) || (t2 & (1ull << 63)))) {
t1                 98 uspace/app/bdsh/cmds/modules/cp/cp.c 	long t1;
t1                100 uspace/app/bdsh/cmds/modules/cp/cp.c 	if (-1 == (t1 = strtol(s1, (char **) NULL, 10)))
t1                103 uspace/app/bdsh/cmds/modules/cp/cp.c 	if (t1 <= 0)
t1                106 uspace/app/bdsh/cmds/modules/cp/cp.c 	return (int) t1;
t1                101 uspace/lib/c/arch/mips32/include/libarch/elf_linux.h 	elf_regs->r9 = istate->t1;
t1                 91 uspace/lib/c/arch/mips32/include/libarch/istate_struct.h 	uint32_t t1;  // arg6
t1                292 uspace/lib/console/src/console.c 	struct timespec t1;
t1                293 uspace/lib/console/src/console.c 	getuptime(&t1);
t1                294 uspace/lib/console/src/console.c 	*timeout -= NSEC2USEC(ts_sub_diff(&t1, &t0));
t1                 54 uspace/lib/cpp/include/__bits/functional/invoke.hpp     decltype(auto) INVOKE(R T::* f, T1&& t1, Ts&&... args)
t1                 60 uspace/lib/cpp/include/__bits/functional/invoke.hpp                 return (t1.*f)(forward<Ts>(args)...);
t1                 63 uspace/lib/cpp/include/__bits/functional/invoke.hpp                 return ((*t1).*f)(forward<Ts>(args)...);
t1                 73 uspace/lib/cpp/include/__bits/functional/invoke.hpp                 return t1.*f;
t1                 76 uspace/lib/cpp/include/__bits/functional/invoke.hpp                 return (*t1).*f;
t1                341 uspace/lib/cpp/include/__bits/utility/utility.hpp     constexpr auto make_pair(T1&& t1, T2&& t2)
t1                347 uspace/lib/cpp/include/__bits/utility/utility.hpp             forward<T1>(t1), forward<T2>(t2)
t1                334 uspace/lib/cpp/src/__bits/test/future.cpp         std::thread t1{
HelenOS homepage, sources at GitHub