Home
last modified time | relevance | path

Searched refs:unroll (Results 1 – 7 of 7) sorted by relevance

/f-stack/freebsd/crypto/des/
H A Ddes_ecb.c69 const char *ptr,*unroll,*risc,*size; in des_options() local
87 unroll="16"; in des_options()
89 unroll="4"; in des_options()
95 sprintf(buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,size); in des_options()
/f-stack/freebsd/contrib/zstd/lib/common/
H A Dfse_decompress.c138 size_t const unroll = 2; in FSE_buildDTable_internal() local
139 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */ in FSE_buildDTable_internal()
140 for (s = 0; s < (size_t)tableSize; s += unroll) { in FSE_buildDTable_internal()
142 for (u = 0; u < unroll; ++u) { in FSE_buildDTable_internal()
146 position = (position + (unroll * step)) & tableMask; in FSE_buildDTable_internal()
/f-stack/dpdk/drivers/net/tap/
H A Dtap_bpf_program.c105 #pragma unroll in rte_softrss_be()
107 #pragma unroll in rte_softrss_be()
/f-stack/freebsd/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c445 size_t const unroll = 2; in ZSTD_buildFSETable_body() local
446 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */ in ZSTD_buildFSETable_body()
447 for (s = 0; s < (size_t)tableSize; s += unroll) { in ZSTD_buildFSETable_body()
449 for (u = 0; u < unroll; ++u) { in ZSTD_buildFSETable_body()
453 position = (position + (unroll * step)) & tableMask; in ZSTD_buildFSETable_body()
H A Dhuf_decompress.c188 int const unroll = 4; in HUF_readDTableX1_wksp_bmi2() local
189 int const nLimit = (int)nbSymbols - unroll + 1; in HUF_readDTableX1_wksp_bmi2()
195 for (n=0; n < nLimit; n += unroll) { in HUF_readDTableX1_wksp_bmi2()
197 for (u=0; u < unroll; ++u) { in HUF_readDTableX1_wksp_bmi2()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldo.c508 static void unroll (lua_State *L, void *ud) { in unroll() function
604 unroll(L, NULL); in resume_cb()
624 status = luaD_rawrunprotected(L, unroll, NULL); /* run continuation */ in lua_resume()
/f-stack/freebsd/crypto/skein/amd64/
H A Dskein_block_asm.s36 # the unroll counts (0 --> fully unrolled)