Home
last modified time | relevance | path

Searched refs:OS_NULL_SHORT (Results 1 – 19 of 19) sorted by relevance

/kernel/liteos_a/testsuites/unittest/common/include/
Dlos_typedef.h103 #define OS_NULL_SHORT ((UINT16)0xFFFF) macro
/kernel/liteos_a/kernel/include/
Dlos_typedef.h106 #define OS_NULL_SHORT ((UINT16)0xFFFF) macro
/kernel/liteos_m/arch/arm/cortex-m33/gcc/NTZ/
Dlos_interrupt.c354 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
358 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m55/iar/NTZ/
Dlos_interrupt.c354 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
358 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m33/gcc/TZ/non_secure/
Dlos_interrupt.c354 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
358 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m4/gcc/
Dlos_interrupt.c353 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
357 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m55/gcc/TZ/non_secure/
Dlos_interrupt.c354 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
358 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m55/gcc/NTZ/
Dlos_interrupt.c357 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
361 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m33/iar/NTZ/
Dlos_interrupt.c354 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
358 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m7/gcc/
Dlos_interrupt.c352 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
356 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m33/iar/TZ/non_secure/
Dlos_interrupt.c354 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
358 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m3/keil/
Dlos_interrupt.c352 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
356 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m4/iar/
Dlos_interrupt.c353 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
357 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m7/iar/
Dlos_interrupt.c356 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
360 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_m/arch/arm/cortex-m55/iar/TZ/non_secure/
Dlos_interrupt.c355 UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */ in HalExcHandleEntry()
359 g_excInfo.type = excType & OS_NULL_SHORT; in HalExcHandleEntry()
/kernel/liteos_a/kernel/base/ipc/
Dlos_queue.c117 if (maxMsgSize > (OS_NULL_SHORT - sizeof(UINT32))) { in LOS_QueueCreate()
176 if ((*bufferSize == 0) || (*bufferSize > (OS_NULL_SHORT - sizeof(UINT32)))) { in OsQueueReadParameterCheck()
/kernel/liteos_m/utils/
Dlos_compiler.h352 #define OS_NULL_SHORT ((UINT16)0xFFFF) macro
/kernel/liteos_m/kernel/src/
Dlos_queue.c130 if (maxMsgSize > (OS_NULL_SHORT - sizeof(UINT32))) { in OsQueueCreate()
Dlos_task.c318 semID = (taskCB->taskSem == NULL) ? OS_NULL_SHORT : (((LosSemCB *)taskCB->taskSem)->semID); in PrintTskInfo()