github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/iextengine/wazero/const.go (about)

     1  /*
     2    - Copyright (c) 2023-present unTill Software Development Group B.V.
     3      @author Michael Saigachenko
     4  */
     5  
     6  package iextenginewazero
     7  
     8  const bitsInFourBytes = 32
     9  
    10  const (
    11  	maxMemoryPages = 0xffff
    12  	maxStdErrSize  = 1024
    13  
    14  	WasmPreallocatedBufferIncrease    = 1000
    15  	WasmDefaultPreallocatedBufferSize = 64000
    16  )
    17  
    18  var WasmPreallocatedBufferSize uint32 = WasmDefaultPreallocatedBufferSize