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
40 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usbide() argument
58 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb() argument
67 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb2() argument
76 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_power() argument
87 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_ac97() argument
/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/video/
A Dconsole_truetype.c523 struct font_info *tab; in console_truetype_find_font() local
525 for (tab = font_table; tab->begin; tab++) { in console_truetype_find_font()
526 if (abs(tab->begin - tab->end) > 4) { in console_truetype_find_font()
528 tab->name, tab->begin, in console_truetype_find_font()
529 (ulong)(tab->end - tab->begin)); in console_truetype_find_font()
530 return tab->begin; in console_truetype_find_font()
/u-boot/scripts/kconfig/
A DMakefile173 conf-objs := conf.o zconf.tab.o
181 HOSTCFLAGS_zconf.tab.o := -I$(src)
185 nconf-objs := nconf.o zconf.tab.o nconf.gui.o
196 mconf-objs := mconf.o zconf.tab.o $(addprefix lxdialog/, $(lxdialog))
208 qconf-objs := zconf.tab.o
223 gconf-objs := gconf.o zconf.tab.o
230 $(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/lib/
A Dcrc32.c174 # define DO_CRC(x) crc = tab[(crc ^ (x)) & 255] ^ (crc >> 8)
176 # define DO_CRC(x) crc = tab[((crc >> 24) ^ (x)) & 255] ^ (crc << 8)
186 const uint32_t *tab = crc_table; in crc32_no_comp() local
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/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/board/freescale/mpc8315erdb/
A DREADME16 (where the '*' indicates the position of the tab of the switch.)
26 (where the '*' indicates the position of the tab of the switch.)
/u-boot/
A D.gitignore32 *.tab.[ch]
/u-boot/board/freescale/mpc8313erdb/
A DREADME16 (where the '*' indicates the position of the tab of the switch.)
26 (where the '*' indicates the position of the tab of the switch.)
/u-boot/board/bosch/shc/
A DREADME32 SHIPPED scripts/kconfig/zconf.tab.c
35 HOSTCC scripts/kconfig/zconf.tab.o
/u-boot/scripts/
A DMakefile.build412 $(call intermediate_targets, .tab.o, .tab.c .tab.h)
/u-boot/board/freescale/mpc8541cds/
A Dmpc8541cds.c368 void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { } in dummy_func() argument
/u-boot/board/freescale/mpc8555cds/
A Dmpc8555cds.c366 void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { } in dummy_func() argument
/u-boot/board/freescale/mpc8548cds/
A Dmpc8548cds.c175 void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { } in dummy_func() argument
/u-boot/doc/board/freescale/
A Dmx6ul_14x14_evk.rst62 The UUU binary can be downloaded in release tab from link below:

Completed in 20 milliseconds