Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 136) sorted by relevance

123456

/hal_nxp-latest/mcux/mcux-sdk/middleware/mmcau/asm-cm0p/src/
Dmmcau_sha256_functions.s220 str r3, [r5] @ +h, +SIGMA1(e), +Ch(e,f,g)
224 str r2, [r5] @ t1, +SIGMA0(e), +Maj(a,b,c)
233 str r3, [r5] @ +h, +SIGMA1(e), +Ch(e,f,g)
236 str r2, [r5] @ t1, +SIGMA0(e), +Maj(a,b,c)
245 str r3, [r5] @ +h, +SIGMA1(e), +Ch(e,f,g)
248 str r2, [r5] @ t1, +SIGMA0(e), +Maj(a,b,c)
257 str r3, [r5] @ +h, +SIGMA1(e), +Ch(e,f,g)
260 str r2, [r5] @ t1, +SIGMA0(e), +Maj(a,b,c)
269 str r3, [r5] @ +h, +SIGMA1(e), +Ch(e,f,g)
272 str r2, [r5] @ t1, +SIGMA0(e), +Maj(a,b,c)
[all …]
Dmmcau_sha1_functions.s37 # *sha1_state pointer to 160-bit block of SHA1 state variables: a,b,c,d,e
63 # initialize the hash variables, a-e, both in memory and in the CAU
86 # *sha1_state pointer to 160-bit block of SHA1 state variables: a,b,c,d,e
130 # initialize the hash variables, a-e, in the CAU
195 str r6, [r2] @ + Ch(), + e
203 str r6, [r2] @ + Ch(), + e
211 str r6, [r2] @ + Ch(), + e
219 str r6, [r2] @ + Ch(), + e
227 str r6, [r2] @ + Ch(), + e
235 str r6, [r2] @ + Ch(), + e
[all …]
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Source/FilteringFunctions/
Darm_lms_f32.c181 float32_t sum, e, d; /* accumulator, error, reference data sample */ in arm_lms_f32() local
187 e = 0.0f; in arm_lms_f32()
248 e = d - sum; in arm_lms_f32()
249 *pErr++ = e; in arm_lms_f32()
252 w = e * mu; in arm_lms_f32()
351 float32_t acc, e; /* Accumulator, error */ in arm_lms_f32() local
357 e = 0.0f; in arm_lms_f32()
424 e = (float32_t) *pRef++ - acc; in arm_lms_f32()
425 *pErr++ = e; in arm_lms_f32()
428 w = e * mu; in arm_lms_f32()
Darm_levinson_durbin_f32.c69 float32_t e; in arm_levinson_durbin_f32() local
74 e = phi[0] - phi[1] * a[0]; in arm_levinson_durbin_f32()
212 e = e * (1.0f - k*k); in arm_levinson_durbin_f32()
216 *err = e; in arm_levinson_durbin_f32()
225 float32_t e; in arm_levinson_durbin_f32() local
229 e = phi[0] - phi[1] * a[0]; in arm_levinson_durbin_f32()
268 e = e * (1.0f - k*k); in arm_levinson_durbin_f32()
272 *err = e; in arm_levinson_durbin_f32()
Darm_levinson_durbin_f16.c69 _Float16 e; in arm_levinson_durbin_f16() local
74 e = (_Float16)phi[0] - (_Float16)phi[1] * (_Float16)a[0]; in arm_levinson_durbin_f16()
207 e = e * (1.0f16 - k*k); in arm_levinson_durbin_f16()
211 *err = e; in arm_levinson_durbin_f16()
223 _Float16 e; in arm_levinson_durbin_f16() local
227 e = (_Float16)phi[0] - (_Float16)phi[1] * (_Float16)a[0]; in arm_levinson_durbin_f16()
266 e = e * (1.0f16 - k*k); in arm_levinson_durbin_f16()
270 *err = e; in arm_levinson_durbin_f16()
Darm_lms_norm_f32.c176 float32_t sum, e, d; /* accumulator, error, reference data sample */ in arm_lms_norm_f32() local
183 e = 0.0f; in arm_lms_norm_f32()
255 e = d - sum; in arm_lms_norm_f32()
256 *pErr++ = e; in arm_lms_norm_f32()
260 w = (e * mu) / (energy + 0.000000119209289f); in arm_lms_norm_f32()
362 float32_t acc, e; /* Accumulator, error */ in arm_lms_norm_f32() local
370 e = 0.0f; in arm_lms_norm_f32()
447 e = (float32_t) *pRef++ - acc; in arm_lms_norm_f32()
448 *pErr++ = e; in arm_lms_norm_f32()
452 w = (e * mu) / (energy + 0.000000119209289f); in arm_lms_norm_f32()
Darm_levinson_durbin_q31.c129 q31_t e; in arm_levinson_durbin_q31() local
138 e = phi[0] - mul32x32(phi[1],a[0]); in arm_levinson_durbin_q31()
295 e = mul32x32(e,ONE_Q31 - mul32x32(k,k)); in arm_levinson_durbin_q31()
299 *err = e; in arm_levinson_durbin_q31()
309 q31_t e; in arm_levinson_durbin_q31() local
316 e = phi[0] - mul32x32(phi[1],a[0]); in arm_levinson_durbin_q31()
368 e = mul32x32(e,ONE_Q31 - mul32x32(k,k)); in arm_levinson_durbin_q31()
372 *err = e; in arm_levinson_durbin_q31()
Darm_lms_q15.c78 q15_t e = 0; /* Error of data sample */ in arm_lms_q15() local
157 e = *pRef++ - (q15_t) acc; in arm_lms_q15()
158 *pErr++ = (q15_t) e; in arm_lms_q15()
161 alpha = (q15_t) (((q31_t) e * (mu)) >> 15); in arm_lms_q15()
Darm_lms_q31.c82 q31_t e = 0; /* Error of data sample */ in arm_lms_q31() local
166 e = *pRef++ - (q31_t) acc; in arm_lms_q31()
167 *pErr++ = e; in arm_lms_q31()
170 alpha = (q31_t) (((q63_t) e * mu) >> 31); in arm_lms_q31()
Darm_lms_norm_q15.c82 q15_t e = 0, d = 0; /* Error, reference data sample */ in arm_lms_norm_q15() local
175 e = d - (q15_t) acc; in arm_lms_norm_q15()
176 *pErr++ = e; in arm_lms_norm_q15()
182 errorXmu = (q15_t) (((q31_t) e * mu) >> 15); in arm_lms_norm_q15()
Darm_lms_norm_q31.c82 q31_t e = 0; /* Error data sample */ in arm_lms_norm_q31() local
179 e = *pRef++ - (q31_t) acc; in arm_lms_norm_q31()
180 *pErr++ = e; in arm_lms_norm_q31()
186 errorXmu = (q31_t) (((q63_t) e * mu) >> 31); in arm_lms_norm_q31()
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Include/
Darm_vec_math.h145 int32x4_t * e) in vmant_exp_f32() argument
155 *e = n; in vmant_exp_f32()
328 float32x4_t e = vrsqrteq_f32(x1); in __arm_vec_sqrt_f32_neon() local
329 e = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x1, e), e), e); in __arm_vec_sqrt_f32_neon()
330 e = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x1, e), e), e); in __arm_vec_sqrt_f32_neon()
331 return vmulq_f32(x, e); in __arm_vec_sqrt_f32_neon()
/hal_nxp-latest/mcux/mcux-sdk/scripts/kconfig/
Dkconfiglib.py948 except (EnvironmentError, KconfigError) as e:
956 sys.exit(cmd + str(e).strip())
1088 except UnicodeDecodeError as e:
1089 _decoding_error(e, self.filename)
1240 except UnicodeDecodeError as e:
1241 _decoding_error(e, filename)
1854 except EnvironmentError as e:
1855 if e.errno == errno.ENOENT:
2118 except EnvironmentError as e:
2128 e = e2
[all …]
Ddiffconfig.py102 e = sys.exc_info()[1]
103 print("I/O error[%s]: %s\n" % (e.args[0],e.args[1]))
Dmenuconfig.py195 except ImportError as e:
211 {}: {}""".format(type(e).__name__, e))
1859 except EnvironmentError as e:
1861 .format(filename, e.strerror, errno.errorcode[e.errno]))
1911 except EnvironmentError as e:
1913 .format(description, e.filename, e.strerror,
1914 errno.errorcode[e.errno]))
2127 except re.error as e:
2131 if hasattr(e, "msg"):
2132 bad_re += ": " + e.msg
Dguiconfig.py1715 except EnvironmentError as e:
1719 .format(description, e.filename, e.strerror,
1720 errno.errorcode[e.errno]))
1736 except EnvironmentError as e:
1740 .format(filename, e.strerror, errno.errorcode[e.errno]))
1867 except re.error as e:
1870 if hasattr(e, "msg"):
1871 msg += ": " + e.msg
/hal_nxp-latest/mcux/mcux-sdk/cmake/backports/
DFindPythonInterp.cmake22 # PYTHON_VERSION_STRING - Python version found e.g. 2.5.2
23 # PYTHON_VERSION_MAJOR - Python major version found e.g. 2
24 # PYTHON_VERSION_MINOR - Python minor version found e.g. 5
25 # PYTHON_VERSION_PATCH - Python patch version found e.g. 2
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/Include/
Darm_math.h824 float32x4_t e = vrsqrteq_f32(x1); in __arm_vec_sqrt_f32_neon() local
825 e = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x1, e), e), e); in __arm_vec_sqrt_f32_neon()
826 e = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x1, e), e), e); in __arm_vec_sqrt_f32_neon()
827 return vmulq_f32(x, e); in __arm_vec_sqrt_f32_neon()
/hal_nxp-latest/mcux/mcux-sdk/components/power_manager/
DREADME.md88 …Power Manager to notify created notification groups of power transitions, i.e entry/exit of a stat…
124 In deep sleep, only the defined SRAM partition and the FLEXSPI0 SRAM are retained, i.e., the memory…
189 Constraints on the low power mode are priority, i.e. if there is two constraints on the low power, …
228e sleep and deep-sleep, the Power Manager will go into the lightest low power mode. In this case, …
/hal_nxp-latest/mcux/mcux-sdk/cmake/
Dkconfig.cmake72 # e.g.
234 # can use relative paths in CONF_FILE, e.g. CONF_FILE=nrf5.conf
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMXRT735S/xtensa/hifi1/gdbio/
Dspecs24 # standard suffix for object files (e.g., ".o") should be appended.
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMXRT735S/xtensa/hifi1/min-rt/
Dspecs24 # standard suffix for object files (e.g., ".o") should be appended.
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMXRT798S/xtensa/hifi1/gdbio/
Dspecs24 # standard suffix for object files (e.g., ".o") should be appended.
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMXRT595S/xtensa/gdbio/
Dspecs24 # standard suffix for object files (e.g., ".o") should be appended.
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMXRT798S/xtensa/hifi1/min-rt/
Dspecs24 # standard suffix for object files (e.g., ".o") should be appended.

123456