Lines Matching defs:code
6 // This Source Code Form is subject to the terms of the Mozilla
52 int code = OP(*opa);
53 if(code!=NOTR)
65 if(code>=4 || func[code]==0)
68 func[code](actual_m, actual_n, a, *lda, actual_b, 1, actual_c, 1, alpha);
121 int code = OP(*opa) | (UPLO(*uplo) << 2) | (DIAG(*diag) << 3);
122 func[code](*n, a, *lda, actual_b);
181 int code = OP(*opa) | (UPLO(*uplo) << 2) | (DIAG(*diag) << 3);
182 if(code>=16 || func[code]==0)
185 func[code](*n, *n, a, *lda, actual_b, 1, res.data(), 1, Scalar(1));
384 int code = OP(*op) | (UPLO(*uplo) << 2) | (DIAG(*diag) << 3);
385 if(code>=16 || func[code]==0)
388 func[code](*n, *k, a, *lda, actual_x);
451 int code = OP(*opa) | (UPLO(*uplo) << 2) | (DIAG(*diag) << 3);
452 if(code>=16 || func[code]==0)
455 func[code](*n, ap, actual_x, res.data(), Scalar(1));
517 int code = OP(*opa) | (UPLO(*uplo) << 2) | (DIAG(*diag) << 3);
518 func[code](*n, ap, actual_x);