| /src/external/bsd/zstd/dist/tests/regression/ |
| levels.h | 11 #ifndef LEVEL 12 # error LEVEL(x) must be defined 23 * as well as some fast levels and the default level. 32 LEVEL(0) 33 LEVEL(1) 35 LEVEL(3) 36 LEVEL(4) 38 * dictionary strategies, and 16/32/64 row entries based on the level/searchLog. 43 LEVEL(5) 44 LEVEL(6 [all...] |
| config.c | 13 /* Define a config for each fast level we want to test with. */ 19 .name = "level -" #x, \ 24 .name = "level -" #x " with dict", \ 30 /* Define a config for each level we want to test with. */ 31 #define LEVEL(x) \ 56 .name = "level " #x, \ 61 .name = "level " #x " with dict", \ 67 .name = "level " #x " with dict dms", \ 74 .name = "level " #x " with dict dds", \ 81 .name = "level " #x " with dict copy", 359 int level = config_get_level(config); local [all...] |
| /src/games/larn/ |
| global.c | 6 * raiselevel() subroutine to raise the player one level 7 * loselevel() subroutine to lower the player by one level 40 subroutine to raise the player one level 41 uses the skill[] array to find level boundarys 42 uses c[EXPERIENCE] c[LEVEL] 47 if (c[LEVEL] < MAXPLEVEL) 48 raiseexperience((long) (skill[c[LEVEL]] - c[EXPERIENCE])); 54 subroutine to lower the players character level by one 59 if (c[LEVEL] > 1) 60 loseexperience((long) (c[EXPERIENCE] - skill[c[LEVEL] - 1] + 1)) [all...] |
| display.c | 75 lprintf(" AC: %-3ld WC: %-3ld Level", (long) c[AC], (long) c[WCLASS]); 76 if (c[LEVEL] > 99) 77 lprintf("%3ld", (long) c[LEVEL]); 79 lprintf(" %-2ld", (long) c[LEVEL]); 80 lprintf(" Exp: %-9ld %s\n", (long) c[EXPERIENCE], class[c[LEVEL] - 1]); 86 if ((level == 0) || (wizard)) 91 lprcat(levelname[level]); 110 if (c[LEVEL] != cbak[LEVEL]) { 112 lprcat(class[c[LEVEL] - 1]) [all...] |
| regen.c | 44 d[REGENCOUNTER] = 22 + (d[HARDGAME] << 1) - d[LEVEL]; 51 d[ECOUNTER] = 100 + 4 * (d[HARDGAME] - d[LEVEL] - d[ENERGY]);
|
| /src/external/apache2/mDNSResponder/dist/mDNSCore/ |
| mDNSDebug.h | 166 #define MDNS_LOG_DEFINITION(LEVEL, ...) \ 167 do { if (mDNS_LoggingEnabled) LogMsgWithLevel(MDNS_LOG_CATEGORY_DEFAULT, LEVEL, __VA_ARGS__); } while (0) 176 #define MDNS_LOG_DEFINITION(LEVEL, ARGS...) \ 177 do { if (mDNS_LoggingEnabled) LogMsgWithLevel(MDNS_LOG_CATEGORY_DEFAULT, LEVEL, ARGS); } while (0) 228 extern int gSensitiveLoggingEnabled; // If true, LogRedact() will redact all private level logs. The content of state 234 extern void LogMsgWithLevel(mDNSLogCategory_t category, mDNSLogLevel_t level, const char *format, ...) IS_A_PRINTF_STYLE_FUNCTION(3,4); 269 * @param LEVEL The log level that determines the importance of the message. The levels are, in order of 271 * MDNS_LOG_FAULT Fault-level messages are intended for capturing system-level error [all...] |
| /src/usr.bin/make/unit-tests/ |
| opt-debug-graph1.exp | 25 .MAKE.LEVEL = <details omitted> 26 .MAKE.LEVEL.ENV = MAKELEVEL
|
| suff-transform-debug.exp | 16 .MAKE.LEVEL = <details omitted> 17 .MAKE.LEVEL.ENV = MAKELEVEL
|
| opt-debug-graph2.exp | 59 .MAKE.LEVEL = <details omitted> 60 .MAKE.LEVEL.ENV = MAKELEVEL
|
| opt-debug-graph3.exp | 59 .MAKE.LEVEL = <details omitted> 60 .MAKE.LEVEL.ENV = MAKELEVEL
|
| /src/external/apache2/mDNSResponder/dist/mDNSShared/ |
| DebugServices.h | 241 @abstract Flags indicating the task level. 257 #define DebugExtractTaskLevelInterruptLevel( LEVEL ) \ 258 ( ( ( LEVEL ) &kDebugInterruptLevelMask ) >> kDebugInterruptLevelShift ) 260 #define DebugExtractTaskLevelInterruptDepth( LEVEL ) \ 261 ( ( ( LEVEL ) &kDebugInterruptDepthMask ) >> kDebugInterruptDepthShift ) 274 @abstract Level used to control debug logging. 297 // Level Flags 306 @abstract Level used to control which events are logged. 1208 #define dlogv( LEVEL, FORMAT, LIST ) DebugPrintFVAList( ( LEVEL ), ( FORMAT ), ( LIST ) [all...] |
| mDNSDebug.c | 65 mDNSlocal void LogMsgWithLevelv(os_log_t category, os_log_type_t level, const char *format, va_list args) 69 os_log_with_type(category ? category : mDNSLogCategory_Default, level, "%{private}s", buffer); 72 mDNSlocal void LogMsgWithLevelv(const char *category, mDNSLogLevel_t level, const char *format, va_list args) 85 mDNSPlatformWriteLogMsg(ProgramName, buffer, level); 89 #define LOG_HELPER_BODY(CATEGORY, LEVEL) \ 93 LogMsgWithLevelv(CATEGORY, LEVEL, format, args); \ 111 mDNSexport void LogMsgWithLevel(mDNSLogCategory_t category, mDNSLogLevel_t level, const char *format, ...) 112 LOG_HELPER_BODY(category, level)
|
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| warn.c | 40 krb5_error_code code, int level, const char *fmt, va_list ap) 45 krb5_error_code code, int level, const char *fmt, va_list ap) 76 krb5_log(context, context->warn_dest, level, xfmt, args[0], args[1]); 84 #define FUNC(ETEXT, CODE, LEVEL) \ 88 ret = _warnerr(context, ETEXT, CODE, LEVEL, fmt, ap); \ 91 #define FUNC_NORET(ETEXT, CODE, LEVEL) \ 94 (void) _warnerr(context, ETEXT, CODE, LEVEL, fmt, ap); \
|
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| pariscid.pl | 18 $LEVEL ="2.0W"; 22 $LEVEL ="1.1"; 32 .LEVEL $LEVEL 269 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| pariscid.pl | 18 $LEVEL ="2.0W"; 22 $LEVEL ="1.1"; 32 .LEVEL $LEVEL 269 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/ |
| pariscid.pl | 15 $LEVEL ="2.0W"; 19 $LEVEL ="1.1"; 29 .LEVEL $LEVEL 266 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/ |
| decoder_lib.c | 34 /* For tracing, count recursion level */ 827 #define LEVEL (new_data.recursion < sizeof(LEVEL_STR) \ 861 (void *)new_data.ctx, LEVEL); 871 (void *)new_data.ctx, LEVEL, rv); 948 (void *)new_data.ctx, LEVEL, (void *)decoder, 990 (void *)new_data.ctx, LEVEL, (unsigned int)i, 1008 (void *)new_data.ctx, LEVEL, (unsigned int)i, 1026 (void *)new_data.ctx, LEVEL, (unsigned int)i, 1042 (void *)new_data.ctx, LEVEL, (unsigned int)i); 1062 (void *)new_data.ctx, LEVEL, (unsigned int)i) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/ |
| decoder_lib.c | 33 /* For tracing, count recursion level */ 702 #define LEVEL (new_data.recursion < sizeof(LEVEL_STR) \ 735 (void *)new_data.ctx, LEVEL); 743 (void *)new_data.ctx, LEVEL, rv); 801 (void *)new_data.ctx, LEVEL, (void *)decoder, 843 (void *)new_data.ctx, LEVEL, (unsigned int)i, 859 (void *)new_data.ctx, LEVEL, (unsigned int)i, 875 (void *)new_data.ctx, LEVEL, (unsigned int)i, 889 (void *)new_data.ctx, LEVEL, (unsigned int)i); 906 (void *)new_data.ctx, LEVEL, (unsigned int)i) [all...] |
| /src/external/bsd/ntp/dist/include/ |
| parse.h | 89 #define parseprintf(LEVEL, ARGS) if (debug > LEVEL) printf ARGS 91 #define parseprintf(LEVEL, ARGS)
|
| /src/crypto/external/apache2/openssl/dist/crypto/rc4/asm/ |
| rc4-parisc.pl | 38 $LEVEL ="2.0W"; 47 $LEVEL ="1.0"; 149 .LEVEL $LEVEL 328 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/apache2/openssl/dist/crypto/sha/asm/ |
| sha1-parisc.pl | 37 $LEVEL ="2.0W"; 46 $LEVEL ="1.0"; 158 .LEVEL $LEVEL 274 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/bsd/openssl/dist/crypto/rc4/asm/ |
| rc4-parisc.pl | 38 $LEVEL ="2.0W"; 47 $LEVEL ="1.0"; 149 .LEVEL $LEVEL 328 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/bsd/openssl/dist/crypto/sha/asm/ |
| sha1-parisc.pl | 37 $LEVEL ="2.0W"; 46 $LEVEL ="1.0"; 158 .LEVEL $LEVEL 274 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/rc4/asm/ |
| rc4-parisc.pl | 35 $LEVEL ="2.0W"; 44 $LEVEL ="1.0"; 146 .LEVEL $LEVEL 325 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/sha/asm/ |
| sha1-parisc.pl | 34 $LEVEL ="2.0W"; 43 $LEVEL ="1.0"; 155 .LEVEL $LEVEL 271 s/(\.LEVEL\s+2\.0)W/$1w/ if ($gnuas && $SIZE_T==8);
|