| /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/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/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/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...] |
| cfgloop.h | 236 /* The number of times to unroll the loop. 0 means no information given, 237 just do what we always do. A value of 1 means do not unroll the loop. 238 A value of USHRT_MAX means unroll with no specific unrolling factor. 239 Other values means unroll with the given unrolling factor. */ 240 unsigned short unroll; variable
|
| tree-predcom.cc | 200 force to not unroll in case of store-store chain even if other chains might 201 ask for unroll. 2399 /* Determines the unroll factor necessary to remove as many temporary variable 2430 /* The best unroll factor for this chain is equal to the number of 2601 /* In case we could not unroll the loop enough to eliminate 3379 bool unroll = false, loop_closed_ssa = false; local 3449 /* Determine the unroll factor, and if the loop should be unrolled, ensure 3454 unroll = can_unroll_loop_p (m_loop, unroll_factor, &desc); 3456 /* Execute the predictive commoning transformations, and possibly unroll the 3458 if (unroll) [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...] |
| cfgloop.h | 233 /* The number of times to unroll the loop. 0 means no information given, 234 just do what we always do. A value of 1 means do not unroll the loop. 235 A value of USHRT_MAX means unroll with no specific unrolling factor. 236 Other values means unroll with the given unrolling factor. */ 237 unsigned short unroll; variable
|
| tree-predcom.cc | 200 force to not unroll in case of store-store chain even if other chains might 201 ask for unroll. 2368 /* Determines the unroll factor necessary to remove as many temporary variable 2399 /* The best unroll factor for this chain is equal to the number of 2570 /* In case we could not unroll the loop enough to eliminate 3348 bool unroll = false, loop_closed_ssa = false; local 3418 /* Determine the unroll factor, and if the loop should be unrolled, ensure 3423 unroll = can_unroll_loop_p (m_loop, unroll_factor, &desc); 3425 /* Execute the predictive commoning transformations, and possibly unroll the 3427 if (unroll) [all...] |
| /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/external/mit/lua/dist/src/ |
| ldo.c | 671 ** 'unroll' which calls ''finishCcall' and we are back here again, to 740 static void unroll (lua_State *L, void *ud) { function 811 unroll(L, NULL); /* run continuation */ 819 ** interrupts 'unroll', and this loop protects it again so it can 829 status = luaD_rawrunprotected(L, unroll, NULL);
|
| /src/external/bsd/zstd/dist/lib/decompress/ |
| huf_decompress.c | 429 int const unroll = 4; local 430 int const nLimit = (int)nbSymbols - unroll + 1; 436 for (n=0; n < nLimit; n += unroll) { 438 for (u=0; u < unroll; ++u) { 806 /* Manually unroll the loop because compilers don't consistently 807 * unroll the inner loops, which destroys performance. 1629 /* Manually unroll the loop because compilers don't consistently 1630 * unroll the inner loops, which destroys performance.
|
| zstd_decompress_block.c | 558 * We unroll the loop twice, since that is what empirically worked best. 563 size_t const unroll = 2; local 564 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */ 565 for (s = 0; s < (size_t)tableSize; s += unroll) { 567 for (u = 0; u < unroll; ++u) { 571 position = (position + (unroll * step)) & tableMask;
|
| /src/external/mit/isl/dist/ |
| isl_ast_codegen.c | 2806 * We first break up the unroll option domain into individual pieces 2807 * and then handle each of them separately. The unroll option domain 2812 * We therefore need to break up the unroll option domain before 2814 * unroll option domain specified by the user is relatively simple. 2966 * The unroll, atomic and remainder domains need the constraints 2987 * If anything is left after handling separate, unroll and atomic, 3073 isl_set *unroll; local 3083 unroll = option[isl_ast_loop_unroll]; 3084 unroll = isl_set_coalesce(unroll); [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/c/ |
| c-parser.cc | 6627 c_parser_while_statement (c_parser *parser, bool ivdep, unsigned short unroll, 6645 if (unroll && cond != error_mark_node) 6649 build_int_cst (integer_type_node, unroll)); 6681 c_parser_do_statement (c_parser *parser, bool ivdep, unsigned short unroll) 6705 if (unroll && cond != error_mark_node) 6709 build_int_cst (integer_type_node, unroll)); 6777 c_parser_for_statement (c_parser *parser, bool ivdep, unsigned short unroll, 6906 else if (unroll) 6909 "with %<GCC unroll%> pragma"); 6929 if (unroll && cond != error_mark_node 12354 unsigned short unroll; local 12559 unsigned short unroll; local 12582 unsigned short unroll = c_parser_pragma_unroll (parser); local [all...] |
| /src/external/gpl3/gcc/dist/gcc/c/ |
| c-parser.cc | 8109 c_parser_while_statement (c_parser *parser, bool ivdep, unsigned short unroll, 8135 if (unroll && cond != error_mark_node) 8139 build_int_cst (integer_type_node, unroll)); 8177 c_parser_do_statement (c_parser *parser, bool ivdep, unsigned short unroll, 8210 if (unroll && cond != error_mark_node) 8214 build_int_cst (integer_type_node, unroll)); 8287 c_parser_for_statement (c_parser *parser, bool ivdep, unsigned short unroll, 8424 else if (unroll) 8427 "with %<GCC unroll%> pragma"); 8447 if (unroll && cond != error_mark_node 14440 unsigned short unroll; local 14679 unsigned short unroll = 0; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| pt.cc | 18756 tree unroll = RECUR (RANGE_FOR_UNROLL (t)); 18757 if (unroll) 18758 unroll 18760 unroll); 18764 RANGE_FOR_UNROLL (stmt) = unroll; 18772 RANGE_FOR_IVDEP (t), unroll, 18755 tree unroll = RECUR (RANGE_FOR_UNROLL (t)); local
|
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| gfortran.h | 2849 unsigned short unroll; member in struct:__anon13650
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| gfortran.h | 2756 unsigned short unroll; member in struct:__anon16083
|