===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
duma-2.5.15/print.c-80-
duma-2.5.15/print.c:81:static int  sprintAddr(char* dest, DUMA_ADDR addr, DUMA_ADDR base);
duma-2.5.15/print.c-82-static int  sprintLong(char* dest, long number, long base);
##############################################
duma-2.5.15/print.c-99- */
duma-2.5.15/print.c:100:static int sprintAddr(char* dest, DUMA_ADDR value, DUMA_ADDR base)
duma-2.5.15/print.c-101-{
##############################################
duma-2.5.15/print.c-193-        n = va_arg(args, DUMA_ADDR);
duma-2.5.15/print.c:194:        len += sprintAddr(&buffer[len], n, 16);
duma-2.5.15/print.c-195-        break;
##############################################
duma-2.5.15/print.c-197-        n = va_arg(args, DUMA_SIZE);
duma-2.5.15/print.c:198:        len += sprintAddr(&buffer[len], n, 10);
duma-2.5.15/print.c-199-        break;
##############################################
duma-2.5.15/kduma/log.h-12- *
duma-2.5.15/kduma/log.h:13: * Define WANT_ASM before including this file to use assembly
duma-2.5.15/kduma/log.h-14- *   whenever possible
##############################################
duma-2.5.15/kduma/log.h-27-#if defined(WANT_ASM) && defined(_MSC_VER) && defined(_M_IX86)
duma-2.5.15/kduma/log.h:28:/* MS C Inline Asm */
duma-2.5.15/kduma/log.h-29-#  pragma warning( disable : 4035 )
##############################################
duma-2.5.15/kduma/log.h-37-#elif defined(WANT_ASM) && defined(__GNUC__) && (defined(__i386__) || defined(i386))
duma-2.5.15/kduma/log.h:38:/* GNU Inline Asm */
duma-2.5.15/kduma/log.h-39-/* Function: ilog2
##############################################
duma-2.5.15/kduma/log.h-69-#else
duma-2.5.15/kduma/log.h:70:/* no ASM for this compiler and/or platform */
duma-2.5.15/kduma/log.h-71-/* rather slow base 2 log computation
##############################################
duma-2.5.15/stacktrace/internal/MapFile.cpp-44-	MapFileImpl( const char* filename ) :
duma-2.5.15/stacktrace/internal/MapFile.cpp:45:		loadAddr(0), m_file( filename ), m_err( MapFile::ERROR_NONE )
duma-2.5.15/stacktrace/internal/MapFile.cpp-46-	{