Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 31) sorted by relevance

12

/hal_nxp-latest/mcux/mcux-sdk/drivers/syspm/
Dfsl_syspm.c196 uint32_t high; in SYSPM_GetEventCounter() local
203 high = base->PMCR[(uint8_t)monitor].PMECTR[(uint8_t)event].HI; in SYSPM_GetEventCounter()
204 if (high == highOld) in SYSPM_GetEventCounter()
210 highOld = high; in SYSPM_GetEventCounter()
214 return ((uint64_t)high << 32U) + low; in SYSPM_GetEventCounter()
230 uint32_t high; in SYSPM_GetInstructionCounter() local
237 high = base->PMCR[(uint8_t)monitor].PMICTR_HI; in SYSPM_GetInstructionCounter()
238 if (high == highOld) in SYSPM_GetInstructionCounter()
244 highOld = high; in SYSPM_GetInstructionCounter()
248 return ((uint64_t)high << 32U) + low; in SYSPM_GetInstructionCounter()
/hal_nxp-latest/mcux/middleware/wifi_nxp/incl/port/osa/
Dosa.h338 static inline uint32_t OSA_RandRange(uint32_t low, uint32_t high) in OSA_RandRange() argument
341 if (low == high) in OSA_RandRange()
343 if (low > high) in OSA_RandRange()
346 low = high; in OSA_RandRange()
347 high = tmp; in OSA_RandRange()
349 return (low + OSA_Rand() % (high - low)); in OSA_RandRange()
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Source/BasicMathFunctions/
Darm_clip_f32.c66 float32_t high, in arm_clip_f32() argument
74 vecHigh = vdupq_n_f32(high); in arm_clip_f32()
126 float32_t high, in arm_clip_f32() argument
131 if (pSrc[i] > high) in arm_clip_f32()
132 pDst[i] = high; in arm_clip_f32()
Darm_clip_q15.c56 q15_t high, in arm_clip_q15() argument
64 vecHigh = vdupq_n_s16(high); in arm_clip_q15()
116 q15_t high, in arm_clip_q15() argument
121 if (pSrc[i] > high) in arm_clip_q15()
122 pDst[i] = high; in arm_clip_q15()
Darm_clip_q31.c56 q31_t high, in arm_clip_q31() argument
64 vecHigh = vdupq_n_s32(high); in arm_clip_q31()
116 q31_t high, in arm_clip_q31() argument
121 if (pSrc[i] > high) in arm_clip_q31()
122 pDst[i] = high; in arm_clip_q31()
Darm_clip_q7.c56 q7_t high, in arm_clip_q7() argument
64 vecHigh = vdupq_n_s8(high); in arm_clip_q7()
116 q7_t high, in arm_clip_q7() argument
121 if (pSrc[i] > high) in arm_clip_q7()
122 pDst[i] = high; in arm_clip_q7()
Darm_clip_f16.c58 float16_t high, in arm_clip_f16() argument
66 vecHigh = vdupq_n_f16(high); in arm_clip_f16()
121 float16_t high, in arm_clip_f16() argument
126 if (pSrc[i] > high) in arm_clip_f16()
127 pDst[i] = high; in arm_clip_f16()
/hal_nxp-latest/s32/drivers/s32ze/BaseNXP/src/
DOsIf_Timer_System_Internal_Systick.c106 #define SYSTICK_DELTA_OUTER(high, low, max) ((max) - ((high) - (low))) argument
107 #define SYSTICK_DELTA_INNER(high, low) ((high) - (low)) argument
DOsIf_Timer_System_Internal_GenericTimer.c120 #define GENERICTIMER_DELTA_OUTER(high, low, max) ((max) - ((high) - (low))) argument
121 #define GENERICTIMER_DELTA_INNER(high, low) ((high) - (low)) argument
/hal_nxp-latest/s32/drivers/s32k3/BaseNXP/src/
DOsIf_Timer_System_Internal_Systick.c100 #define SYSTICK_DELTA_OUTER(high, low, max) ((max) - ((high) - (low))) argument
101 #define SYSTICK_DELTA_INNER(high, low) ((high) - (low)) argument
/hal_nxp-latest/s32/drivers/s32k1/BaseNXP/src/
DOsIf_Timer_System_Internal_Systick.c106 #define SYSTICK_DELTA_OUTER(high, low, max) ((max) - ((high) - (low))) argument
107 #define SYSTICK_DELTA_INNER(high, low) ((high) - (low)) argument
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Include/dsp/
Dbasic_math_functions.h708 float32_t high,
724 q31_t high,
740 q15_t high,
756 q7_t high,
Dbasic_math_functions_f16.h159 float16_t high,
/hal_nxp-latest/mcux/middleware/wifi_nxp/
DREADME.txt49 * HE 802.11ax high efficiency\n
50 * HT 802.11n high throughput\n
51 * HTC high throughput control\n
85 * VHT 802.11ac very high throughput\n
/hal_nxp-latest/mcux/mcux-sdk/scripts/kconfig/
Dkconfiglib.py3498 for low, high, cond in sym.ranges:
3500 depend_on(sym, high)
3668 cur.ranges = [(low, high, self._make_and(cond, dep))
3669 for low, high, cond in cur.ranges]
3805 for low, high, _ in sym.ranges:
3807 not num_ok(high, sym.orig_type):
3814 high.name_and_loc))
4330 high = int(high_expr.str_value, base) if \
4343 if has_active_range and not low <= user_val <= high:
4351 num2str(low), num2str(high)))
[all …]
/hal_nxp-latest/mcux/mcux-sdk/
DREADME.md28 * Open-source peripheral drivers that provide stateless, high-performance, easy-to-use APIs
29 * Drivers for communication peripherals also include high-level transactional APIs for high-perform…
/hal_nxp-latest/mcux/mcux-sdk/drivers/sdhc/
Dfsl_sdhc.h954 static inline void SDHC_SetCardDetectTestLevel(SDHC_Type *base, bool high) in SDHC_SetCardDetectTestLevel() argument
956 if (high) in SDHC_SetCardDetectTestLevel()
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/NN/Include/
Darm_nnsupportfunctions.h69 int32_t high; member
743 mult.word.high = 0; in arm_nn_doubling_high_mult_no_sat()
/hal_nxp-latest/mcux/mcux-sdk/components/video/display/dbi/
Dfsl_dbi.h133 typedef void (*dbi_dc_pin_func_t)(bool high);
/hal_nxp-latest/mcux/mcux-sdk/drivers/usdhc/
Dfsl_usdhc.h1108 static inline void USDHC_AssertHardwareReset(USDHC_Type *base, bool high) in USDHC_AssertHardwareReset() argument
1110 if (high) in USDHC_AssertHardwareReset()
/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/device/
Dusb_device.h69 #error For high speed, USB_CONTROL_MAX_PACKET_SIZE must be 64!!!
/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/
DREADME.md21 This subfolder includes the USB PHY driver. The USB PHY driver is only used for USB high speed port…
/hal_nxp-latest/mcux/mcux-sdk/middleware/mmcau/asm-cm0p/src/
Dmmcau_aes_functions.s74 push {r3-r7} @ store high regs
899 pop {r3-r7} @ restore high regs
970 push {r4} @ store high reg
1198 pop {r4} @ restore high reg
1266 push {r4} @ store high reg
1514 pop {r4} @ restore high reg
/hal_nxp-latest/mcux/mcux-sdk/drivers/lcdif/
Dfsl_lcdif.h392 uint32_t high; /*!< High part of the look up table. */ member
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/
DREADME.md129 If you use cmake, it is easy since high level options are defined and they will select the right co…

12