===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ekeyd-1.1.5/device/skein/skein_block.c-10-**
ekeyd-1.1.5/device/skein/skein_block.c:11:**  SKEIN_USE_ASM  -- set bits (256/512/1024) to select which
ekeyd-1.1.5/device/skein/skein_block.c:12:**                    versions use ASM code for block processing
ekeyd-1.1.5/device/skein/skein_block.c-13-**                    [default: use C for all block sizes]
##############################################
ekeyd-1.1.5/device/skein/skein_block.c-19-
ekeyd-1.1.5/device/skein/skein_block.c:20:#ifndef SKEIN_USE_ASM
ekeyd-1.1.5/device/skein/skein_block.c:21:#define SKEIN_USE_ASM   (0)                     /* default is all C code (no ASM) */
ekeyd-1.1.5/device/skein/skein_block.c-22-#endif
##############################################
ekeyd-1.1.5/device/skein/skein_block.c-40-/*****************************  Skein_256 ******************************/
ekeyd-1.1.5/device/skein/skein_block.c:41:#if !(SKEIN_USE_ASM & 256)
ekeyd-1.1.5/device/skein/skein_block.c-42-void Skein_256_Process_Block(Skein_256_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd)
##############################################
ekeyd-1.1.5/device/skein/skein_block.c-228-/*****************************  Skein_512 ******************************/
ekeyd-1.1.5/device/skein/skein_block.c:229:#if !(SKEIN_USE_ASM & 512)
ekeyd-1.1.5/device/skein/skein_block.c-230-void Skein_512_Process_Block(Skein_512_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd)
##############################################
ekeyd-1.1.5/device/skein/skein_block.c-436-/*****************************  Skein1024 ******************************/
ekeyd-1.1.5/device/skein/skein_block.c:437:#if !(SKEIN_USE_ASM & 1024)
ekeyd-1.1.5/device/skein/skein_block.c-438-void Skein1024_Process_Block(Skein1024_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd)