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

1 2

  /src/external/bsd/zstd/dist/tests/
legacy.c 30 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
46 DISPLAY("ERROR: Not enough memory!\n");
54 DISPLAY("ERROR: Invalid frame magic number, was this compiled "
57 DISPLAY("ERROR: %s\n", ZSTD_getErrorName(ret));
62 DISPLAY("ERROR: Wrong decoded size\n");
66 DISPLAY("ERROR: Wrong decoded output produced\n");
71 DISPLAY("Simple API OK\n");
87 DISPLAY("ERROR: Could not allocate memory\n");
91 DISPLAY("ERROR: Could not create dstream\n");
101 DISPLAY("ERROR: ZSTD_initDStream: %s\n", ZSTD_getErrorName(ret))
    [all...]
datagencli.c 33 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
36 DISPLAY(__VA_ARGS__); \
45 DISPLAY("Compressible data generator\n");
46 DISPLAY("Usage :\n");
47 DISPLAY(" %s [args]\n", programName);
48 DISPLAY("\n");
49 DISPLAY("Arguments :\n");
50 DISPLAY(" -g# : generate # data (default:%i)\n", SIZE_DEFAULT);
51 DISPLAY(" -s# : Select seed (default:%i)\n", SEED_DEFAULT);
52 DISPLAY(" -P# : Select compressibility in %% (range [0-100])\n")
    [all...]
decodecorpus.c 39 * DISPLAY Macros
41 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
42 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
50 DISPLAY(__VA_ARGS__); \
61 DISPLAY("Error occurred while generating data: %s\n", \
1301 DISPLAY("Error: could not allocate space for samples\n");
1325 DISPLAY("Error: dictionary size is too small\n");
1345 DISPLAY("Could not finalize dictionary: %s\n", ZDICT_getErrorName(dictWriteSize));
1525 DISPLAY("Error in block mode on test seed %u: %s\n",
1533 DISPLAY("Error in block mode with dictionary on test seed %u: %s\n"
    [all...]
paramgrill.c 55 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
57 #define DEBUGOUTPUT(...) { if (DEBUG) DISPLAY(__VA_ARGS__); }
161 DISPLAY("Error, not a valid param\n ");
199 DISPLAY("Error, not a valid param\n ");
204 /* display of params */
236 DISPLAY("Error, not a valid param\n ");
253 /* Display */
319 /* cleans up params for memoizing / display */
424 DISPLAY("INVALID PARAMETER CONSTRAINTS\n"); \
625 DISPLAY("Warning: parameter %s not in valid range, adjusting to "
    [all...]
fullbench.c 65 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
190 DISPLAY("no compressed literals\n");
298 DISPLAY("no compressed sequences\n");
494 DISPLAY("local_ZSTD_compressContinue_extDict error : %s\n",
699 if (decSize != origSize) { free(decompressed); DISPLAY("ZSTD_decompress failed (%u) ", (unsigned)decSize); return 1; }
828 /* DISPLAY("params: cLevel %d, wlog %d hlog %d clog %d slog %d mml %d tlen %d strat %d \n",
891 DISPLAY("ERROR: Scenario %u: %s \n", scenarioID, ZSTD_getErrorName(BMK_extract_errorResult(bOutcome)));
899 DISPLAY("\r%2u#%-31.31s:%8.1f MB/s (%8u) ",
907 DISPLAY(" validation failed ! (%u)\n", (unsigned)vRes);
917 DISPLAY("\n")
    [all...]
fuzzer.c 59 * Display Macros
61 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
62 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
71 { g_displayClock = UTIL_getTime(); DISPLAY(__VA_ARGS__); \
126 DISPLAY("Error => %s : %s ", \
137 DISPLAY("Error L%u => FAILED %s %s %s ", __LINE__, #lhs, #op, #rhs); \
202 DISPLAY("Not enough memory, aborting\n");
289 DISPLAY("Not enough memory, aborting \n");
486 DISPLAY("Error detected in Unit tests ! \n");
663 DISPLAY("Not enough memory, aborting\n")
    [all...]
zstreamtest.c 60 * Display Macros
62 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
64 DISPLAY(__VA_ARGS__); \
73 { g_displayClock = UTIL_getTime(); DISPLAY(__VA_ARGS__); \
103 DISPLAY("Error => "); \
104 DISPLAY(__VA_ARGS__); \
105 DISPLAY(" (seed %u, test nb %u, line %u) \n", \
118 DISPLAY("Error %llu => ", (unsigned long long)ret); \
119 DISPLAY(__VA_ARGS__); \
120 DISPLAY(" (line %u)\n", __LINE__);
    [all...]
  /src/bin/ls/
extern.h 48 void printacol(DISPLAY *);
49 void printcol(DISPLAY *);
50 void printlong(DISPLAY *);
51 void printscol(DISPLAY *);
52 void printstream(DISPLAY *);
ls.h 75 } DISPLAY;
print.c 72 static void printtotal(DISPLAY *dp);
116 printscol(DISPLAY *dp)
129 printlong(DISPLAY *dp)
212 printcol(DISPLAY *dp)
281 printacol(DISPLAY *dp)
329 printstream(DISPLAY *dp)
431 * Display total used disk space in the form "total: %u\n".
437 printtotal(DISPLAY *dp)
  /src/etc/powerd/scripts/
hotkey_button 15 DISPLAY=:0.0; export DISPLAY
  /src/sys/arch/playstation2/ee/
gs.c 51 u_int64_t smode1, smode2, srfsh, synch1, synch2, syncv, display; member in struct:gs_crt_param
64 .display=DISPLAY(239, 2559, 0, 3, 25, 632)
77 .display= DISPLAY(479, 2559, 0, 3, 50, 632)
90 .display= DISPLAY(287, 2559, 0, 3, 36, 652)
103 .display= DISPLAY(575,2559,0,3,72,652)
116 .display= DISPLAY(479, 1279, 0, 1, 34, 276
    [all...]
gsreg.h 102 #define DISPLAY(dh, dw, magv, magh, dy, dx) \
  /src/external/bsd/zstd/dist/zlibWrapper/examples/
zwrapbench.c 72 * console display
75 #define DISPLAY(...) fprintf(displayOut, __VA_ARGS__)
76 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
77 static unsigned g_displayLevel = DEFAULT_DISPLAY_LEVEL; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
82 { g_time = clock(); DISPLAY(__VA_ARGS__); \
94 #define DEBUGOUTPUT(...) { if (DEBUG) DISPLAY(__VA_ARGS__); }
172 if (strlen(displayName)>17) displayName += strlen(displayName)-17; /* can only display 17 characters */
415 DISPLAY("ZSTD_decompress_usingDDict() failed on block %u : %s \n",
539 DISPLAY("!!! WARNING !!! %14s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOrig, (unsigned)crcCheck);
544 DISPLAY("Decoding error at pos %u ", (unsigned)u)
    [all...]
  /src/external/bsd/zstd/dist/programs/
fileio_common.h 34 #define DISPLAY(...) DISPLAY_F(stderr, __VA_ARGS__)
35 #define DISPLAYLEVEL(l, ...) { if (g_display_prefs.displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
46 DISPLAY(__VA_ARGS__); \
benchzstd.c 74 * console display
76 #define DISPLAY(...) \
83 DISPLAY(__VA_ARGS__); \
85 /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : +
106 DISPLAY(__VA_ARGS__); \
123 DISPLAY("Error : "); \
124 DISPLAY("%s failed : %s", #zf, ZSTD_getErrorName(zerr)); \
125 DISPLAY(" \n"); \
456 strlen(displayName) - 17; /* display last 17 characters */
698 DISPLAY("!!! WARNING !!! %14s : Invalid Checksum : %x != %x \n"
    [all...]
dibio.c 56 * Console display
58 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
59 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
66 { g_displayClock = UTIL_getTime(); DISPLAY(__VA_ARGS__); \
75 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__);
79 DISPLAY("Error %i : ", error); \
80 DISPLAY(__VA_ARGS__); \
81 DISPLAY("\n"); \
benchfn.c 40 # define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
41 # define DEBUGOUTPUT(...) { if (DEBUG) DISPLAY(__VA_ARGS__); }
zstdcli.c 101 * Display Macros
104 #define DISPLAYLEVEL(l, ...) { if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
105 static int g_displayLevel = DISPLAY_LEVEL_DEFAULT; /* 0 : no display, 1: errors, 2 : + result + interaction + warnings, 3 : + progression, 4 : + information */
170 DISPLAY_F(f, " -h Display short usage and exit.\n");
171 DISPLAY_F(f, " -H, --help Display full help and exit.\n");
172 DISPLAY_F(f, " -V, --version Display the program version and exit.\n");
327 DISPLAY("Press enter to continue... \n");
712 if (fileSize != UTIL_FILESIZE_UNKNOWN) DISPLAY("%s (%llu bytes)\n", filename, fileSize);
713 else DISPLAY("%s (src size unknown)\n", filename);
714 DISPLAY(" - windowLog : %u\n", cParams.windowLog)
    [all...]
  /src/external/bsd/zstd/dist/contrib/largeNbDicts/
largeNbDicts.c 60 /*--- Display Macros ---*/
62 #define DISPLAY(...) fprintf(stdout, __VA_ARGS__)
63 #define DISPLAYLEVEL(l, ...) { if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
64 static int g_displayLevel = DISPLAY_LEVEL_DEFAULT; /* 0 : no display, 1: errors, 2 : + result + interaction + warnings, 3 : + progression, 4 : + information */
730 DISPLAY("Compression Speed : %.1f MB/s \r", speed_MBps);
732 DISPLAY("Decompression Speed : %.1f MB/s \r", speed_MBps);
738 DISPLAY("\n");
743 DISPLAY("Fastest Speed : %.1f MB/s \n", speedAggregated);
745 DISPLAY("Median Speed : %.1f MB/s \n", speedAggregated);
977 DISPLAY (" \n")
    [all...]
  /src/usr.bin/menuc/
scan.l 99 display { return DISPLAY; }
parse.y 56 %token <i_value> TITLE DEFAULT DISPLAY ERROR EXITSTRING EXPAND ALLOW DYNAMIC
222 | DISPLAY action ";" { cur_menu->info->postact = $2; }
  /src/external/bsd/ntp/dist/scripts/
plot_summary-opts.def 63 command. Default is @code{x11} if @code{DISPLAY} is set and
  /src/external/bsd/zstd/dist/lib/dictBuilder/
fastcover.c 51 * Console display
56 #undef DISPLAY
57 #define DISPLAY(...) \
65 DISPLAY(__VA_ARGS__); \
66 } /* 0 : no display; 1: errors; 2: default; 3: details; 4: debug */
79 DISPLAY(__VA_ARGS__); \
682 /* Turn down global display level to clean up display at level 2 and below */
  /src/external/gpl2/texinfo/dist/makeinfo/
xml.h 79 COPYING, FORMAT, SMALLFORMAT, DISPLAY, SMALLDISPLAY, VERBATIM,

Completed in 79 milliseconds

1 2