• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/debug/kdb/

Lines Matching defs:bytesperword

1440 			int symbolic, int nosect, int bytesperword,
1458 if (kdb_getphysword(&word, addr, bytesperword))
1460 } else if (kdb_getword(&word, addr, bytesperword))
1478 addr += bytesperword;
1486 cp = wc.c + 8 - bytesperword;
1493 switch (bytesperword) {
1515 kdb_printf("%*s %s\n", (int)((num-i)*(2*bytesperword + 1)+1),
1523 int radix = 16, mdcount = 8, bytesperword = KDB_WORD_SIZE, repeat;
1535 kdbgetintenv("BYTESPERWORD", &bytesperword);
1538 repeat = mdcount * 16 / bytesperword;
1545 bytesperword = (int)(argv[0][2] - '0');
1546 if (bytesperword == 0) {
1547 bytesperword = last_bytesperword;
1548 if (bytesperword == 0)
1549 bytesperword = 4;
1551 last_bytesperword = bytesperword;
1552 repeat = mdcount * 16 / bytesperword;
1558 mdcount = ((repeat * bytesperword) + 15) / 16;
1577 bytesperword = last_bytesperword;
1579 mdcount = ((repeat * bytesperword) + 15) / 16;
1596 repeat = mdcount * 16 / bytesperword;
1625 if (bytesperword > KDB_WORD_SIZE)
1628 switch (bytesperword) {
1646 last_bytesperword = bytesperword;
1653 bytesperword = KDB_WORD_SIZE;
1660 addr &= ~(bytesperword-1);
1664 int n, z, num = (symbolic ? 1 : (16 / bytesperword));
1668 for (a = addr, z = 0; z < repeat; a += bytesperword, ++z) {
1670 if (kdb_getphysword(&word, a, bytesperword)
1673 } else if (kdb_getword(&word, a, bytesperword) || word)
1677 kdb_md_line(fmtstr, addr, symbolic, nosect, bytesperword,
1679 addr += bytesperword * n;
1686 addr, addr + bytesperword * s - 1);
1687 addr += bytesperword * s;
2610 unsigned long addr, val, bytesperword = 0, whichcpu = ~0UL;
2621 diag = kdbgetularg(argv[2], &bytesperword);
2625 if (!bytesperword)
2626 bytesperword = KDB_WORD_SIZE;
2627 else if (bytesperword > KDB_WORD_SIZE)
2629 sprintf(fmtstr, "%%0%dlx ", (int)(2*bytesperword));
2657 diag = kdb_getword(&val, addr, bytesperword);
2671 bytesperword == KDB_WORD_SIZE,
2672 1, bytesperword, 1, 1, 0);