HomeSort by: relevance | last modified time | path
    Searched refs:unroll (Results 1 - 25 of 177) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/crypto/external/apache2/openssl/lib/libdes/
oecb_enc.c 72 const char *ptr,*unroll,*risc,*size; local
90 unroll="16";
92 unroll="4";
98 sprintf(buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,size);
  /src/crypto/external/bsd/openssl/lib/libdes/
oecb_enc.c 72 const char *ptr,*unroll,*risc,*size; local
90 unroll="16";
92 unroll="4";
98 sprintf(buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,size);
  /src/crypto/external/bsd/openssl.old/lib/libdes/
oecb_enc.c 72 const char *ptr,*unroll,*risc,*size; local
90 unroll="16";
92 unroll="4";
98 sprintf(buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,size);
  /src/sys/crypto/des/
des_ecb.c 74 const char *ptr,*unroll,*risc,*size; local
92 unroll="16";
94 unroll="4";
102 ptr, risc, unroll, size);
  /src/common/lib/libc/arch/mips/string/
strcmp.S 51 lbu t0, 1(a0) # unroll loop
  /src/external/gpl3/gcc/dist/gcc/
gimple-loop-jam.cc 1 /* Loop unroll-and-jam.
44 /* Unroll and Jam transformation
58 first unroll:
156 /* BB is part of the outer loop of an unroll-and-jam situation.
395 the unroll factor in *UNROLL to make unrolling valid for that distance.
399 *REMOVED and adjust *PROFIT_UNROLL to be the necessary unroll factor
404 unsigned *unroll, unsigned *profit_unroll,
418 a >= N, or b > 0, or b is zero and a > 0. Otherwise the unroll
424 else if (dist >= (lambda_int)*unroll)
526 bool unroll = false; local
    [all...]
loop-unroll.cc 61 control how much we unroll.
64 how many times we should unroll the loop; the experiments I have made
186 /* Emit a message summarizing the unroll that will be
213 /* Decide whether unroll loops and how much. */
228 if (loop->unroll == 1)
275 /* Unroll LOOPS. */
342 /* Decide whether to unroll LOOP iterating constant number of times
352 /* If we were not asked to unroll this loop, just return back silently. */
353 if (!(flags & UAP_UNROLL) && !loop->unroll)
395 if (loop->unroll > 0 && loop->unroll < USHRT_MAX
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-loop-jam.cc 1 /* Loop unroll-and-jam.
43 /* Unroll and Jam transformation
57 first unroll:
155 /* BB is part of the outer loop of an unroll-and-jam situation.
395 the unroll factor in *UNROLL to make unrolling valid for that distance.
399 *REMOVED and adjust *PROFIT_UNROLL to be the necessary unroll factor
404 unsigned *unroll, unsigned *profit_unroll,
418 a >= N, or b > 0, or b is zero and a > 0. Otherwise the unroll
424 else if (dist >= (lambda_int)*unroll)
526 bool unroll = false; local
    [all...]
loop-unroll.cc 61 control how much we unroll.
64 how many times we should unroll the loop; the experiments I have made
186 /* Emit a message summarizing the unroll that will be
213 /* Decide whether unroll loops and how much. */
228 if (loop->unroll == 1)
275 /* Unroll LOOPS. */
342 /* Decide whether to unroll LOOP iterating constant number of times
352 /* If we were not asked to unroll this loop, just return back silently. */
353 if (!(flags & UAP_UNROLL) && !loop->unroll)
395 if (loop->unroll > 0 && loop->unroll < USHRT_MAX
    [all...]
  /src/external/bsd/zstd/dist/lib/common/
fse_decompress.c 118 * We unroll the loop twice, since that is what empirically worked best.
123 size_t const unroll = 2; local
124 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */
125 for (s = 0; s < (size_t)tableSize; s += unroll) {
127 for (u = 0; u < unroll; ++u) {
131 position = (position + (unroll * step)) & tableMask;
  /src/external/lgpl3/gmp/dist/mpn/x86/k7/mmx/
copyd.asm 66 jae L(unroll)
89 L(unroll):
copyi.asm 78 jae L(unroll)
103 L(unroll):
  /src/external/bsd/zstd/dist/lib/compress/
fse_compress.c 137 * we don't need variable sized inner loop, so we can unroll the loop and
142 size_t const unroll = 2; /* Experimentally determined optimal unroll */ local
143 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */
144 for (s = 0; s < (size_t)tableSize; s += unroll) {
146 for (u = 0; u < unroll; ++u) {
150 position = (position + (unroll * step)) & tableMask;
  /src/sys/arch/mvme68k/stand/sboot/
oc_cksum.s 71 | (It's clear why this happens for a count of 40: unroll-8 pays a
72 | loop branch cost and unroll-16 doesn't. But the tests also showed
  /src/external/gpl3/gcc/lib/libgfortran/
Makefile 150 FOPTS.${_f}+= -ffast-math -ftree-vectorize -funroll-loops --param max-unroll-times=4
155 FOPTS.${_f}+= -ffast-math -ftree-vectorize -funroll-loops --param max-unroll-times=4 -mprefer-avx128
  /src/external/lgpl3/gmp/dist/mpn/pa32/
add_n.asm 40 C One might want to unroll this as for other processors, but it turns out that
sub_n.asm 40 C One might want to unroll this as for other processors, but it turns out that
  /src/external/lgpl3/gmp/dist/mpn/vax/
add_n.asm 43 ashl $-2, r0, r0 C unroll loop count
sub_n.asm 43 ashl $-2, r0, r0 C unroll loop count
  /src/lib/libc/arch/sparc/gen/
divrem.m4 213 ! So we unroll slightly...
  /src/sys/arch/m68k/m68k/
oc_cksum.s 67 | (It's clear why this happens for a count of 40: unroll-8 pays a
68 | loop branch cost and unroll-16 doesn't. But the tests also showed
  /src/sys/lib/libkern/arch/sparc/
divrem.m4 213 ! So we unroll slightly...
  /src/sys/lib/libkern/arch/sparc64/
divrem.m4 214 ! So we unroll slightly...
  /src/external/lgpl3/gmp/dist/mpn/x86/k6/
aors_n.asm 104 jae L(unroll)
145 L(unroll):
  /src/external/lgpl3/gmp/dist/mpn/x86/k6/k62mmx/
lshift.asm 103 jae L(unroll)
143 L(unroll):

Completed in 23 milliseconds

1 2 3 4 5 6 7 8