| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/ |
| blake2b-long.c | 27 #define TRY(statement) \ 36 TRY(crypto_generichash_blake2b_init(&blake_state, NULL, 0U, outlen)); 37 TRY(crypto_generichash_blake2b_update(&blake_state, outlen_bytes, 39 TRY(crypto_generichash_blake2b_update( 41 TRY(crypto_generichash_blake2b_final(&blake_state, out, outlen)); 46 TRY(crypto_generichash_blake2b_init( 48 TRY(crypto_generichash_blake2b_update(&blake_state, outlen_bytes, 50 TRY(crypto_generichash_blake2b_update( 52 TRY(crypto_generichash_blake2b_final( 61 TRY(crypto_generichash_blake2b [all...] |
| /src/sys/dev/isa/ |
| moxa_isa.c | 196 #define TRY(n) \ 199 TRY(0); 200 TRY(1); 201 TRY(2); 202 TRY(3); 203 TRY(4); 204 TRY(5); 205 TRY(6); 206 TRY(7); 207 #undef TRY [all...] |
| ioat66.c | 205 #define TRY(n) \ 208 TRY(0); 209 TRY(1); 210 TRY(2); 211 TRY(3); 212 TRY(4); 213 TRY(5); 214 #undef TRY
|
| addcom_isa.c | 250 #define TRY(n) \ 253 TRY(0); 254 TRY(1); 255 TRY(2); 256 TRY(3); 257 TRY(4); 258 TRY(5); 259 TRY(6); 260 TRY(7); 261 #undef TRY [all...] |
| boca.c | 208 #define TRY(n) \ 215 TRY(0); 216 TRY(1); 217 TRY(2); 218 TRY(3); 219 TRY(4); 220 TRY(5); 221 TRY(6); 222 TRY(7); 223 #undef TRY [all...] |
| tcom.c | 246 #define TRY(n) \ 249 TRY(0); 250 TRY(1); 251 TRY(2); 252 TRY(3); 253 TRY(4); 254 TRY(5); 255 TRY(6); 256 TRY(7); 257 #undef TRY [all...] |
| ast.c | 205 #define TRY(n) \ 208 TRY(0); 209 TRY(1); 210 TRY(2); 211 TRY(3); 212 #undef TRY
|
| rtfps.c | 211 #define TRY(n) \ 214 TRY(0); 215 TRY(1); 216 TRY(2); 217 TRY(3); 218 #undef TRY
|
| /src/external/apache2/argon2/dist/phc-winner-argon2/src/blake2/ |
| blake2b.c | 346 #define TRY(statement) \ 355 TRY(blake2b_init(&blake_state, outlen)); 356 TRY(blake2b_update(&blake_state, outlen_bytes, sizeof(outlen_bytes))); 357 TRY(blake2b_update(&blake_state, in, inlen)); 358 TRY(blake2b_final(&blake_state, out, outlen)); 363 TRY(blake2b_init(&blake_state, BLAKE2B_OUTBYTES)); 364 TRY(blake2b_update(&blake_state, outlen_bytes, sizeof(outlen_bytes))); 365 TRY(blake2b_update(&blake_state, in, inlen)); 366 TRY(blake2b_final(&blake_state, out_buffer, BLAKE2B_OUTBYTES)); 373 TRY(blake2b(out_buffer, BLAKE2B_OUTBYTES, in_buffer [all...] |
| /src/external/lgpl3/gmp/dist/tests/devel/ |
| try.c | 24 /* Usage: try [options] <function>... 26 For example, "./try mpn_add_n" to run tests of that function. 90 Try to make the looping code a bit less horrible. Right now it's pretty 294 #include "try-new.c" 1726 #define TRY(fun) #fun, (tryfun_t) fun 1730 { TRY(mpn_add), TYPE_ADD }, 1731 { TRY(mpn_sub), TYPE_SUB }, 1733 { TRY(mpn_add_n), TYPE_ADD_N }, 1734 { TRY(mpn_sub_n), TYPE_SUB_N }, 1737 { TRY(mpn_add_nc), TYPE_ADD_NC } [all...] |
| /src/external/bsd/openldap/dist/contrib/ldapc++/src/ |
| TlsOptions.h | 53 TRY 115 * - TlsOptions::TRY
|
| /src/external/bsd/ntp/dist/scripts/update-leap/ |
| update-leap.sh | 23 # How many times to try to download new file 33 # How to restart NTP - older NTP: service ntpd? try-restart | condrestart 337 TRY=0 339 TRY=$(( $TRY + 1 )) 341 log "info" "Attempting download from $LEAPSRC, try $TRY.." 411 if [ $TRY -ge $MAXTRIES ]; then 423 log "warning" "Download from $LEAPSRC failed after $TRY attempts"
|
| /src/external/gpl2/gettext/dist/gnulib-local/lib/ |
| gen-lbrkprop.c | 1073 #define TRY(bit) else if (strcmp (field1, #bit + 4) == 0) value = bit; 1075 TRY(LBP_BK) 1076 TRY(LBP_CM) 1077 TRY(LBP_ZW) 1078 TRY(LBP_IN) 1079 TRY(LBP_GL) 1080 TRY(LBP_CB) 1081 TRY(LBP_SP) 1082 TRY(LBP_BA) 1083 TRY(LBP_BB [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| WebAssemblyInstPrinter.h | 31 enum EHInstKind { TRY, CATCH, CATCH_ALL };
|
| WebAssemblyInstPrinter.cpp | 132 case WebAssembly::TRY: 136 EHInstStack.push_back(TRY); 173 // There can be multiple catch instructions for one try instruction, so 176 printAnnotation(OS, "try-catch mismatch!"); 179 } else if (EHInstStack.back() == TRY) { 181 printAnnotation(OS, "try-catch mismatch!"); 208 printAnnotation(OS, "try-delegate mismatch!");
|
| WebAssemblyMCTargetDesc.h | 396 case WebAssembly::TRY:
|
| /src/external/lgpl3/gmp/dist/tune/ |
| many.pl | 36 # try-many.c 67 # An expanded try program can be used to check correctness, 69 # make -f Makefile.many try-many 73 # ./try-many mpn_mul_1_experiment 140 # convenient than the speed and try programs, but provides an independent 173 # try-many. An @table entry speed=>none means no speed measuring is 174 # available, or try=>none no try program testing. These can be removed 209 # speed-many or try-many, or don't try to run them on sizes they don't ye [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyCFGStackify.cpp | 12 /// This pass inserts BLOCK, LOOP, and TRY markers to mark the start of scopes, 97 // For each BLOCK|LOOP|TRY, the corresponding END_(BLOCK|LOOP|TRY) or DELEGATE 98 // (in case of TRY). 100 // For each END_(BLOCK|LOOP|TRY) or DELEGATE, the corresponding 101 // BLOCK|LOOP|TRY. 103 // <TRY marker, EH pad> map 105 // <EH pad, TRY marker> map 151 "Insert BLOCK/LOOP/TRY markers for WebAssembly scopes", false, 251 // try) signatures when we implement the multi-value proposal later [all...] |
| /src/external/bsd/libevent/dist/ |
| evdns.c | 717 /* We try the request again with another server. */ 728 /* by the caller of this function, therefore pick will try */ 956 * try the next one */ 1335 /* Try to choose a strong transaction id which isn't already in flight */ 1350 /* choose a namesever to use. This function will try to ignore */ 1451 /* Try to write all pending replies on a given DNS server port. */ 2218 /* try to send a request to a given server. */ 2251 /* try to send a request, updating the fields of the request */ 2363 /* 0 didn't try to transmit anything */ 3075 /* to decide that a name is non-local and so try a raw lookup first. * [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| evdns.c | 715 /* We try the request again with another server. */ 726 /* by the caller of this function, therefore pick will try */ 954 * try the next one */ 1333 /* Try to choose a strong transaction id which isn't already in flight */ 1348 /* choose a namesever to use. This function will try to ignore */ 1449 /* Try to write all pending replies on a given DNS server port. */ 2216 /* try to send a request to a given server. */ 2249 /* try to send a request, updating the fields of the request */ 2361 /* 0 didn't try to transmit anything */ 3073 /* to decide that a name is non-local and so try a raw lookup first. * [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| Stmt.cpp | 1228 Children[TRY] = TryBlock;
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| Stmt.h | 3387 enum { TRY = 0, HANDLER = 1 }; 3389 SEHTryStmt(bool isCXXTry, // true if 'try' otherwise '__try' 3409 return cast<CompoundStmt>(Children[TRY]);
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReaderStmt.cpp | 2250 S->Children[SEHTryStmt::TRY] = Record.readSubStmt();
|