Lines Matching +full:- +full:d
20 parser.add_argument('-f', nargs='?',type = str, default="../Source/CommonTables/arm_mve_tables.c", …
21 parser.add_argument('-f16', nargs='?',type = str, default="../Source/CommonTables/arm_mve_tables_f1…
22 parser.add_argument('-he', nargs='?',type = str, default="../Include/arm_mve_tables.h", help="H Fil…
23 parser.add_argument('-he16', nargs='?',type = str, default="../Include/arm_mve_tables_f16.h", help=…
29 …ARM_ALL_FFT_TABLES) || defined(ARM_TABLE_TWIDDLECOEF_%s_%d) || defined(ARM_TABLE_TWIDDLECOEF_%s_%d)
40 print("const uint32_t %s[%d]={" % (name,len(arr)),file=f)
42 for d in arr:
43 val = "%d," % d
54 print("const float32_t %s[%d]={" % (name,len(arr)),file=f)
56 for d in arr:
57 val = "%.20ff," % f32(d)
68 print("const float16_t %s[%d]={" % (name,len(arr)),file=f)
70 for d in arr:
71 val = "(float16_t)%.13ff," % f16(d)
82 print("const q31_t %s[%d]={" % (name,len(arr)),file=f)
84 for d in arr:
85 val = "%s," % Tools.to_q31(d)
96 print("const q15_t %s[%d]={" % (name,len(arr)),file=f)
98 for d in arr:
99 val = "%s," % Tools.to_q15(d)
110 print("const q7_t %s[%d]={" % (name,len(arr)),file=f)
112 for d in arr:
113 val = "%s," % Tools.to_q7(d)
123 print("extern const uint32_t %s[%d];" % (name,len(arr)),file=f)
126 print("extern const float32_t %s[%d];" % (name,len(arr)),file=f)
129 print("extern const float16_t %s[%d];" % (name,len(arr)),file=f)
132 print("extern const q31_t %s[%d];" % (name,len(arr)),file=f)
135 print("extern const q15_t %s[%d];" % (name,len(arr)),file=f)
138 print("extern const q7_t %s[%d];" % (name,len(arr)),file=f)
194 for stage in range(0,numStages-1):
209 tab1[tab1Index + 1] = -coefs[pVectCoef1 + 1]
217 tab2[tab2Index + 1] = -coefs[pVectCoef2 + 1]
225 tab3[tab3Index + 1] = -coefs[pVectCoef3 + 1]
335 cheader="""/* ----------------------------------------------------------------------
344 * Target Processor: Cortex-M and Cortex-A cores
345 * -------------------------------------------------------------------- */
347 * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
349 * SPDX-License-Identifier: Apache-2.0
355 * www.apache.org/licenses/LICENSE-2.0
394 hheader="""/* ----------------------------------------------------------------------
403 * Target Processor: Cortex-M and Cortex-A cores
404 * -------------------------------------------------------------------- */
406 * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
408 * SPDX-License-Identifier: Apache-2.0
414 * www.apache.org/licenses/LICENSE-2.0