/external/u-boot/include/linux/ |
D | screen_info.h | 10 struct screen_info { struct 72 extern struct screen_info screen_info; 74 #define ORIG_X (screen_info.orig_x) 75 #define ORIG_Y (screen_info.orig_y) 76 #define ORIG_VIDEO_MODE (screen_info.orig_video_mode) 77 #define ORIG_VIDEO_COLS (screen_info.orig_video_cols) 78 #define ORIG_VIDEO_EGA_BX (screen_info.orig_video_ega_bx) 79 #define ORIG_VIDEO_LINES (screen_info.orig_video_lines) 80 #define ORIG_VIDEO_ISVGA (screen_info.orig_video_isVGA) 81 #define ORIG_VIDEO_POINTS (screen_info.orig_video_points)
|
/external/u-boot/drivers/pci/ |
D | pci_rom.c | 204 void setup_video(struct screen_info *screen_info) in setup_video() argument 212 screen_info->orig_video_isVGA = VIDEO_TYPE_VLFB; in setup_video() 214 screen_info->lfb_width = vesa->x_resolution; in setup_video() 215 screen_info->lfb_height = vesa->y_resolution; in setup_video() 216 screen_info->lfb_depth = vesa->bits_per_pixel; in setup_video() 217 screen_info->lfb_linelength = vesa->bytes_per_scanline; in setup_video() 218 screen_info->lfb_base = vesa->phys_base_ptr; in setup_video() 219 screen_info->lfb_size = in setup_video() 220 ALIGN(screen_info->lfb_linelength * screen_info->lfb_height, in setup_video() 222 screen_info->lfb_size >>= 16; in setup_video() [all …]
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | stepper_cli.py | 222 def list_sorted_nodes(self, args, screen_info=None): argument 227 _ = screen_info 402 def cont(self, args, screen_info=None): argument 405 _ = screen_info 488 def step(self, args, screen_info=None): argument 511 screen_output = self.cont([self._sorted_nodes[self._next]], screen_info) 515 def print_tensor(self, args, screen_info=None): argument 520 if screen_info and "cols" in screen_info: 521 np_printoptions = {"linewidth": screen_info["cols"]} 554 def inject_value(self, args, screen_info=None): argument [all …]
|
D | analyzer_cli.py | 483 def list_tensors(self, args, screen_info=None): argument 504 _ = screen_info 742 def node_info(self, args, screen_info=None): argument 759 _ = screen_info 876 def list_inputs(self, args, screen_info=None): argument 893 _ = screen_info 912 def print_tensor(self, args, screen_info=None): argument 930 screen_info) 1054 def list_outputs(self, args, screen_info=None): argument 1071 _ = screen_info [all …]
|
D | cli_shared.py | 143 def numpy_printoptions_from_screen_info(screen_info): argument 144 if screen_info and "cols" in screen_info: 145 return {"linewidth": screen_info["cols"]}
|
D | analyzer_cli_test.py | 1028 "print_tensor", [tensor_name], screen_info={"cols": 80}) 1056 screen_info={"cols": 80}) 1073 screen_info={"cols": 80}) 1092 screen_info={"cols": 80}) 1123 screen_info={"cols": 80}) 1150 "print_tensor", [tensor_name + "[1, :]"], screen_info={"cols": 80}) 1171 "print_tensor", [tensor_name + "[1, foo()]"], screen_info={"cols": 80}) 1182 "print_tensor", [tensor_name, "-n", "0"], screen_info={"cols": 80}) 1208 "print_tensor", [tensor_name, "-n", "1"], screen_info={"cols": 80}) 1256 screen_info={"cols": 80}) [all …]
|
D | debugger_cli_common.py | 661 def dispatch_command(self, prefix, argv, screen_info=None): argument 696 output = handler(argv, screen_info=screen_info) 773 def _help_handler(self, args, screen_info=None): argument 787 _ = screen_info # Unused currently. 796 def _version_handler(self, args, screen_info=None): argument 798 del screen_info # Unused currently.
|
D | profile_analyzer_cli.py | 382 def list_profile(self, args, screen_info=None): argument 397 if screen_info and "cols" in screen_info: 398 screen_cols = screen_info["cols"] 601 def print_source(self, args, screen_info=None): argument 613 del screen_info
|
D | base_ui.py | 204 def _config_command_handler(self, args, screen_info=None): argument 206 del screen_info # Currently unused.
|
D | debugger_cli_common_test.py | 290 def _noop_handler(self, argv, screen_info=None): argument 294 def _handler_raising_exception(self, argv, screen_info=None): argument 298 def _handler_returning_wrong_type(self, argv, screen_info=None): argument 303 def _echo_screen_cols(self, argv, screen_info=None): argument 306 ["cols = %d" % screen_info["cols"]]) 308 def _exiting_handler(self, argv, screen_info=None): argument 368 "cols", [], screen_info={"cols": 100})
|
D | readline_ui.py | 109 prefix, args, screen_info=None)
|
D | curses_ui.py | 733 screen_info = {"cols": self._max_x - 2} 738 prefix, args, screen_info=screen_info) 1665 def _mouse_mode_command_handler(self, args, screen_info=None): argument 1677 del screen_info
|
D | readline_ui_test.py | 56 def _babble(self, args, screen_info=None): argument
|
D | curses_ui_test.py | 234 def _babble(self, args, screen_info=None): argument 288 def _print_ones(self, args, screen_info=None): argument
|
/external/u-boot/arch/x86/lib/ |
D | zimage.c | 249 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC; in setup_zimage() 250 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET; in setup_zimage() 274 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC; in setup_zimage() 275 setup_base->screen_info.cl_offset = in setup_zimage() 296 setup_video(&setup_base->screen_info); in setup_zimage()
|
/external/u-boot/arch/x86/include/asm/ |
D | zimage.h | 37 void setup_video(struct screen_info *screen_info);
|
D | bootparam.h | 93 struct screen_info screen_info; /* 0x000 */ member
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
D | local_cli_wrapper.py | 470 def _run_info_handler(self, args, screen_info=None): argument 487 def _print_feed_handler(self, args, screen_info=None): argument 489 screen_info) 522 def _run_handler(self, args, screen_info=None): argument 525 del screen_info # Currently unused. 610 def _on_run_start_step_handler(self, args, screen_info=None): argument 613 _ = screen_info # Currently unused.
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
D | bootparam.h | 153 struct screen_info screen_info; /* 0x000 */ member
|
/external/kernel-headers/original/uapi/linux/ |
D | screen_info.h | 11 struct screen_info { struct
|