/third_party/lz4/programs/ |
H A D | lz4cli.c | 71 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 72 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 80 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 107 DISPLAY( "Usage : \n"); in usage() 108 DISPLAY( " %s [arg] [input] [output] \n", exeName); in usage() 109 DISPLAY( "\n"); in usage() 110 DISPLAY( "input : a filename \n"); in usage() 111 DISPLAY( " with no FILE, or when FILE is - or %s, read standard input\n", stdinmark); in usage() 112 DISPLAY( "Arguments : \n"); in usage() 113 DISPLAY( " in usage() [all...] |
H A D | bench.c | 87 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 88 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 93 { g_time = clock(); DISPLAY(__VA_ARGS__); \ 105 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 521 DISPLAY("%s() failed on block %u of size %u \n", in BMK_benchMem() 524 DISPLAY("Is input using LZ4 Frame format ? \n"); in BMK_benchMem() 562 DISPLAY("\n!!! WARNING !!! %17s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOrig, (unsigned)crcCheck); in BMK_benchMem() 567 DISPLAY("Decoding error at pos %u ", (U32)u); in BMK_benchMem() 574 DISPLAY("(block %u, sub %u, pos %u) \n", segNb, bNb, pos); in BMK_benchMem() 578 DISPLAY("n in BMK_benchMem() [all...] |
H A D | lz4io.c | 92 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 94 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 101 DISPLAY(__VA_ARGS__); \ 116 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 360 DISPLAY("%s already exists; not overwritten \n", dstFileName); in LZ4IO_openDstFile() 363 DISPLAY("%s already exists; do you want to overwrite (y/N) ? ", dstFileName); in LZ4IO_openDstFile() 366 DISPLAY(" not overwritten \n"); in LZ4IO_openDstFile()
|
/third_party/lz4/tests/ |
H A D | datagencli.c | 59 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 60 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 69 DISPLAY( "Compressible data generator\n"); in usage() 70 DISPLAY( "Usage :\n"); in usage() 71 DISPLAY( " %s [size] [args]\n", programName); in usage() 72 DISPLAY( "\n"); in usage() 73 DISPLAY( "Arguments :\n"); in usage() 74 DISPLAY( " -g# : generate # data (default:%i)\n", SIZE_DEFAULT); in usage() 75 DISPLAY( " -s# : Select seed (default:%i)\n", SEED_DEFAULT); in usage() 76 DISPLAY( " in usage() [all...] |
H A D | fullbench.c | 91 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 92 #define PROGRESS(...) g_noPrompt ? 0 : DISPLAY(__VA_ARGS__) 110 DISPLAY("-Using Block Size of %i KB-\n", g_chunkSize>>10); in BMK_setBlocksize() 116 DISPLAY("- %i iterations -\n", g_nbIterations); in BMK_setNbIterations() 384 if (result!=0) { DISPLAY("Error decompressing frame : unfinished frame \n"); exit(8); } in local_LZ4F_decompress() 385 if (srcSize != (size_t)inSize) { DISPLAY("Error decompressing frame : read size incorrect \n"); exit(9); } in local_LZ4F_decompress() 415 DISPLAY("Error decompressing frame : must read (%u) full frame (%u) \n", in local_LZ4F_decompress_followHint() 449 DISPLAY("Error decompressing frame : must read (%u) full frame (%u) \n", in local_LZ4F_decompress_noHint() 465 if (LZ4F_isError(errorCode)) { DISPLAY("dctx allocation issue \n"); return 10; } } in fullSpeedBench() 483 if (inFile==NULL) { DISPLAY("P in fullSpeedBench() [all...] |
H A D | checkFrame.c | 56 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 57 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 65 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 204 DISPLAY( "Usage :\n"); in FUZ_usage() 205 DISPLAY( " %s [args] filename\n", programName); in FUZ_usage() 206 DISPLAY( "\n"); in FUZ_usage() 207 DISPLAY( "Arguments :\n"); in FUZ_usage() 208 DISPLAY( " -b# : expected blocksizeID [4-7] (required)\n"); in FUZ_usage() 209 DISPLAY( " -B# : expected blocksize [32-4194304] (required)\n"); in FUZ_usage() 210 DISPLAY( " in FUZ_usage() [all...] |
H A D | frametest.c | 81 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 82 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 85 { g_clockTime = clock(); DISPLAY(__VA_ARGS__); \ 237 DISPLAY("allocation error, not enough memory to start fuzzer tests \n"); in basicTests() 329 DISPLAY("%u bytes missing != %u bytes requested \n", (U32)missingBytes, (U32)decResult); in basicTests() 340 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; } in basicTests() 828 DISPLAY("Basic tests completed \n"); in basicTests() 839 DISPLAY("Error detected ! \n"); in basicTests() 852 DISPLAY("locateBuffDiff: looking for error position \n"); in locateBuffDiff() 854 DISPLAY("mod in locateBuffDiff() [all...] |
H A D | fuzzer.c | 95 #define DISPLAY(...) fprintf(stdout, __VA_ARGS__) macro 96 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 116 DISPLAY("\r%5u ", testNb); in FUZ_displayUpdate() 190 DISPLAY("Overflow tests : "); in FUZ_AddressOverflow() 194 DISPLAY("64 bits mode : no overflow \n"); in FUZ_AddressOverflow() 203 DISPLAY("not enough memory for tests \n"); in FUZ_AddressOverflow() 208 DISPLAY("%3i \b\b\b\b", nbBuff); fflush(stdout); in FUZ_AddressOverflow() 213 DISPLAY("high address detected : "); in FUZ_AddressOverflow() 229 if (r>0) { DISPLAY("LZ4_decompress_safe = %i \n", r); goto _overflowError; } in FUZ_AddressOverflow() 235 if (r>0) { DISPLAY("LZ4_decompress_saf in FUZ_AddressOverflow() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | ULocale.java | 325 DISPLAY, enum constant 1466 * Returns this locale's language localized for display in the default <code>DISPLAY</code> locale. 1468 * @see Category#DISPLAY 1471 return getDisplayLanguageInternal(this, getDefault(Category.DISPLAY), false); in getDisplayLanguage() 1506 * <strong>[icu]</strong> Returns this locale's language localized for display in the default <code>DISPLAY</code> locale. 1509 * @see Category#DISPLAY 1512 return getDisplayLanguageInternal(this, getDefault(Category.DISPLAY), true); in getDisplayLanguageWithDialect() 1557 * Returns this locale's script localized for display in the default <code>DISPLAY</code> locale. 1559 * @see Category#DISPLAY 1562 return getDisplayScriptInternal(this, getDefault(Category.DISPLAY)); in getDisplayScript() [all...] |
H A D | Holiday.java | 142 * Return the name of this holiday in the language of the default <code>DISPLAY</code> locale. 143 * @see Category#DISPLAY 147 return getDisplayName(ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
|
H A D | TimeZone.java | 392 * in the default <code>DISPLAY</code> locale. 397 * @see Category#DISPLAY 400 return _getDisplayName(LONG_GENERIC, false, ULocale.getDefault(Category.DISPLAY)); in getDisplayName() 433 * in the default <code>DISPLAY</code> locale. 443 * @see Category#DISPLAY 446 return getDisplayName(daylight, style, ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
|
/third_party/pulseaudio/src/tests/ |
H A D | test-daemon.sh | 52 unset DISPLAY
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | ULocale.java | 350 DISPLAY, enum constant 1965 * Returns this locale's language localized for display in the default <code>DISPLAY</code> locale. 1967 * @see Category#DISPLAY 1971 return getDisplayLanguageInternal(this, getDefault(Category.DISPLAY), false); in getDisplayLanguage() 2009 * {@icu} Returns this locale's language localized for display in the default <code>DISPLAY</code> locale. 2012 * @see Category#DISPLAY 2016 return getDisplayLanguageInternal(this, getDefault(Category.DISPLAY), true); in getDisplayLanguageWithDialect() 2064 * Returns this locale's script localized for display in the default <code>DISPLAY</code> locale. 2066 * @see Category#DISPLAY 2070 return getDisplayScriptInternal(this, getDefault(Category.DISPLAY)); in getDisplayScript() [all...] |
H A D | Holiday.java | 140 * Return the name of this holiday in the language of the default <code>DISPLAY</code> locale. 141 * @see Category#DISPLAY 145 return getDisplayName(ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
|
H A D | TimeZone.java | 421 * in the default <code>DISPLAY</code> locale. 426 * @see Category#DISPLAY 430 return _getDisplayName(LONG_GENERIC, false, ULocale.getDefault(Category.DISPLAY)); in getDisplayName() 465 * in the default <code>DISPLAY</code> locale. 475 * @see Category#DISPLAY 479 return getDisplayName(daylight, style, ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
|
/third_party/mesa3d/.gitlab-ci/ |
H A D | crosvm-runner.sh | 81 unset DISPLAY
|
/third_party/mesa3d/.gitlab-ci/common/ |
H A D | init-stage2.sh | 131 export DISPLAY=:0
|
/third_party/mesa3d/.gitlab-ci/piglit/ |
H A D | piglit-traces.sh | 53 export DISPLAY=
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
H A D | Collator.java | 1121 * default <code>DISPLAY</code> locale. 1124 * @see com.ibm.icu.util.ULocale.Category#DISPLAY 1128 return getShim().getDisplayName(ULocale.forLocale(objectLocale), ULocale.getDefault(Category.DISPLAY)); in getDisplayName() 1133 * default <code>DISPLAY</code> locale. 1136 * @see com.ibm.icu.util.ULocale.Category#DISPLAY 1140 return getShim().getDisplayName(objectLocale, ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | ICUService.java | 610 return getDisplayName(id, ULocale.getDefault(Category.DISPLAY)); in getDisplayName() 642 ULocale locale = ULocale.getDefault(Category.DISPLAY); in getDisplayNames()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | ICUService.java | 615 return getDisplayName(id, ULocale.getDefault(Category.DISPLAY)); in getDisplayName() 647 ULocale locale = ULocale.getDefault(Category.DISPLAY); in getDisplayNames()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | Collator.java | 1078 * default <code>DISPLAY</code> locale. 1081 * @see ohos.global.icu.util.ULocale.Category#DISPLAY 1084 return getShim().getDisplayName(ULocale.forLocale(objectLocale), ULocale.getDefault(Category.DISPLAY)); in getDisplayName() 1089 * default <code>DISPLAY</code> locale. 1092 * @see ohos.global.icu.util.ULocale.Category#DISPLAY 1095 return getShim().getDisplayName(objectLocale, ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
|
H A D | RuleBasedNumberFormat.java | 1041 String[] localeNames = { loc.getBaseName(), ULocale.getDefault(Category.DISPLAY).getBaseName() }; in getNameListForLocale() 1077 * Return the rule set display names for the current default <code>DISPLAY</code> locale. 1080 * @see Category#DISPLAY 1083 return getRuleSetDisplayNames(ULocale.getDefault(Category.DISPLAY)); in getRuleSetDisplayNames() 1109 * Return the rule set display name for the provided rule set in the current default <code>DISPLAY</code> locale. 1112 * @see Category#DISPLAY 1115 return getRuleSetDisplayName(ruleSetName, ULocale.getDefault(Category.DISPLAY)); in getRuleSetDisplayName()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RuleBasedNumberFormat.java | 1058 String[] localeNames = { loc.getBaseName(), ULocale.getDefault(Category.DISPLAY).getBaseName() }; in getNameListForLocale() 1095 * Return the rule set display names for the current default <code>DISPLAY</code> locale. 1098 * @see Category#DISPLAY 1102 return getRuleSetDisplayNames(ULocale.getDefault(Category.DISPLAY)); in getRuleSetDisplayNames() 1129 * Return the rule set display name for the provided rule set in the current default <code>DISPLAY</code> locale. 1132 * @see Category#DISPLAY 1136 return getRuleSetDisplayName(ruleSetName, ULocale.getDefault(Category.DISPLAY)); in getRuleSetDisplayName()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | ULocaleTest.java | 4570 ULocale.setDefault(Category.DISPLAY, uJaJp); in TestCategoryDefault() 4577 if (!ULocale.getDefault(Category.DISPLAY).equals(uJaJp)) { in TestCategoryDefault() 4578 errln("FAIL: DISPLAY ULocale is " + ULocale.getDefault(Category.DISPLAY) + ", expected: " + uJaJp); in TestCategoryDefault() 4590 if (!ULocale.getDefault(Category.DISPLAY).equals(uFrFr)) { in TestCategoryDefault() 4591 errln("FAIL: DISPLAY ULocale is " + ULocale.getDefault(Category.DISPLAY) + ", expected: " + uFrFr); in TestCategoryDefault() 4608 if (!ULocale.getDefault(Category.DISPLAY).equals(uArEg)) { in TestCategoryDefault() 4609 errln("FAIL: DISPLAY ULocale is " + ULocale.getDefault(Category.DISPLAY) in TestCategoryDefault() [all...] |