Lines Matching +full:- +full:s
6 * Target Processor: Cortex-M and Cortex-A cores
9 * Copyright (c) 2010-2020 Arm Limited or its affiliates. All rights reserved.
11 * SPDX-License-Identifier: Apache-2.0
17 * www.apache.org/licenses/LICENSE-2.0
47 #define PROW_f16(S,NB) \ argument
49 printf("{%f",(double)(S)[0]); \
52 printf(",%f",(double)(S)[i]);\
57 #define PV_f16(S,V,NB)\ argument
59 printf("%s=",(S)); \
64 #define PM_f16(S,M) \ argument
66 printf("%s={",(S)); \
67 for(unsigned int row=0;row<(M)->numRows;row++) \
73 PROW_f16((M)->pData + row * (M)->numCols, (M)->numCols);\
80 #define PROW_f32(S,NB) \ argument
82 printf("{%f",(double)(S)[0]); \
85 printf(",%f",(double)(S)[i]);\
90 #define PV_f32(S,V,NB)\ argument
92 printf("%s=",(S)); \
97 #define PM_f32(S,M) \ argument
99 printf("%s={",(S)); \
100 for(unsigned int row=0;row<(M)->numRows;row++) \
106 PROW_f32((M)->pData + row * (M)->numCols, (M)->numCols);\
111 #define PROW_f64(S,NB) \ argument
113 printf("{%.20g",(double)(S)[0]); \
116 printf(",%.20g",(double)(S)[i]);\
121 #define PV_f64(S,V,NB) \ argument
123 printf("%s=",(S)); \
128 #define PM_f64(S,M) \ argument
130 printf("%s={",(S)); \
131 for(unsigned int row=0;row<(M)->numRows;row++) \
137 PROW_f64((M)->pData + row * (M)->numCols, (M)->numCols);\