Home
last modified time | relevance | path

Searched defs:x (Results 1 – 6 of 6) sorted by relevance

/hal_xtensa-2.7.6/include/xtensa/
Dcoreasm.h1026 #define _GBL(x) .global x argument
1027 #define _TYP(x) .type x,@function argument
1028 #define _ALN(x) .align x argument
1029 #define _SIZ(x) .size x, . - x argument
1030 #define _MKEND(x) .purgem endfunc ; .macro endfunc ; _SIZ(x) ; .purgem endfunc ; .macro endfunc ; … argument
1031 #define _SYMT(x) _GBL(x); _MKEND(x); _TYP(x); _ALN(4); x: argument
1032 #define _SYM2(x) _GBL(x); _TYP(x); x: argument
1033 #define _SYM(x) _GBL(x); _MKEND(x); _ALN(4); x: argument
1049 # define DECLFUNC(x) _SYMT(x ## _nw) argument
Dhal.h1134 #define XTHAL_ENCODE_MEMORY_TYPE(x) \ argument
1177 #define XTHAL_MPU_ENTRY_GET_VSTARTADDR(x) ((x).as & 0xffffffe0) argument
1179 #define XTHAL_MPU_ENTRY_SET_VSTARTADDR(x, vaddr) (x).as = \ argument
1182 #define XTHAL_MPU_ENTRY_GET_VALID(x) (((x).as & 0x1)) argument
1184 #define XTHAL_MPU_ENTRY_SET_VALID(x, valid) (x).as = \ argument
1186 #define XTHAL_MPU_ENTRY_GET_ACCESS(x) ((((x).at) >> 8) & 0xf) argument
1188 #define XTHAL_MPU_ENTRY_SET_ACCESS(x, accessRights) ((x).at = \ argument
1191 #define XTHAL_MPU_ENTRY_GET_MEMORY_TYPE(x) ((((x).at) >> 12) & 0x1ff) argument
1193 #define XTHAL_MPU_ENTRY_SET_MEMORY_TYPE(x, memtype) ((x).at = \ argument
1388 #define _XTHAL_MEM_ANY_SHAREABLE(x) (((x) & XTHAL_MEM_SYSTEM_SHAREABLE) ? 1 : 0) argument
[all …]
Dxtruntime.h34 #define _XTSTR(x) # x argument
35 #define XTSTR(x) _XTSTR(x) argument
/hal_xtensa-2.7.6/src/hal/
Dmem_ecc_parity.S50 # define SYMBOL(x) .global x ; .type x,@function ; \ argument
54 # define SYMBOL(x) .global x ; .type x,@function ; .align 4 ; x: argument
56 #define SYM_NW(x) .global x ; .align 4 ; x: argument
Dmpu.c135 #define my_assert(x) argument
136 #define assert_map_valid(x) argument
904 static unsigned int smallest_entry_greater_than_equal(xthal_MPU_entry* fg, unsigned x) in smallest_entry_greater_than_equal()
915 unsigned x) in create_aligning_entries_if_required()
1062 unsigned x; in safe_add_region() local
1193 static unsigned int mpu_aligned(unsigned x) in mpu_aligned()
1198 static unsigned int mpu_align(unsigned int x, unsigned int roundUp) in mpu_align()
1265 static int check_memory_type(unsigned x) in check_memory_type()
1412 int xthal_encode_memory_type(unsigned int x) in xthal_encode_memory_type()
1463 #define XCHAL_MPU_BGMAP(s,vstart,vend,rights,mtype,x...) XTHAL_MPU_ENTRY(vstart,1,rights,mtype), argument
[all …]
Dset_region_translate.c176 struct xthal_MPU_entry x = xthal_get_entry_for_address(vaddr, 0); in xthal_v2p() local