=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== nedit-5.7/source/parse_noyacc.c-1342- ADD_OP(OP_BRANCH); ADD_BR_OFF(0); nedit-5.7/source/parse_noyacc.c:1343: if (AddBreakAddr(GetPC()-1)) { nedit-5.7/source/parse_noyacc.c-1344- yyerror("break outside loop"); YYERROR; ############################################## nedit-5.7/source/parse_noyacc.c-1351- ADD_OP(OP_BRANCH); ADD_BR_OFF(0); nedit-5.7/source/parse_noyacc.c:1352: if (AddContinueAddr(GetPC()-1)) { nedit-5.7/source/parse_noyacc.c-1353- yyerror("continue outside loop"); YYERROR; ############################################## nedit-5.7/source/interpret.h-146-void StartLoopAddrList(void); nedit-5.7/source/interpret.h:147:int AddBreakAddr(Inst *addr); nedit-5.7/source/interpret.h:148:int AddContinueAddr(Inst *addr); nedit-5.7/source/interpret.h-149-void FillLoopAddrs(Inst *breakAddr, Inst *continueAddr); ############################################## nedit-5.7/source/tags.c-192- if (name) { nedit-5.7/source/tags.c:193: unsigned const addr = StringHashAddr(name) % DefTagHashSize; nedit-5.7/source/tags.c-194- t = table[addr]; ############################################## nedit-5.7/source/tags.c-258- { nedit-5.7/source/tags.c:259: unsigned const addr = StringHashAddr(tpl.name) % DefTagHashSize; nedit-5.7/source/tags.c-260- ############################################## nedit-5.7/source/tags.c-296- if (name) nedit-5.7/source/tags.c:297: start = finish = StringHashAddr(name) % DefTagHashSize; nedit-5.7/source/tags.c-298- else { ############################################## nedit-5.7/source/parse.y-136- ADD_OP(OP_BRANCH); ADD_BR_OFF(0); nedit-5.7/source/parse.y:137: if (AddBreakAddr(GetPC()-1)) { nedit-5.7/source/parse.y-138- yyerror("break outside loop"); YYERROR; ############################################## nedit-5.7/source/parse.y-142- ADD_OP(OP_BRANCH); ADD_BR_OFF(0); nedit-5.7/source/parse.y:143: if (AddContinueAddr(GetPC()-1)) { nedit-5.7/source/parse.y-144- yyerror("continue outside loop"); YYERROR; ############################################## nedit-5.7/source/interpret.c-81- nedit-5.7/source/interpret.c:82:static void addLoopAddr(Inst *addr); nedit-5.7/source/interpret.c-83-static void saveContext(RestartData *context); ############################################## nedit-5.7/source/interpret.c-413-{ nedit-5.7/source/interpret.c:414: addLoopAddr(NULL); nedit-5.7/source/interpret.c-415-} nedit-5.7/source/interpret.c-416- nedit-5.7/source/interpret.c:417:int AddBreakAddr(Inst *addr) nedit-5.7/source/interpret.c-418-{ nedit-5.7/source/interpret.c-419- if (LoopStackPtr == LoopStack) return 1; nedit-5.7/source/interpret.c:420: addLoopAddr(addr); nedit-5.7/source/interpret.c-421- addr->value = NEEDS_BREAK; ############################################## nedit-5.7/source/interpret.c-424- nedit-5.7/source/interpret.c:425:int AddContinueAddr(Inst *addr) nedit-5.7/source/interpret.c-426-{ nedit-5.7/source/interpret.c-427- if (LoopStackPtr == LoopStack) return 1; nedit-5.7/source/interpret.c:428: addLoopAddr(addr); nedit-5.7/source/interpret.c-429- addr->value = NEEDS_CONTINUE; ############################################## nedit-5.7/source/interpret.c-432- nedit-5.7/source/interpret.c:433:static void addLoopAddr(Inst *addr) nedit-5.7/source/interpret.c-434-{ ############################################## nedit-5.7/source/help_data.h-3821-"Notice that NEdit still supports the older names for these files, which are ", nedit-5.7/source/help_data.h:3822:"`$HOME/.nedit', `$HOME/.neditmacro', and `$HOME/.neditdb', respectively. This ", nedit-5.7/source/help_data.h-3823-"old naming scheme will be used if NEdit detects that `$HOME/.nedit' is a ", ############################################## nedit-5.7/util/refString.c-64-/* Compute hash address from a string key */ nedit-5.7/util/refString.c:65:unsigned StringHashAddr(const char *key) nedit-5.7/util/refString.c-66-{ ############################################## nedit-5.7/util/refString.c-70-/* Compute hash address from a null-termintated list of strings */ nedit-5.7/util/refString.c:71:unsigned StringsHashAddr(const char** keys) nedit-5.7/util/refString.c-72-{ ############################################## nedit-5.7/util/refString.c-101- /* Find it in hash */ nedit-5.7/util/refString.c:102: bucket = StringHashAddr(str) % RCS_SIZE; nedit-5.7/util/refString.c-103- rp = Rcs[bucket]; ############################################## nedit-5.7/util/refString.c-146- nedit-5.7/util/refString.c:147: bucket = StringHashAddr(rcs_str) % RCS_SIZE; nedit-5.7/util/refString.c-148- ############################################## nedit-5.7/util/refString.h-32-/* Compute hash address from a string key */ nedit-5.7/util/refString.h:33:unsigned int StringHashAddr(const char *key); nedit-5.7/util/refString.h-34- nedit-5.7/util/refString.h-35-/* Compute hash address from a null-termintated list of strings */ nedit-5.7/util/refString.h:36:unsigned int StringsHashAddr(const char** keys); ############################################## nedit-5.7/doc/nedit.pod-251-which were used by version 5.3 and below. These file names nedit-5.7/doc/nedit.pod:252:are `$HOME/.nedit', `$HOME/.neditdb' and `$HOME/.neditmacro', nedit-5.7/doc/nedit.pod-253-respectively. The old naming scheme will be used if NEdit ############################################## nedit-5.7/doc/help.etx-4004- Notice that NEdit still supports the older names for these files, which are nedit-5.7/doc/help.etx:4005: `$HOME/.nedit', `$HOME/.neditmacro', and `$HOME/.neditdb', respectively. This nedit-5.7/doc/help.etx-4006- old naming scheme will be used if NEdit detects that `$HOME/.nedit' is a ############################################## nedit-5.7/.pc/fix_typo_in_help.patch/doc/help.etx-4004- Notice that NEdit still supports the older names for these files, which are nedit-5.7/.pc/fix_typo_in_help.patch/doc/help.etx:4005: `$HOME/.nedit', `$HOME/.neditmacro', and `$HOME/.neditdb', respectively. This nedit-5.7/.pc/fix_typo_in_help.patch/doc/help.etx-4006- old naming scheme will be used if NEdit detects that `$HOME/.nedit' is a ############################################## nedit-5.7/.pc/fix_typo_in_help.patch/source/help_data.h-3821-"Notice that NEdit still supports the older names for these files, which are ", nedit-5.7/.pc/fix_typo_in_help.patch/source/help_data.h:3822:"`$HOME/.nedit', `$HOME/.neditmacro', and `$HOME/.neditdb', respectively. This ", nedit-5.7/.pc/fix_typo_in_help.patch/source/help_data.h-3823-"old naming scheme will be used if NEdit detects that `$HOME/.nedit' is a ",