Home
last modified time | relevance | path

Searched refs:tab (Results 1 – 22 of 22) sorted by relevance

/u-boot/arch/x86/lib/
A Dsfi.c34 if (tab->count == SFI_TABLE_MAX_ENTRIES) in get_entry_start()
36 tab->entry_start = tab->base + tab->ptr; in get_entry_start()
37 tab->table[tab->count] = tab->entry_start; in get_entry_start()
47 hdr = (struct sfi_table_header *)(uintptr_t)(tab->base + tab->ptr); in finish_table()
55 tab->ptr += hdr->len; in finish_table()
56 tab->ptr = ALIGN(tab->ptr, 16); in finish_table()
57 tab->count++; in finish_table()
62 u64 *entry = get_entry_start(tab); in sfi_write_system_header()
68 for (i = 0; i < tab->count; i++) in sfi_write_system_header()
69 *entry++ = tab->table[i]; in sfi_write_system_header()
[all …]
/u-boot/board/freescale/common/
A Dvia.h2 void mpc85xx_config_via(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
5 …pc85xx_config_via_usbide(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
8 …d mpc85xx_config_via_usb(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
11 … mpc85xx_config_via_usb2(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
14 …mpc85xx_config_via_power(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
17 … mpc85xx_config_via_ac97(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
A Dcds_via.c11 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via() argument
44 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usbide() argument
62 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb() argument
71 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb2() argument
80 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_power() argument
91 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_ac97() argument
/u-boot/cmd/
A Defi_common.c19 struct efi_configuration_table *tab = &systab->tables[i]; in efi_show_tables() local
22 uuid_bin_to_str(tab->guid.b, guid_str, 1); in efi_show_tables()
23 printf("%p %pUl %s\n", tab->table, guid_str, in efi_show_tables()
24 uuid_guid_get_str(tab->guid.b) ?: "(unknown)"); in efi_show_tables()
/u-boot/drivers/video/
A Dconsole_truetype.c561 return abs(tab->begin - tab->end) > 4; in font_valid()
573 struct font_info *tab; in console_truetype_find_font() local
575 for (tab = font_table; tab->begin; tab++) { in console_truetype_find_font()
578 tab->name, tab->begin, in console_truetype_find_font()
579 (ulong)(tab->end - tab->begin)); in console_truetype_find_font()
580 return tab; in console_truetype_find_font()
593 for (i = 0, tab = font_table; tab->begin; tab++, i++) { in console_truetype_get_font()
698 for (tab = font_table; tab->begin; tab++) { in truetype_select_font()
704 tab->name, in truetype_select_font()
752 if (!tab) { in console_truetype_probe()
[all …]
/u-boot/scripts/dtc/
A DMakefile9 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o
16 HOSTCFLAGS_dtc-parser.tab.o := -I$(src)
19 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
A DMakefile.dtc17 DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c
/u-boot/drivers/serial/
A Dserial_coreboot.c22 struct acpi_table_header *tab; in read_dbg2() local
34 tab = acpi_find_table("DBG2"); in read_dbg2()
35 if (!tab) { in read_dbg2()
39 hdr = container_of(tab, struct acpi_dbg2_header, header); in read_dbg2()
46 if (hdr->devices_offset >= tab->length) { in read_dbg2()
/u-boot/scripts/kconfig/
A DMakefile159 conf-objs := conf.o zconf.tab.o
167 HOSTCFLAGS_zconf.tab.o := -I$(src)
171 nconf-objs := nconf.o zconf.tab.o nconf.gui.o
182 mconf-objs := mconf.o zconf.tab.o $(addprefix lxdialog/, $(lxdialog))
194 qconf-objs := zconf.tab.o
209 gconf-objs := gconf.o zconf.tab.o
216 $(obj)/zconf.tab.o: $(obj)/zconf.lex.c
/u-boot/drivers/mtd/ubi/
A Dcrc32.c86 const u32 *tab = crc32table_le; in crc32_le() local
89 # define DO_CRC(x) crc = tab[ (crc ^ (x)) & 255 ] ^ (crc>>8) in crc32_le()
91 # define DO_CRC(x) crc = tab[ ((crc >> 24) ^ (x)) & 255] ^ (crc<<8) in crc32_le()
184 const u32 *tab = crc32table_be; in crc32_be() local
187 # define DO_CRC(x) crc = tab[ (crc ^ (x)) & 255 ] ^ (crc>>8) in crc32_be()
189 # define DO_CRC(x) crc = tab[ ((crc >> 24) ^ (x)) & 255] ^ (crc<<8) in crc32_be()
/u-boot/tools/patman/
A Dtest_checkpatch.py271 tab = ' '
280 tab = ' '
282 indent = tab
285 return data % (signoff, license, tab, indent, tab)
/u-boot/drivers/input/
A Dinput.c272 struct input_key_xlate *tab = &config->table[i]; in process_modifier() local
274 if (key == tab->left_keycode || key == tab->right_keycode) in process_modifier()
275 table = tab; in process_modifier()
/u-boot/lib/
A Dcrc32.c175 # define DO_CRC(x) crc = tab[(crc ^ (x)) & 255] ^ (crc >> 8)
177 # define DO_CRC(x) crc = tab[((crc >> 24) ^ (x)) & 255] ^ (crc << 8)
193 const uint32_t *tab = crc_table; in crc32_no_comp()
A Dsscanf.c234 __sccl(char *tab, const u_char *fmt) in __sccl() argument
249 tab[n] = v; /* memset(tab, v, 256) */ in __sccl()
263 tab[c] = v; /* take character c */ in __sccl()
297 tab[++c] = v; in __sccl()
A Dbch.c1130 uint32_t data, hi, lo, *tab; in build_mod8_tables() local
1141 tab = bch->mod8_tab + (b*256+i)*l; in build_mod8_tables()
1151 tab[j] ^= hi|lo; in build_mod8_tables()
/u-boot/board/bosch/shc/
A DREADME32 SHIPPED scripts/kconfig/zconf.tab.c
35 HOSTCC scripts/kconfig/zconf.tab.o
/u-boot/doc/usage/cmd/
A Dsetexpr.rst75 \t = horizontal tab
76 \v = vertical tab
/u-boot/
A D.gitignore35 *.tab.[ch]
/u-boot/scripts/
A DMakefile.build390 $(call intermediate_targets, .tab.o, .tab.c .tab.h)
/u-boot/doc/board/nxp/
A Dmx6ul_14x14_evk.rst62 The UUU binary can be downloaded in release tab from link below:
/u-boot/doc/develop/
A Dci_testing.rst38 then the "Checks" tab will show the results.
A Dcheckpatch.rst140 - --tab-size=n
142 Set the number of spaces for tab (default 8).

Completed in 775 milliseconds