Lines Matching refs:temp
1395 unsigned long addr, length, loop, dbar, temp, temp2, temp3; in gdbstub() local
1428 temp = (unsigned long) __entry_kerneltrap_table; in gdbstub()
1432 if (temp3 == temp + TBR_TT_INTERRUPT_15 || in gdbstub()
1446 if (temp3 == temp + TBR_TT_DECREMENT_TIMER || in gdbstub()
1613 temp = (unsigned long) __frame; in gdbstub()
1614 ptr = mem2hex(&temp, ptr, 4, 0); in gdbstub()
1620 temp = (unsigned long) __debug_frame; in gdbstub()
1621 ptr = mem2hex(&temp, ptr, 4, 0); in gdbstub()
1688 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1693 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1694 __frame = (struct pt_regs *) temp; in gdbstub()
1700 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1717 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1719 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1720 asm volatile("movgs %0,scr0" :: "r"(temp)); in gdbstub()
1721 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1722 asm volatile("movgs %0,scr1" :: "r"(temp)); in gdbstub()
1723 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1724 asm volatile("movgs %0,scr2" :: "r"(temp)); in gdbstub()
1725 ptr = hex2mem(ptr, &temp, 4); in gdbstub()
1726 asm volatile("movgs %0,scr3" :: "r"(temp)); in gdbstub()
1803 !hexToInt(&ptr, &temp) in gdbstub()
1814 __debug_user_context->i.gr[addr - GDB_REG_GR(0)] = temp; in gdbstub()
1817 __debug_user_context->f.fr[addr - GDB_REG_FR(0)] = temp; in gdbstub()
1820 __debug_user_context->i.pc = temp; in gdbstub()
1823 __debug_user_context->i.psr = temp; in gdbstub()
1826 __debug_user_context->i.ccr = temp; in gdbstub()
1829 __debug_user_context->i.cccr = temp; in gdbstub()
1832 __debug_status.brr = temp; in gdbstub()
1835 __debug_user_context->i.lr = temp; in gdbstub()
1838 __debug_user_context->i.lcr = temp; in gdbstub()
1841 __debug_user_context->f.fsr[0] = temp; in gdbstub()
1844 __debug_user_context->f.acc[addr - GDB_REG_ACC(0)] = temp; in gdbstub()
1847 *(uint32_t *) &__debug_user_context->f.accg[0] = temp; in gdbstub()
1850 *(uint32_t *) &__debug_user_context->f.accg[4] = temp; in gdbstub()
1853 __debug_user_context->f.msr[addr - GDB_REG_MSR(0)] = temp; in gdbstub()
1856 __debug_user_context->i.gner[addr - GDB_REG_GNER(0)] = temp; in gdbstub()
1859 __debug_user_context->f.fner[addr - GDB_REG_FNER(0)] = temp; in gdbstub()
1913 if (!hexToInt(&ptr, &temp)) { in gdbstub()
1918 if (temp) { in gdbstub()
1921 gdbstub_set_baud(temp); in gdbstub()
1929 if (!hexToInt(&ptr,&temp) || *ptr++ != ',' || in gdbstub()
1937 if (temp >= 5) { in gdbstub()
1942 if (gdbstub_set_breakpoint(temp, addr, length) < 0) { in gdbstub()
1947 if (temp == 0) in gdbstub()
1957 if (!hexToInt(&ptr,&temp) || *ptr++ != ',' || in gdbstub()
1965 if (temp >= 5) { in gdbstub()
1970 if (gdbstub_clear_breakpoint(temp, addr, length) < 0) { in gdbstub()
1975 if (temp == 0) in gdbstub()