Home
last modified time | relevance | path

Searched refs:total_len (Results 1 – 3 of 3) sorted by relevance

/SCP-firmware-master/product/synquacer/module/nor/src/
A Dmod_nor.c499 uint32_t len, total_len; in nor_program() local
518 total_len = 0; in nor_program()
522 if ((req_len - total_len) < page_size) { in nor_program()
523 len = req_len - total_len; in nor_program()
535 total_len += len; in nor_program()
537 } while (total_len < req_len); in nor_program()
550 uint32_t len, total_len; in nor_erase() local
569 total_len = 0; in nor_erase()
579 total_len += len; in nor_erase()
580 } while (len != 0 && total_len < req_len); in nor_erase()
/SCP-firmware-master/product/synquacer/module/synquacer_memc/src/
A Dsynquacer_ddr.c86 int32_t total_len);
205 int32_t total_len) in read_spd() argument
222 if (total_len > (SPD_PAGE_SIZE * SPD_NUM_OF_PAGE)) in read_spd()
235 read_len = (total_len > SPD_PAGE_SIZE) ? SPD_PAGE_SIZE : total_len; in read_spd()
252 total_len -= read_len; in read_spd()
253 if (total_len <= 0) in read_spd()
/SCP-firmware-master/product/synquacer/module/hsspi/src/
A Dmod_hsspi.c351 uint32_t access_offset, access_len, total_len; in memory_access() local
358 total_len = 0; in memory_access()
364 if ((len - total_len) < bank_len) { in memory_access()
365 access_len = len - total_len; /* within the bank */ in memory_access()
382 total_len += access_len; in memory_access()
386 } while (total_len < len); in memory_access()

Completed in 8 milliseconds