Home
last modified time | relevance | path

Searched refs:map (Results 1 – 25 of 112) sorted by relevance

12345

/ThreadX-v6.3.0/common_smp/src/
Dtx_thread_smp_utilities.c37 UINT _tx_thread_lowest_set_bit_calculate(ULONG map) in _tx_thread_lowest_set_bit_calculate() argument
41 if ((map & ((ULONG) 0x1)) != ((ULONG) 0)) in _tx_thread_lowest_set_bit_calculate()
47 map = map & (ULONG) ((~map) + ((ULONG) 1)); in _tx_thread_lowest_set_bit_calculate()
48 if (map < ((ULONG) 0x100)) in _tx_thread_lowest_set_bit_calculate()
52 else if (map < ((ULONG) 0x10000)) in _tx_thread_lowest_set_bit_calculate()
55 map = map >> ((UINT) 8); in _tx_thread_lowest_set_bit_calculate()
57 else if (map < ((ULONG) 0x01000000)) in _tx_thread_lowest_set_bit_calculate()
60 map = map >> ((UINT) 16); in _tx_thread_lowest_set_bit_calculate()
65 map = map >> ((UINT) 24); in _tx_thread_lowest_set_bit_calculate()
67 if (map >= ((ULONG) 0x10)) in _tx_thread_lowest_set_bit_calculate()
[all …]
/ThreadX-v6.3.0/ports/arm9/ac5/example_build/
Dbuild_threadx_sample.bat3 …-ro 0 --first tx_initialize_low_level.o(Init) --remove --map --symbols --list sample_threadx.map t…
/ThreadX-v6.3.0/ports/arm11/ac5/example_build/
Dbuild_threadx_sample.bat3 …-ro 0 --first tx_initialize_low_level.o(Init) --remove --map --symbols --list sample_threadx.map t…
/ThreadX-v6.3.0/ports/cortex_a5/ac5/example_build/
Dbuild_threadx_sample.bat3 … --map --ro-base=0x00000000 --first tx_initialize_low_level.o(Init) --datacompressor=off --inline …
/ThreadX-v6.3.0/ports/cortex_m0/ac5/example_build/
Dbuild_threadx_sample.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/ports/cortex_a8/ac5/example_build/
Dbuild_threadx_sample.bat3 … --map --ro-base=0x00000000 --first tx_initialize_low_level.o(Init) --datacompressor=off --inline …
/ThreadX-v6.3.0/ports_module/cortex_a7/ac5/example_build/
Dbuild_threadx_demo.bat3 …00 --first tx_initialize_low_level.o(VECTORS) --remove --map --symbols --list sample_threadx.map t…
/ThreadX-v6.3.0/ports_module/cortex_a7/gnu/example_build/
Dbuild_threadx_demo.bat3 …00 --first tx_initialize_low_level.o(VECTORS) --remove --map --symbols --list sample_threadx.map t…
Dbuild_threadx_module_sample.bat4 …m_module_thread_shell_entry --ropi --rwpi --remove --map --symbols --list sample_threadx_module.ma…
5 …ad_shell_entry -o sample_threadx_module.out -Wl,-Map=sample_threadx_module.map gcc_setup.o txm_mod…
6 …e _txm_module_thread_shell_entry txm.a -o sample_threadx_module.axf -M > sample_threadx_module.map
Dbuild_threadx_module_manager_sample.bat6 …st tx_initialize_low_level.o(VECTORS) --remove --map --symbols --list sample_threadx_module_manage…
7 …_manager.o tx.a libc.a -o sample_threadx_module_manager.axf -M > sample_threadx_module_manager.map
8 …o sample_threadx_module_manager.out -Wl,-Map=sample_threadx_module_manager.map module_code.o tx_in…
/ThreadX-v6.3.0/ports_module/cortex_m3/ac5/example_build/
Dbuild_threadx_module_manager_demo.bat3 …irst tx_initialize_low_level.o(RESET) --remove --map --symbols --list sample_threadx_module_manage…
Dbuild_threadx_demo.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/ports/cortex_m3/ac5/example_build/
Dbuild_threadx_sample.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/ports_arch/ARMv7-M/threadx/ac5/example_build/
Dbuild_threadx_sample.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/ports/cortex_r4/ac5/example_build/
Dbuild_threadx_sample.bat3map --ro-base=0x00000000 --rw-base=0x20000000 --first tx_initialize_low_level.o(Init) --datacompre…
/ThreadX-v6.3.0/ports/cortex_r5/ac5/example_build/
Dbuild_threadx_sample.bat3map --ro-base=0x00000000 --rw-base=0x20000000 --first tx_initialize_low_level.o(Init) --datacompre…
/ThreadX-v6.3.0/ports/cortex_m7/ac5/example_build/
Dbuild_threadx_sample.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/ports/cortex_m4/ac5/example_build/
Dbuild_threadx_sample.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/common_smp/inc/
Dtx_thread.h547 static INLINE_DECLARE UINT _tx_thread_lowest_set_bit_calculate(ULONG map) in _tx_thread_lowest_set_bit_calculate() argument
551 if ((map & ((ULONG) 0x1)) != ((ULONG) 0)) in _tx_thread_lowest_set_bit_calculate()
557 map = map & (ULONG) ((~map) + ((ULONG) 1)); in _tx_thread_lowest_set_bit_calculate()
558 if (map < ((ULONG) 0x100)) in _tx_thread_lowest_set_bit_calculate()
562 else if (map < ((ULONG) 0x10000)) in _tx_thread_lowest_set_bit_calculate()
565 map = map >> ((UINT) 8); in _tx_thread_lowest_set_bit_calculate()
567 else if (map < ((ULONG) 0x01000000)) in _tx_thread_lowest_set_bit_calculate()
570 map = map >> ((UINT) 16); in _tx_thread_lowest_set_bit_calculate()
575 map = map >> ((UINT) 24); in _tx_thread_lowest_set_bit_calculate()
577 if (map >= ((ULONG) 0x10)) in _tx_thread_lowest_set_bit_calculate()
[all …]
/ThreadX-v6.3.0/ports_module/cortex_m7/ac5/example_build/
Dbuild_threadx_module_manager_demo.bat3 …irst tx_initialize_low_level.o(RESET) --remove --map --symbols --list sample_threadx_module_manage…
Dbuild_threadx_demo.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/ports_module/cortex_m4/ac5/example_build/
Dbuild_threadx_module_manager_demo.bat3 …irst tx_initialize_low_level.o(RESET) --remove --map --symbols --list sample_threadx_module_manage…
Dbuild_threadx_demo.bat3 …--map --ro-base=0x00000000 --rw-base=0x20000000 --first __tx_vectors --datacompressor=off --inline…
/ThreadX-v6.3.0/ports/cortex_a9/ac5/example_build/
Dbuild_threadx_sample.bat3 … --map --ro-base=0x00000000 --first tx_initialize_low_level.o(Init) --datacompressor=off --inline …
/ThreadX-v6.3.0/ports/cortex_a7/ac5/example_build/
Dbuild_threadx_sample.bat3 … --map --ro-base=0x00000000 --first tx_initialize_low_level.o(Init) --datacompressor=off --inline …

12345