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