Lines Matching defs:vector
117 { DDB_ADD_CMD("vector", db_show_vector, 0,
119 "[vector]",
120 " vector:\tthe vector to show (all vectors otherwise)") },
513 u_int vector;
516 vector = ((addr >> 4) % 16) * 10 + (addr % 16);
517 if (vector >= 256)
518 db_printf("error: vector %u not in range [0..255]\n",
519 vector);
521 db_print_vector(vector, 1);
523 for (vector = 0; vector < 256; vector++)
524 db_print_vector(vector, 0);