Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 34) sorted by relevance

12

/components/drivers/spi/sfud/src/
A Dsfud_sfdp.c198 if (read_sfdp_data(flash, table_addr, table, sizeof(table)) != SFUD_SUCCESS) { in read_basic_table()
206 …SFUD_DEBUG("[%04d] 0x%02X 0x%02X 0x%02X 0x%02X", i + 1, table[i * 4 + 3], table[i * 4 + 2], table[… in read_basic_table()
207 table[i * 4]); in read_basic_table()
211 sfdp->erase_4k_cmd = table[1]; in read_basic_table()
212 switch (table[0] & 0x03) { in read_basic_table()
227 switch ((table[0] & (0x01 << 2)) >> 2) { in read_basic_table()
238 switch ((table[0] & (0x01 << 3)) >> 3) { in read_basic_table()
267 switch ((table[2] & (0x03 << 1)) >> 1) { in read_basic_table()
290 …uint32_t table2_temp = ((long)table[7] << 24) | ((long)table[6] << 16) | ((long)table[5] << 8) | (… in read_basic_table()
291 switch ((table[7] & (0x01 << 7)) >> 7) { in read_basic_table()
[all …]
/components/fal/
A DKconfig14 bool "FAL partition table config has defined on 'fal_cfg.h'"
17 If defined partition table on 'fal_cfg.h' please enable this option.
18 When this option is disable, it will auto find and load the partition table
24 string "The flash device which saving partition table"
27 It will auto find the partition table on this flash device.
30 int "The patition table end address relative to flash device offset."
33 The auto find and load the partition table process is forward from this
/components/libc/compilers/common/
A Dcwchar.c20 static int bisearch(wchar_t ucs, const struct interval *table, int max) in bisearch() argument
25 if (ucs < table[0].first || ucs > table[max].last) in bisearch()
33 if (ucs > table[mid].last) in bisearch()
37 else if (ucs < table[mid].first) in bisearch()
/components/fal/docs/
A Dfal_api_en.md25 ## Get the partition table
33 | len | The length of the partition table |
34 | return | Partition table |
36 ## Temporarily set the partition table
38 …ault partition table will be automatically loaded when FAL is initialized. Using this setting will…
41 void fal_set_partition_table_temp(struct fal_partition *table, rt_size_t len)
46 | table | Partition table |
47 | len | Length of the partition table |
101 ## Print partition table
A Dfal_api.md41 void fal_set_partition_table_temp(struct fal_partition *table, rt_size_t len)
46 | table | 分区表 |
/components/fal/src/
A Dfal_partition.c112 static int check_and_update_part_cache(const struct fal_partition *table, rt_size_t len) in check_and_update_part_cache() argument
132 flash_dev = fal_flash_device_find(table[i].flash_name); in check_and_update_part_cache()
135 LOG_D("Warning: Do NOT found the flash device(%s).", table[i].flash_name); in check_and_update_part_cache()
139 if (table[i].offset >= (long)flash_dev->len) in check_and_update_part_cache()
142 table[i].name, table[i].offset, flash_dev->len); in check_and_update_part_cache()
382 void fal_set_partition_table_temp(struct fal_partition *table, rt_size_t len) in fal_set_partition_table_temp() argument
384 RT_ASSERT(table); in fal_set_partition_table_temp()
392 check_and_update_part_cache(table, len); in fal_set_partition_table_temp()
395 partition_table = table; in fal_set_partition_table_temp()
/components/dfs/dfs_v2/filesystems/procfs/
A Dproc_pid.c210 struct dfs_fdtable *table; in proc_pid_fd_lookup() local
214 table = lwp ? &lwp->fdt : RT_NULL; in proc_pid_fd_lookup()
217 if (!table) in proc_pid_fd_lookup()
223 for (int i = 0; i < table->maxfd; i++) in proc_pid_fd_lookup()
225 struct dfs_file *file = table->fds[i]; in proc_pid_fd_lookup()
268 struct dfs_fdtable *table; in proc_pid_fd_getdents() local
273 table = lwp ? &lwp->fdt : RT_NULL; in proc_pid_fd_getdents()
275 if (!table->fds) in proc_pid_fd_getdents()
291 for (int i = 0; i < table->maxfd; i++) in proc_pid_fd_getdents()
293 struct dfs_file *df = table->fds[i]; in proc_pid_fd_getdents()
/components/drivers/usb/cherryusb/port/kinetis/
A Dusb_dc_kinetis.c55 bd = &g_kinetis_bdt[busid].table[ep_idx][dir][odd]; in kinetis_start_transfer()
73 if (g_kinetis_bdt[busid].table[0][0][out_odd].own) { in kinetis_read_setup()
78 g_kinetis_bdt[busid].table[0][0][out_odd].data = 0; in kinetis_read_setup()
79 g_kinetis_bdt[busid].table[0][0][out_odd ^ 1].data = 1; in kinetis_read_setup()
80 g_kinetis_bdt[busid].table[0][1][in_odd].data = 1; in kinetis_read_setup()
81 g_kinetis_bdt[busid].table[0][1][in_odd ^ 1].data = 0; in kinetis_read_setup()
218 bd = &g_kinetis_bdt[busid].table[ep_idx][dir][0]; in usbd_ep_close()
221 bd = &g_kinetis_bdt[busid].table[ep_idx][dir][1]; in usbd_ep_close()
250 bd = &g_kinetis_bdt[busid].table[ep_idx][dir][odd]; in usbd_ep_set_stall()
273 bd = &g_kinetis_bdt[busid].table[ep_idx][dir][odd]; in usbd_ep_clear_stall()
[all …]
/components/drivers/usb/cherryusb/class/audio/
A Dusbd_audio.c17 struct audio_entity_info *table; member
83 if (g_usbd_audio[busid].table[i].bEntityId == entity_id) { in audio_class_interface_request_handler()
84 subtype = g_usbd_audio[busid].table[i].bDescriptorSubtype; in audio_class_interface_request_handler()
85 ep = g_usbd_audio[busid].table[i].ep; in audio_class_interface_request_handler()
301 struct audio_entity_info *table, in usbd_audio_init_intf() argument
317 g_usbd_audio[busid].table = table; in usbd_audio_init_intf()
A Dusbd_audio.h24 struct audio_entity_info *table,
/components/libc/posix/io/poll/
A Dpoll.c350 struct rt_poll_table table; in poll() local
352 poll_table_init(&table); in poll()
354 num = poll_do(fds, nfds, &table, timeout); in poll()
356 poll_teardown(&table); in poll()
/components/drivers/usb/cherryusb/class/vendor/wifi/
A Dusbh_bl616.c25 const char *table[RNM_WIFI_AUTH_MAX] = { in auth_to_str() local
37 return table[auth]; in auth_to_str()
39 return table[RNM_WIFI_AUTH_UNKNOWN]; in auth_to_str()
44 const char *table[RNM_WIFI_CIPHER_MAX] = { in cipher_to_str() local
53 return table[cipher]; in cipher_to_str()
55 return table[RNM_WIFI_CIPHER_UNKNOWN]; in cipher_to_str()
/components/finsh/
A DKconfig45 bool "Using symbol table for commands"
57 bool "Keeping description in symbol table"
/components/fal/inc/
A Dfal.h68 void fal_set_partition_table_temp(struct fal_partition *table, rt_size_t len);
/components/utilities/var_export/
A Dvar_export.c42 static int ve_init_find_obj(unsigned int *begin, unsigned int *end, ve_exporter_t *table) in ve_init_find_obj() argument
50 *table++ = *((struct ve_exporter *)begin); in ve_init_find_obj()
/components/utilities/rt-link/
A DKconfig12 bool "use software crc table"
/components/dfs/dfs_v1/filesystems/elmfat/
A D00history.txt151 Moved file lock semaphore table from fs object to the bss.
159 f_lseek() reports required table size on creating CLMP.
254 Fixed errors in the case conversion table of Unicode (cc*.c).
310 …Fixed f_fdisk() and f_mkfs() create the partition table with wrong CHS parameters. (appeared at R0…
334 Added support for 64-bit LBA and GUID partition table (FF_LBA64 = 1)
/components/dfs/dfs_v2/filesystems/elmfat/
A D00history.txt151 Moved file lock semaphore table from fs object to the bss.
159 f_lseek() reports required table size on creating CLMP.
254 Fixed errors in the case conversion table of Unicode (cc*.c).
310 …Fixed f_fdisk() and f_mkfs() create the partition table with wrong CHS parameters. (appeared at R0…
334 Added support for 64-bit LBA and GUID partition table (FF_LBA64 = 1)
/components/fal/samples/porting/
A DREADME.md62 /* flash device table */
82 /* partition table */
/components/dfs/
A DKconfig21 bool "Using mount table for file system"
24 User can use mount table for automatically mount, for example:
/components/net/at/include/
A Dat.h226 int at_obj_set_urc_table(at_client_t client, const struct at_urc * table, rt_size_t size);
/components/net/lwip/lwip-1.4.1/doc/
A Dsnmp_agent.txt34 doen't have a route table and doesn't have a notion of the U,G,H flags.
38 The agent returns a "virtual table" with the default route 0.0.0.0
/components/drivers/spi/
A DKconfig208 bool "Using defined supported flash chip information table"
/components/net/lwip/lwip-1.4.1/
A DUPGRADING140 * Added support for static ARP table entries
/components/net/lwip/lwip-2.0.3/
A DUPGRADING239 * Added support for static ARP table entries

Completed in 30 milliseconds

12