Searched refs:patt (Results 1 - 5 of 5) sorted by relevance

/u-boot/drivers/mtd/ubi/
H A Dmisc.c131 * @patt: the pattern to check
134 * This function returns %1 in there are only @patt bytes in @buf, and %0 if
137 int ubi_check_pattern(const void *buf, uint8_t patt, int size) argument
142 if (((const uint8_t *)buf)[i] != patt)
H A Dubi.h831 int ubi_check_pattern(const void *buf, uint8_t patt, int size);
/u-boot/drivers/mtd/nand/raw/
H A Dstm32_fmc2_nand.c193 u32 pmem, patt; local
209 patt = FIELD_PREP(FMC2_PATT_ATTSET, timings->tset_att);
210 patt |= FIELD_PREP(FMC2_PATT_ATTWAIT, timings->twait);
211 patt |= FIELD_PREP(FMC2_PATT_ATTHOLD, timings->thold_att);
212 patt |= FIELD_PREP(FMC2_PATT_ATTHIZ, timings->thiz);
213 writel(patt, nfc->io_base + FMC2_PATT);
H A Dnand_util.c795 * @param patt the pattern to check
797 * Return: 1 if there are only patt bytes in buf
800 static int check_pattern(const u_char *buf, u_char patt, int size) argument
805 if (buf[i] != patt)
/u-boot/drivers/ram/
H A Dstm32_sdram.c42 u32 patt; /* Attribute memory space timing registers */ member in struct:stm32_fmc_regs

Completed in 56 milliseconds