Home
last modified time | relevance | path

Searched refs:toExamine (Results 1 – 3 of 3) sorted by relevance

/dports/emulators/visualboyadvance-m/visualboyadvance-m-VBA-M_Beta_2/src/gba/
H A DBreakpointStructures.cpp806 struct ConditionalBreakNode* toExamine = toTest->firstCond; in doBreak() local
810 while(toExamine && globalVeredict){ in doBreak()
811 u32 address = calculateFinalValue(toExamine->address, toExamine->exp_type_flags&0xf); in doBreak()
812 u32 value = calculateFinalValue(toExamine->value, toExamine->exp_type_flags>>4); in doBreak()
813 if((toExamine->cond_flags &0x7) != 0){ in doBreak()
814 veredict = veredict || ((toExamine->cond_flags&1)? (address == value):false); in doBreak()
815 …veredict = veredict || ((toExamine->cond_flags&4)? ((toExamine->cond_flags&8)? ((int)address < (in… in doBreak()
816 …veredict = veredict || ((toExamine->cond_flags&2)? ((toExamine->cond_flags&8)? ((int)address > (in… in doBreak()
818 toExamine = toExamine->next; in doBreak()
/dports/sysutils/boxbackup-devel/boxbackup-0.11_trunk_2979/bin/bbstored/
H A DHousekeepStoreAccount.cpp992 std::vector<int64_t> toExamine; in DeleteEmptyDirectories() local
1016 DeleteEmptyDirectory(*i, toExamine); in DeleteEmptyDirectories()
1022 mEmptyDirectories.swap(toExamine); in DeleteEmptyDirectories()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLane.cpp3114 std::vector<MSLane::IncomingLaneInfo> toExamine = myIncomingLanes; in getFollowersOnConsecutive() local
3115 while (toExamine.size() != 0) { in getFollowersOnConsecutive()
3116 …for (std::vector<MSLane::IncomingLaneInfo>::iterator it = toExamine.begin(); it != toExamine.end()… in getFollowersOnConsecutive()
3218 toExamine.clear(); in getFollowersOnConsecutive()
3219 swap(newFound, toExamine); in getFollowersOnConsecutive()