Lines Matching defs:size
204 /* Blk size */
341 uintptr_t dst, uint32_t size)
357 /* loop till size */
358 while (size) {
387 if ((col_off + size) < nand->page_size)
388 byte_cnt = size;
408 if (size < nand->page_size) {
409 byte_cnt = size;
410 read_cnt = size;
430 size -= byte_cnt;
458 /* port size is 8 Bit */
487 /* Port size 16-Bit */
593 static size_t ifc_nand_read(int lba, uintptr_t buf, size_t size)
602 ret = nand_read(nand, src_addr, buf, size);
603 return ret ? 0 : size;
615 * Default block size assumed as 2K
616 * Would be updated based on actual size
649 VERBOSE("Page size is %ld\n", ifc_nand_spec.block_size);