/external/lz4/programs/ |
D | lz4cli.c | 70 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 71 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 79 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 103 DISPLAY( "Usage : \n"); in usage() 104 DISPLAY( " %s [arg] [input] [output] \n", exeName); in usage() 105 DISPLAY( "\n"); in usage() 106 DISPLAY( "input : a filename \n"); in usage() 107 DISPLAY( " with no FILE, or when FILE is - or %s, read standard input\n", stdinmark); in usage() 108 DISPLAY( "Arguments : \n"); in usage() 109 DISPLAY( " -1 : Fast compression (default) \n"); in usage() [all …]
|
D | bench.c | 90 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 91 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 96 { g_time = clock(); DISPLAY(__VA_ARGS__); \ 108 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 303 DISPLAY("LZ4_decompress_safe() failed on block %u \n", blockNb); in BMK_benchMem() 332 …DISPLAY("\n!!! WARNING !!! %17s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOri… in BMK_benchMem() 337 DISPLAY("Decoding error at pos %u ", (U32)u); in BMK_benchMem() 344 DISPLAY("(block %u, sub %u, pos %u) \n", segNb, bNb, pos); in BMK_benchMem() 348 DISPLAY("no difference detected\n"); in BMK_benchMem() 359 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s (param=%d)\n", cLevel, (int)cSize, ratio, cSp… in BMK_benchMem() [all …]
|
D | lz4io.c | 92 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 93 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 100 DISPLAY(__VA_ARGS__); \ 129 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 286 DISPLAY("%s already exists; not overwritten \n", dstFileName); in LZ4IO_openDstFile() 289 DISPLAY("%s already exists; do you wish to overwrite (y/N) ? ", dstFileName); in LZ4IO_openDstFile() 292 DISPLAY(" not overwritten \n"); in LZ4IO_openDstFile()
|
/external/lz4/tests/ |
D | datagencli.c | 51 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 52 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 61 DISPLAY( "Compressible data generator\n"); in usage() 62 DISPLAY( "Usage :\n"); in usage() 63 DISPLAY( " %s [size] [args]\n", programName); in usage() 64 DISPLAY( "\n"); in usage() 65 DISPLAY( "Arguments :\n"); in usage() 66 DISPLAY( " -g# : generate # data (default:%i)\n", SIZE_DEFAULT); in usage() 67 DISPLAY( " -s# : Select seed (default:%i)\n", SEED_DEFAULT); in usage() 68 DISPLAY( " -P# : Select compressibility in %% (default:%i%%)\n", COMPRESSIBILITY_DEFAULT); in usage() [all …]
|
D | fullbench.c | 90 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 91 #define PROGRESS(...) g_noPrompt ? 0 : DISPLAY(__VA_ARGS__) 109 DISPLAY("-Using Block Size of %i KB-\n", g_chunkSize>>10); in BMK_setBlocksize() 115 DISPLAY("- %i iterations -\n", g_nbIterations); in BMK_setNbIterations() 340 if (result!=0) { DISPLAY("Error decompressing frame : unfinished frame\n"); exit(8); } in local_LZ4F_decompress() 341 …if (srcSize != (size_t)inSize) { DISPLAY("Error decompressing frame : read size incorrect\n"); exi… in local_LZ4F_decompress() 354 if (LZ4F_isError(errorCode)) { DISPLAY("dctx allocation issue \n"); return 10; } } in fullSpeedBench() 373 if (inFile==NULL) { DISPLAY( "Pb opening %s\n", inFileName); return 11; } in fullSpeedBench() 377 if (inFileSize==0) { DISPLAY( "file is empty\n"); fclose(inFile); return 11; } in fullSpeedBench() 379 if (benchedSize==0) { DISPLAY( "not enough memory\n"); fclose(inFile); return 11; } in fullSpeedBench() [all …]
|
D | frametest.c | 84 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 85 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 88 { g_clockTime = clock(); DISPLAY(__VA_ARGS__); \ 191 DISPLAY("allocation error, not enough memory to start fuzzer tests \n"); in basicTests() 261 … DISPLAY("%u bytes missing != %u bytes requested \n", (U32)missingBytes, (U32)decResult); in basicTests() 272 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; } in basicTests() 723 DISPLAY("Basic tests completed \n"); in basicTests() 734 DISPLAY("Error detected ! \n"); in basicTests() 744 DISPLAY("locateBuffDiff: looking for error position \n"); in locateBuffDiff() 746 … DISPLAY("mode %u: non-contiguous output (%zu bytes), cannot search \n", nonContiguous, size); in locateBuffDiff() [all …]
|
D | fuzzer.c | 90 #define DISPLAY(...) fprintf(stdout, __VA_ARGS__) macro 91 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 111 DISPLAY("\r%5u ", testNb); in FUZ_displayUpdate() 177 DISPLAY("Overflow tests : "); in FUZ_AddressOverflow() 181 DISPLAY("64 bits mode : no overflow \n"); in FUZ_AddressOverflow() 190 DISPLAY("not enough memory for tests \n"); in FUZ_AddressOverflow() 195 DISPLAY("%3i \b\b\b\b", nbBuff); fflush(stdout); in FUZ_AddressOverflow() 200 DISPLAY("high address detected : "); in FUZ_AddressOverflow() 216 if (r>0) { DISPLAY("LZ4_decompress_safe = %i \n", r); goto _overflowError; } in FUZ_AddressOverflow() 222 if (r>0) { DISPLAY("LZ4_decompress_safe = %i \n", r); goto _overflowError; } in FUZ_AddressOverflow() [all …]
|
/external/python/cpython2/Tools/compiler/ |
D | compile.py | 10 DISPLAY = 0 25 DISPLAY = 1 38 profile.run('compileFile(%r, %r)' % (filename, DISPLAY), 41 compileFile(filename, DISPLAY)
|
/external/libchrome/mojo/public/cpp/base/ |
D | thread_priority_mojom_traits.cc | 18 case base::ThreadPriority::DISPLAY: in ToMojom() 19 return mojo_base::mojom::ThreadPriority::DISPLAY; in ToMojom() 38 case mojo_base::mojom::ThreadPriority::DISPLAY: in FromMojom() 39 *out = base::ThreadPriority::DISPLAY; in FromMojom()
|
D | thread_priority_unittest.cc | 14 base::ThreadPriority::DISPLAY, base::ThreadPriority::REALTIME_AUDIO}; in TEST()
|
/external/libcxx/test/support/ |
D | verbose_assert.h | 196 #define DISPLAY(...) " " #__VA_ARGS__ " = " << (__VA_ARGS__) << "\n" 203 ASSERT(LHS == RHS) << DISPLAY(LHS) << DISPLAY(RHS) 205 ASSERT(LHS != RHS) << DISPLAY(LHS) << DISPLAY(RHS) 207 ASSERT(PRED(LHS, RHS)) << DISPLAY(LHS) << DISPLAY(RHS)
|
/external/selinux/sandbox/ |
D | sandboxX.sh | 24 export DISPLAY=:$D 27 DISPLAY=$DISPLAY "\$@"
|
/external/crosvm/docker/ |
D | crosvm_wrapper.sh | 11 -e DISPLAY=$DISPLAY -e XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR \
|
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/ |
D | path.append.pass.cpp | 189 << DISPLAY(L) << DISPLAY(R); in doAppendSourceTest() 234 << DISPLAY(L) << DISPLAY(R); in doAppendSourceTest() 326 << DISPLAY(LHS_In) << DISPLAY(RHS_In); in main()
|
D | path.compare.pass.cpp | 107 << DISPLAY(TC.LHS) << DISPLAY(TC.RHS); in test_compare_basic()
|
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/ |
D | replace_filename.pass.cpp | 59 << DISPLAY(TC.value) in main() 60 << DISPLAY(TC.filename); in main()
|
D | remove_filename.pass.cpp | 69 ASSERT_EQ(p, TC.expect) << DISPLAY(p_orig); in main()
|
/external/libchrome/base/threading/ |
D | platform_thread_unittest.cc | 229 ThreadPriority::DISPLAY, 278 PlatformThread::SetCurrentThreadPriority(ThreadPriority::DISPLAY); in TEST() 315 EXPECT_EQ(ThreadPriority::DISPLAY, in TEST() 352 EXPECT_EQ(ThreadPriority::DISPLAY, in TEST() 354 EXPECT_EQ(ThreadPriority::DISPLAY, in TEST()
|
D | platform_thread_linux.cc | 41 case ThreadPriority::DISPLAY: in ThreadPriorityToCgroupDirectory() 96 {ThreadPriority::DISPLAY, -8},
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
D | ULocaleTest.java | 810 ULocale dispLoc = ULocale.getDefault(Category.DISPLAY); in testGetDefaultCategory() 821 ULocale orgDisplay = ULocale.getDefault(Category.DISPLAY); in testSetDefaultCategoryULocale() 829 assertEquals(ULocale.getDefault(Category.DISPLAY), jaUS); in testSetDefaultCategoryULocale() 833 ULocale.setDefault(Category.DISPLAY, frDE); in testSetDefaultCategoryULocale() 837 assertEquals(ULocale.getDefault(Category.DISPLAY), frDE); in testSetDefaultCategoryULocale() 842 ULocale.setDefault(Category.DISPLAY, orgDisplay); in testSetDefaultCategoryULocale() 846 assertEquals(ULocale.getDefault(Category.DISPLAY), orgDisplay); in testSetDefaultCategoryULocale()
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/ |
D | TimeZone.java | 365 return timeZone.getDisplayName(ULocale.getDefault(Category.DISPLAY).toLocale()); in getDisplayName() 413 return getDisplayName(daylight, style, ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
|
/external/libepoxy/.travis/ |
D | epoxy-ci-linux.sh | 17 export DISPLAY=:99
|
/external/u-boot/drivers/video/meson/ |
D | Kconfig | 10 select DISPLAY
|
/external/oss-fuzz/projects/readstat/ |
D | fuzz_format_spss_commands.dict | 19 "DISPLAY"
|
/external/autotest/client/site_tests/firmware_TouchMTB/tools/ |
D | machine_replay.sh | 62 export DISPLAY=:0
|