Lines Matching full:patterns
144 * patterns.
955 * Controller drivers should declare as many patterns as they support and pass
956 * this list of patterns (created with the help of the following macro) to
975 * @patterns: array of supported patterns
976 * @npatterns: length of the @patterns array
978 * The parser descriptor is just an array of supported patterns which will be
982 * It is worth mentioning that patterns will be tested in their declaration
983 * order, and the first match will be taken, so it's important to order patterns
984 * appropriately so that simple/inefficient patterns are placed at the end of
985 * the list. Usually, this is where you put single instruction patterns.
988 const struct nand_op_parser_pattern *patterns; member
994 .patterns = (const struct nand_op_parser_pattern[]) { __VA_ARGS__ }, \