Lines Matching defs:len
24 static int mapram_point (struct mtd_info *mtd, loff_t from, size_t len,
26 static int mapram_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
87 static int mapram_point(struct mtd_info *mtd, loff_t from, size_t len,
97 *retlen = len;
101 static int mapram_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
106 static int mapram_read (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf)
110 map_copy_from(map, buf, from, len);
111 *retlen = len;
115 static int mapram_write (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf)
119 map_copy_to(map, to, buf, len);
120 *retlen = len;
133 for (i=0; i<instr->len; i += map_bankwidth(map))