===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
openexr-2.5.3/ASWF/tsc-meetings/2019-09-26.md-42-
openexr-2.5.3/ASWF/tsc-meetings/2019-09-26.md:43:* There’s a huge chasm between a bug and an exploit, a way of turning
openexr-2.5.3/ASWF/tsc-meetings/2019-09-26.md-44-  the bug into an actionable way of gaining access to a system. It’s
##############################################
openexr-2.5.3/CHANGES.md-2030-
openexr-2.5.3/CHANGES.md:2031:*  [Switch AVX detection asm to not use an empty clobber list for use with older gcc versions](https://github.com/openexr/openexr/commit/51073d1aa8f96963fc6a3ecad8f844ce70c90991) ([Kevin Wheatley](@kevin.wheatley@framestore.com), 2015-10-14) 
openexr-2.5.3/CHANGES.md-2032-
##############################################
openexr-2.5.3/Contrib/DtexToExr/bootstrap-18-	AC_VER=`autoconf --version | head -n 1 | sed 's/^[^0-9]*//'`
openexr-2.5.3/Contrib/DtexToExr/bootstrap:19:	AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
openexr-2.5.3/Contrib/DtexToExr/bootstrap:20:	AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
openexr-2.5.3/Contrib/DtexToExr/bootstrap-21-
##############################################
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4-54-
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4:55:AC_ARG_WITH(arg_test_prefix,[  --with-arg_test_prefix=PFX  Prefix where tested libraries are supposed to be installed (optional)], test_prefix="$withval", test_prefix="NONE")
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4-56-echo "test_prefix = $test_prefix"
##############################################
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4-82-      echo "using pkg-config to set arg_cxxflags and arg_ldflags:"
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4:83:      TEST_CXXFLAGS="`$PKG_CONFIG --cflags arg_pkg_name`"
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4:84:      TEST_LDFLAGS="`$PKG_CONFIG --libs-only-L arg_pkg_name`"
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4:85:      TEST_LIBS="`$PKG_CONFIG --libs arg_pkg_name`"
openexr-2.5.3/Contrib/DtexToExr/m4/path.pkgconfig.m4-86-   else
##############################################
openexr-2.5.3/INSTALL.md-26-In the instructions that follow, we will refer to the top-level
openexr-2.5.3/INSTALL.md:27:directory of the source code tree as ``$source_directory``.
openexr-2.5.3/INSTALL.md-28-
##############################################
openexr-2.5.3/INSTALL.md-49-To build via CMake, first choose a location for the build directory,
openexr-2.5.3/INSTALL.md:50:which we will refer to as ``$build_directory``.
openexr-2.5.3/INSTALL.md-51-
##############################################
openexr-2.5.3/INSTALL.md-60-(i.e. debug and release), one per folder, all pointing at once source
openexr-2.5.3/INSTALL.md:61:tree, hence the ``$build_directory`` noted above, referred to in CMake
openexr-2.5.3/INSTALL.md-62-parlance as the *build directory*. You can place this directory
##############################################
openexr-2.5.3/INSTALL.md-277-  ``/usr/lib/python2.7/site-packages`` and the python binary is ``/usr/bin/python2.7``, this
openexr-2.5.3/INSTALL.md:278:  will result in the default install path being ``${CMAKE\_INSTALL\_PREFIX}/lib/python2.7/site-packages``
openexr-2.5.3/INSTALL.md-279-
##############################################
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-151-    uint16_t sw;
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp:152:    asm volatile ("fnstsw %0" : "=m" (sw) : );
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-153-    return sw;
##############################################
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-158-{
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp:159:    asm volatile ("fldcw %0" : : "m" (cw) );
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-160-}
##############################################
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-165-    uint16_t cw;
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp:166:    asm volatile ("fnstcw %0" : "=m" (cw) : );
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-167-    return cw;
##############################################
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-173-    mxcsr &= clearExceptions ? 0xffffffc0 : 0xffffffff;
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp:174:    asm volatile ("ldmxcsr %0" : : "m" (mxcsr) );
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-175-}
##############################################
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-180-    uint32_t mxcsr;
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp:181:    asm volatile ("stmxcsr %0" : "=m" (mxcsr) : );
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-182-    return mxcsr;
##############################################
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-243-    uint32_t mxcsr = getMxcsr () & 0xffffffc0;
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp:244:    asm volatile ("ldmxcsr %0\n"
openexr-2.5.3/IlmBase/IexMath/IexMathFpu.cpp-245-		  "fnclex"
##############################################
openexr-2.5.3/IlmBase/bootstrap-21-	AC_VER=`autoconf --version | head -n 1 | sed 's/^[^0-9]*//'`
openexr-2.5.3/IlmBase/bootstrap:22:	AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
openexr-2.5.3/IlmBase/bootstrap:23:	AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
openexr-2.5.3/IlmBase/bootstrap-24-
##############################################
openexr-2.5.3/IlmBase/config/IlmBaseConfig.cmake.in-2-
openexr-2.5.3/IlmBase/config/IlmBaseConfig.cmake.in:3:include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
openexr-2.5.3/IlmBase/config/IlmBaseConfig.cmake.in-4-check_required_components("@PROJECT_NAME@")
##############################################
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-63-//
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h:64:// Test if we should enable GCC inline asm paths for AVX
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-65-//
##############################################
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-455-    //
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h:456:    // Ordinarly, I'd avoid using inline asm and prefer intrinsics. 
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-457-    // However, in order to get the intrinsics, we need to tell 
##############################################
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-508-        convertFloatToHalf64_scalar (dst, src);
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h:509:    #endif /* IMF_HAVE_GCC_INLINEASM */
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-510-}
##############################################
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-1579-
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h:1580:/* Output, input, and clobber (OIC) sections of the inline asm */
openexr-2.5.3/OpenEXR/IlmImf/ImfDwaCompressorSimd.h-1581-#define IDCT_AVX_OIC(_IN0)                          \
##############################################
openexr-2.5.3/OpenEXR/config/OpenEXRConfig.cmake.in-7-
openexr-2.5.3/OpenEXR/config/OpenEXRConfig.cmake.in:8:include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
openexr-2.5.3/OpenEXR/config/OpenEXRConfig.cmake.in-9-check_required_components("@PROJECT_NAME@")
##############################################
openexr-2.5.3/OpenEXR/config/OpenEXRConfigInternal.h.in-41-//
openexr-2.5.3/OpenEXR/config/OpenEXRConfigInternal.h.in:42:// Define if we can support GCC style inline asm with AVX instructions
openexr-2.5.3/OpenEXR/config/OpenEXRConfigInternal.h.in-43-//
##############################################
openexr-2.5.3/OpenEXR/config/OpenEXRConfigInternal.h.in_cmake-41-//
openexr-2.5.3/OpenEXR/config/OpenEXRConfigInternal.h.in_cmake:42:// Define if we can support GCC style inline asm with AVX instructions
openexr-2.5.3/OpenEXR/config/OpenEXRConfigInternal.h.in_cmake-43-//
##############################################
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4-55-
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4:56:AC_ARG_WITH(arg_test_prefix,[  --with-arg_test_prefix=PFX  Prefix where tested libraries are supposed to be installed (optional)], test_prefix="$withval", test_prefix="NONE")
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4-57-echo "test_prefix = $test_prefix"
##############################################
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4-82-      [
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4:83:         TEST_CXXFLAGS="`$PKG_CONFIG --cflags arg_pkg_name`"
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4:84:         TEST_LDFLAGS="`$PKG_CONFIG --libs-only-L arg_pkg_name`"
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4:85:         TEST_LIBS="`$PKG_CONFIG --libs arg_pkg_name`"
openexr-2.5.3/OpenEXR/m4/path.pkgconfig.m4-86-      ],
##############################################
openexr-2.5.3/OpenEXR/bootstrap-20-	AC_VER=`autoconf --version | head -n 1 | sed 's/^[^0-9]*//'`
openexr-2.5.3/OpenEXR/bootstrap:21:	AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
openexr-2.5.3/OpenEXR/bootstrap:22:	AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
openexr-2.5.3/OpenEXR/bootstrap-23-
##############################################
openexr-2.5.3/OpenEXR_Viewers/bootstrap-21-	AC_VER=`autoconf --version | head -n 1 | sed 's/^[^0-9]*//'`
openexr-2.5.3/OpenEXR_Viewers/bootstrap:22:	AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
openexr-2.5.3/OpenEXR_Viewers/bootstrap:23:	AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
openexr-2.5.3/OpenEXR_Viewers/bootstrap-24-
##############################################
openexr-2.5.3/OpenEXR_Viewers/m4/path.fltk.m4-18-  if test x$FLTK_CONFIG != xno ; then
openexr-2.5.3/OpenEXR_Viewers/m4/path.fltk.m4:19:    FLTK_CXXFLAGS="`$FLTK_CONFIG --use-gl --cxxflags`"
openexr-2.5.3/OpenEXR_Viewers/m4/path.fltk.m4:20:    FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldflags`"
openexr-2.5.3/OpenEXR_Viewers/m4/path.fltk.m4-21-  else
##############################################
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4-54-
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4:55:AC_ARG_WITH(arg_test_prefix,[  --with-arg_test_prefix=PFX  Prefix where tested libraries are supposed to be installed (optional)], test_prefix="$withval", test_prefix="NONE")
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4-56-echo "test_prefix = $test_prefix"
##############################################
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4-82-      echo "using pkg-config to set arg_cxxflags and arg_ldflags:"
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4:83:      TEST_CXXFLAGS="`$PKG_CONFIG --cflags arg_pkg_name`"
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4:84:      TEST_LDFLAGS="`$PKG_CONFIG --libs-only-L arg_pkg_name`"
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4:85:      TEST_LIBS="`$PKG_CONFIG --libs arg_pkg_name`"
openexr-2.5.3/OpenEXR_Viewers/m4/path.pkgconfig.m4-86-   else
##############################################
openexr-2.5.3/PyIlmBase/bootstrap-21-	AC_VER=`autoconf --version | head -n 1 | sed 's/^[^0-9]*//'`
openexr-2.5.3/PyIlmBase/bootstrap:22:	AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
openexr-2.5.3/PyIlmBase/bootstrap:23:	AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
openexr-2.5.3/PyIlmBase/bootstrap-24-
##############################################
openexr-2.5.3/PyIlmBase/configure.ac-118-AM_PATH_PYTHON
openexr-2.5.3/PyIlmBase/configure.ac:119:PYTHON_INC_DIR=`$PYTHON -c 'from distutils.sysconfig import *; print (get_python_inc())'`
openexr-2.5.3/PyIlmBase/configure.ac:120:PYTHON_LIB_DIR=`$PYTHON -c 'from distutils.sysconfig import *; print (get_config_var("LIBDIR"))'`
openexr-2.5.3/PyIlmBase/configure.ac:121:PYTHON_VER_MAJ=`echo $PYTHON_VERSION|cut -d. -f1`
openexr-2.5.3/PyIlmBase/configure.ac-122-LIBS="$LIBS -lpython$PYTHON_VERSION"
##############################################
openexr-2.5.3/PyIlmBase/configure.ac-194-
openexr-2.5.3/PyIlmBase/configure.ac:195:NUMPY_CXXFLAGS=`$PYTHON -c 'from numpy.distutils.misc_util import *; import string; print (" ".join(@<:@"-I"+x for x in get_numpy_include_dirs()@:>@))'`
openexr-2.5.3/PyIlmBase/configure.ac-196-
##############################################
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4-56-
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4:57:AC_ARG_WITH(arg_test_prefix,[  --with-arg_test_prefix=PFX  Prefix where tested libraries are supposed to be installed (optional)], test_prefix="$withval", test_prefix="NONE")
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4-58-echo "test_prefix = $test_prefix"
##############################################
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4-85-      echo "using pkg-config to set arg_cxxflags and arg_ldflags:"
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4:86:      TEST_CXXFLAGS="`$PKG_CONFIG --cflags arg_pkg_name`"
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4:87:      TEST_LDFLAGS="`$PKG_CONFIG --libs-only-L arg_pkg_name`"
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4:88:      TEST_LIBS="`$PKG_CONFIG --libs arg_pkg_name`"
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4:89:      TEST_RPATH="`$PKG_CONFIG --variable=libdir arg_pkg_name`"
openexr-2.5.3/PyIlmBase/m4/path.pkgconfig.m4-90-   else
##############################################
openexr-2.5.3/util/reformat.sh-8-
openexr-2.5.3/util/reformat.sh:9:scriptpath=`realpath $0`
openexr-2.5.3/util/reformat.sh:10:scriptdir=`dirname $scriptpath`
openexr-2.5.3/util/reformat.sh:11:basedir=`dirname $scriptdir`
openexr-2.5.3/util/reformat.sh-12-echo "Processing files in: ${basedir}"
##############################################
openexr-2.5.3/.pc/am_foreign_set_global.diff/OpenEXR/bootstrap-20-	AC_VER=`autoconf --version | head -n 1 | sed 's/^[^0-9]*//'`
openexr-2.5.3/.pc/am_foreign_set_global.diff/OpenEXR/bootstrap:21:	AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
openexr-2.5.3/.pc/am_foreign_set_global.diff/OpenEXR/bootstrap:22:	AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
openexr-2.5.3/.pc/am_foreign_set_global.diff/OpenEXR/bootstrap-23-