Symbol: NUM_PREVIOUS_LOCATIONS
src/system/kernel/arch/arm/arch_debug.cpp
352
addr_t previousLocations[NUM_PREVIOUS_LOCATIONS];
src/system/kernel/arch/arm/arch_debug.cpp
40
if (visited[(NUM_PREVIOUS_LOCATIONS + last - i)
src/system/kernel/arch/arm/arch_debug.cpp
41
% NUM_PREVIOUS_LOCATIONS] == fp) {
src/system/kernel/arch/arm/arch_debug.cpp
46
*_last = last = (last + 1) % NUM_PREVIOUS_LOCATIONS;
src/system/kernel/arch/arm/arch_debug.cpp
49
if (num < NUM_PREVIOUS_LOCATIONS)
src/system/kernel/arch/arm64/arch_debug.cpp
32
if (visited[(NUM_PREVIOUS_LOCATIONS + last - i)
src/system/kernel/arch/arm64/arch_debug.cpp
33
% NUM_PREVIOUS_LOCATIONS] == fp) {
src/system/kernel/arch/arm64/arch_debug.cpp
343
addr_t previousLocations[NUM_PREVIOUS_LOCATIONS];
src/system/kernel/arch/arm64/arch_debug.cpp
38
*_last = last = (last + 1) % NUM_PREVIOUS_LOCATIONS;
src/system/kernel/arch/arm64/arch_debug.cpp
41
if (num < NUM_PREVIOUS_LOCATIONS)
src/system/kernel/arch/m68k/arch_debug.cpp
120
uint32 previousLocations[NUM_PREVIOUS_LOCATIONS];
src/system/kernel/arch/m68k/arch_debug.cpp
40
if (visited[(NUM_PREVIOUS_LOCATIONS + last - i)
src/system/kernel/arch/m68k/arch_debug.cpp
41
% NUM_PREVIOUS_LOCATIONS] == framePointer) {
src/system/kernel/arch/m68k/arch_debug.cpp
46
*_last = last = (last + 1) % NUM_PREVIOUS_LOCATIONS;
src/system/kernel/arch/m68k/arch_debug.cpp
49
if (num < NUM_PREVIOUS_LOCATIONS)
src/system/kernel/arch/ppc/arch_debug.cpp
119
uint32 previousLocations[NUM_PREVIOUS_LOCATIONS];
src/system/kernel/arch/ppc/arch_debug.cpp
39
if (visited[(NUM_PREVIOUS_LOCATIONS + last - i)
src/system/kernel/arch/ppc/arch_debug.cpp
40
% NUM_PREVIOUS_LOCATIONS] == framePointer) {
src/system/kernel/arch/ppc/arch_debug.cpp
45
*_last = last = (last + 1) % NUM_PREVIOUS_LOCATIONS;
src/system/kernel/arch/ppc/arch_debug.cpp
48
if (num < NUM_PREVIOUS_LOCATIONS)
src/system/kernel/arch/riscv64/arch_debug.cpp
630
addr_t previousLocations[NUM_PREVIOUS_LOCATIONS];
src/system/kernel/arch/riscv64/arch_debug.cpp
82
if (visited[(NUM_PREVIOUS_LOCATIONS + last - i) % NUM_PREVIOUS_LOCATIONS] == fp)
src/system/kernel/arch/riscv64/arch_debug.cpp
86
*_last = last = (last + 1) % NUM_PREVIOUS_LOCATIONS;
src/system/kernel/arch/riscv64/arch_debug.cpp
89
if (num < NUM_PREVIOUS_LOCATIONS)
src/system/kernel/arch/x86/arch_debug.cpp
53
if (visited[(NUM_PREVIOUS_LOCATIONS + last - i) % NUM_PREVIOUS_LOCATIONS] == bp)
src/system/kernel/arch/x86/arch_debug.cpp
57
*_last = last = (last + 1) % NUM_PREVIOUS_LOCATIONS;
src/system/kernel/arch/x86/arch_debug.cpp
60
if (num < NUM_PREVIOUS_LOCATIONS)
src/system/kernel/arch/x86/arch_debug.cpp
679
addr_t previousLocations[NUM_PREVIOUS_LOCATIONS];