/aosp_15_r20/external/lz4/programs/ |
H A D | lz4cli.c | 83 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 84 #define DISPLAYLEVEL(l, ...) do { if (displayLevel>=l) DISPLAY(__VA_ARGS__); } while (0) 94 #define DEBUGOUTPUT(...) do { if (DEBUG) DISPLAY(__VA_ARGS__); } while (0) 126 DISPLAY( "Usage : \n"); in usage() 127 DISPLAY( " %s [arg] [input] [output] \n", exeName); in usage() 128 DISPLAY( "\n"); in usage() 129 DISPLAY( "input : a filename \n"); in usage() 130 DISPLAY( " with no FILE, or when FILE is - or %s, read standard input\n", stdinmark); in usage() 131 DISPLAY( "Arguments : \n"); in usage() 132 DISPLAY( " -1 : fast compression (default) \n"); in usage() [all …]
|
H A D | bench.c | 88 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 89 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=(l)) { DISPLAY(__VA_ARGS__); } 94 { g_time = clock(); DISPLAY(__VA_ARGS__); \ 106 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__); 476 DISPLAY("LZ4 compression failed on block %u \n", blockNb); in BMK_benchMem() 534 DISPLAY("%s() failed on block %u of size %u \n", in BMK_benchMem() 537 DISPLAY("Is input using LZ4 Frame format ? \n"); in BMK_benchMem() 576 …DISPLAY("\n!!! WARNING !!! %17s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOri… in BMK_benchMem() 582 DISPLAY("Decoding error at pos %u ", (U32)u); in BMK_benchMem() 589 DISPLAY("(block %u, sub %u, pos %u) \n", segNb, bNb, pos); in BMK_benchMem() [all …]
|
/aosp_15_r20/external/lz4/tests/ |
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() 428 if (result!=0) { DISPLAY("Error decompressing frame : unfinished frame \n"); exit(8); } in local_LZ4F_decompress() 429 …if (srcSize != (size_t)inSize) { DISPLAY("Error decompressing frame : read size incorrect \n"); ex… in local_LZ4F_decompress() 459 DISPLAY("Error decompressing frame : must read (%u) full frame (%u) \n", in local_LZ4F_decompress_followHint() 493 DISPLAY("Error decompressing frame : must read (%u) full frame (%u) \n", in local_LZ4F_decompress_noHint() 575 if (LZ4F_isError(errorCode)) { DISPLAY("dctx allocation issue \n"); return 10; } } in fullSpeedBench() 593 if (inFile==NULL) { DISPLAY("Pb opening %s \n", inFileName); return 11; } in fullSpeedBench() [all …]
|
H A D | datagencli.c | 62 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 63 #define DISPLAYLEVEL(l, ...) do { if (displayLevel>=(l)) DISPLAY(__VA_ARGS__); } while (0) 72 DISPLAY( "Compressible data generator\n"); in usage() 73 DISPLAY( "Usage :\n"); in usage() 74 DISPLAY( " %s [size] [args]\n", programName); in usage() 75 DISPLAY( "\n"); in usage() 76 DISPLAY( "Arguments :\n"); in usage() 77 DISPLAY( " -g# : generate # data (default:%i)\n", SIZE_DEFAULT); in usage() 78 DISPLAY( " -s# : Select seed (default:%i)\n", SEED_DEFAULT); in usage() 79 DISPLAY( " -P# : Select compressibility in %% (range [0-100])\n"); in usage() [all …]
|
H A D | checkFrame.c | 65 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 66 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 74 #define DEBUGOUTPUT(...) do { if (DEBUG) DISPLAY(__VA_ARGS__); } while (0) 213 DISPLAY( "Usage :\n"); in FUZ_usage() 214 DISPLAY( " %s [args] filename\n", programName); in FUZ_usage() 215 DISPLAY( "\n"); in FUZ_usage() 216 DISPLAY( "Arguments :\n"); in FUZ_usage() 217 DISPLAY( " -b# : expected blocksizeID [4-7] (required)\n"); in FUZ_usage() 218 DISPLAY( " -B# : expected blocksize [32-4194304] (required)\n"); in FUZ_usage() 219 DISPLAY( " -v : verbose\n"); in FUZ_usage() [all …]
|
H A D | frametest.c | 82 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 83 #define DISPLAYLEVEL(l, ...) do { if (displayLevel>=(l)) DISPLAY(__VA_ARGS__); } while (0) 86 { g_clockTime = clock(); DISPLAY(__VA_ARGS__); \ 221 DISPLAY("Error (line %i) => %s not respected \n", __LINE__, #c); \ 297 DISPLAY("allocation error, not enough memory to start fuzzer tests \n"); in unitTests() 389 … DISPLAY("%u bytes missing != %u bytes requested \n", (U32)missingBytes, (U32)decResult); in unitTests() 400 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; } in unitTests() 955 DISPLAY("Basic tests completed \n"); in unitTests() 966 DISPLAY("Error detected ! \n"); in unitTests() 979 DISPLAY("locateBuffDiff: looking for error position \n"); in locateBuffDiff() [all …]
|
H A D | fuzzer.c | 95 #define DISPLAY(...) fprintf(stdout, __VA_ARGS__) macro 96 #define DISPLAYLEVEL(l, ...) do { if (g_displayLevel>=l) DISPLAY(__VA_ARGS__); } while (0) 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_safe = %i \n", r); goto _overflowError; } in FUZ_AddressOverflow() [all …]
|
/aosp_15_r20/external/zstd/tests/ |
H A D | legacy.c | 30 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 46 DISPLAY("ERROR: Not enough memory!\n"); in testSimpleAPI() 54 DISPLAY("ERROR: Invalid frame magic number, was this compiled " in testSimpleAPI() 57 DISPLAY("ERROR: %s\n", ZSTD_getErrorName(ret)); in testSimpleAPI() 62 DISPLAY("ERROR: Wrong decoded size\n"); in testSimpleAPI() 66 DISPLAY("ERROR: Wrong decoded output produced\n"); in testSimpleAPI() 71 DISPLAY("Simple API OK\n"); in testSimpleAPI() 87 DISPLAY("ERROR: Could not allocate memory\n"); in testStreamingAPI() 91 DISPLAY("ERROR: Could not create dstream\n"); in testStreamingAPI() 101 DISPLAY("ERROR: ZSTD_initDStream: %s\n", ZSTD_getErrorName(ret)); in testStreamingAPI() [all …]
|
H A D | fullbench.c | 63 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 397 DISPLAY("local_ZSTD_compressContinue_extDict error : %s\n", in local_ZSTD_compressContinue_extDict() 520 DISPLAY("\nError: not enough memory!\n"); in benchMem() 588 … DISPLAY("ZSTD_decodeLiteralsBlock : impossible to test on this sample (not compressible)\n"); in benchMem() 613 … DISPLAY("ZSTD_decodeSeqHeaders : impossible to test on this sample (not compressible)\n"); in benchMem() 681 DISPLAY("ERROR benchmarking function ! ! \n"); in benchMem() 689 DISPLAY("\r%2u#%-29.29s:%8.1f MB/s (%8u) ", in benchMem() 699 DISPLAY("\n"); in benchMem() 718 if (!origBuff) { DISPLAY("\nError: not enough memory!\n"); return 12; } in benchSample() 724 DISPLAY("\r%70s\r", ""); in benchSample() [all …]
|
H A D | datagencli.c | 33 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 36 DISPLAY(__VA_ARGS__); \ 45 DISPLAY("Compressible data generator\n"); in usage() 46 DISPLAY("Usage :\n"); in usage() 47 DISPLAY(" %s [args]\n", programName); in usage() 48 DISPLAY("\n"); in usage() 49 DISPLAY("Arguments :\n"); in usage() 50 DISPLAY(" -g# : generate # data (default:%i)\n", SIZE_DEFAULT); in usage() 51 DISPLAY(" -s# : Select seed (default:%i)\n", SEED_DEFAULT); in usage() 52 DISPLAY(" -P# : Select compressibility in %% (range [0-100])\n"); in usage() [all …]
|
H A D | paramgrill.c | 55 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 57 #define DEBUGOUTPUT(...) { if (DEBUG) DISPLAY(__VA_ARGS__); } 161 DISPLAY("Error, not a valid param\n "); in rangeMap() 199 DISPLAY("Error, not a valid param\n "); in invRangeMap() 236 DISPLAY("Error, not a valid param\n "); in displayParamVal() 424 DISPLAY("INVALID PARAMETER CONSTRAINTS\n"); \ 625 DISPLAY("Warning: parameter %s not in valid range, adjusting to ", in optimizerAdjustInput() 627 displayParamVal(stderr, v, newval, 0); DISPLAY("\n"); in optimizerAdjustInput() 641 DISPLAY("Warning: windowLog larger than src/block size, adjusted to %u\n", in optimizerAdjustInput() 657 DISPLAY("Warning: chainlog too much larger than windowLog size, adjusted to %u\n", in optimizerAdjustInput() [all …]
|
H A D | decodecorpus.c | 41 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro 42 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 50 DISPLAY(__VA_ARGS__); \ 61 DISPLAY("Error occurred while generating data: %s\n", \ 1266 DISPLAY("Error: could not allocate space for samples\n"); in genRandomDict() 1290 DISPLAY("Error: dictionary size is too small\n"); in genRandomDict() 1310 DISPLAY("Could not finalize dictionary: %s\n", ZDICT_getErrorName(dictWriteSize)); in genRandomDict() 1490 DISPLAY("Error in block mode on test seed %u: %s\n", in runBlockTest() 1498 DISPLAY("Error in block mode with dictionary on test seed %u: %s\n", in runBlockTest() 1516 DISPLAY("Error in simple mode on test seed %u: %s\n", in runFrameTest() [all …]
|
/aosp_15_r20/external/zstd/zlibWrapper/examples/ |
H A D | zwrapbench.c | 75 #define DISPLAY(...) fprintf(displayOut, __VA_ARGS__) macro 76 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } 82 { g_time = clock(); DISPLAY(__VA_ARGS__); \ 94 #define DEBUGOUTPUT(...) { if (DEBUG) DISPLAY(__VA_ARGS__); } 415 DISPLAY("ZSTD_decompress_usingDDict() failed on block %u : %s \n", in BMK_benchMem() 539 …DISPLAY("!!! WARNING !!! %14s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOrig,… in BMK_benchMem() 544 DISPLAY("Decoding error at pos %u ", (unsigned)u); in BMK_benchMem() 551 DISPLAY("(block %u, sub %u, pos %u) \n", segNb, bNb, pos); in BMK_benchMem() 555 DISPLAY("no difference detected\n"); in BMK_benchMem() 566 …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 …]
|
/aosp_15_r20/frameworks/base/core/jni/ |
H A D | com_google_android_gles_jni_EGLImpl.cpp | 464 #define DISPLAY "Ljavax/microedition/khronos/egl/EGLDisplay;" macro 474 {"eglInitialize", "(" DISPLAY "[I)Z", (void*)jni_eglInitialize }, 475 {"eglQueryContext", "(" DISPLAY CONTEXT "I[I)Z", (void*)jni_eglQueryContext }, 476 {"eglQuerySurface", "(" DISPLAY SURFACE "I[I)Z", (void*)jni_eglQuerySurface }, 478 {"getInitCount", "(" DISPLAY ")I", (void*)jni_getInitCount }, 479 {"eglChooseConfig", "(" DISPLAY "[I[" CONFIG "I[I)Z", (void*)jni_eglChooseConfig }, 480 {"_eglCreateContext","(" DISPLAY CONFIG CONTEXT "[I)J", (void*)jni_eglCreateContext }, 481 {"eglGetConfigs", "(" DISPLAY "[" CONFIG "I[I)Z", (void*)jni_eglGetConfigs }, 482 {"eglTerminate", "(" DISPLAY ")Z", (void*)jni_eglTerminate }, 483 {"eglCopyBuffers", "(" DISPLAY SURFACE OBJECT ")Z", (void*)jni_eglCopyBuffers }, [all …]
|
/aosp_15_r20/external/zstd/contrib/largeNbDicts/ |
H A D | largeNbDicts.c | 62 #define DISPLAY(...) fprintf(stdout, __VA_ARGS__) macro 63 #define DISPLAYLEVEL(l, ...) { if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } } 730 DISPLAY("Compression Speed : %.1f MB/s \r", speed_MBps); in benchMem() 732 DISPLAY("Decompression Speed : %.1f MB/s \r", speed_MBps); in benchMem() 738 DISPLAY("\n"); in benchMem() 743 DISPLAY("Fastest Speed : %.1f MB/s \n", speedAggregated); in benchMem() 745 DISPLAY("Median Speed : %.1f MB/s \n", speedAggregated); in benchMem() 977 DISPLAY (" \n"); in usage() 978 DISPLAY (" %s [Options] filename(s) \n", exeName); in usage() 979 DISPLAY (" \n"); in usage() [all …]
|
/aosp_15_r20/external/libcups/examples/ |
H A D | get-jobs.test | 25 DISPLAY job-id 26 DISPLAY job-state 27 DISPLAY job-name 28 DISPLAY job-originating-user-name 29 DISPLAY job-impressions 30 DISPLAY job-impressions-completed 31 DISPLAY job-media-sheets 32 DISPLAY job-media-sheets-completed
|
H A D | get-completed-jobs.test | 26 DISPLAY job-id 27 DISPLAY job-state 28 DISPLAY job-name 29 DISPLAY job-originating-user-name 30 DISPLAY job-media-sheets-completed
|
/aosp_15_r20/packages/services/Car/tests/carservice_unit_test/src/com/android/car/power/ |
D | PowerComponentHandlerUnitTest.java | 23 import static android.car.hardware.power.PowerComponent.DISPLAY; 88 new int[]{AUDIO, BLUETOOTH, CELLULAR, CPU, DISPLAY, ETHERNET, INPUT, LOCATION, in testGetAccumulatedPolicy_firstTime() 98 DISPLAY, VOICE_INTERACTION}, new int[]{AUDIO}); in testApplyPowerPolicy_oneTime() 100 DISPLAY, VOICE_INTERACTION}, new int[]{AUDIO, CELLULAR, CPU, ETHERNET, INPUT, in testApplyPowerPolicy_oneTime() 113 new CarPowerPolicy("test_policy2", new int[]{WIFI, DISPLAY}, new int[]{NFC}), in testApplyPowerPolicy_multipleTimes() 117 new int[]{AUDIO, MEDIA, DISPLAY, INPUT, CPU, VOICE_INTERACTION}, in testApplyPowerPolicy_multipleTimes() 134 CarPowerPolicy policy2 = new CarPowerPolicy("test_policy2", new int[]{WIFI, DISPLAY}, in testApplyPowerPolicy_withCustomComponents() 141 new int[]{DISPLAY, WIFI, VOICE_INTERACTION, customComponentId}, in testApplyPowerPolicy_withCustomComponents() 150 new int[]{NFC, DISPLAY}); in testApplyPowerPolicy_withCustomComponents() 157 new int[]{DISPLAY, INPUT, MEDIA, BLUETOOTH, CELLULAR, ETHERNET, LOCATION, in testApplyPowerPolicy_withCustomComponents()
|
D | PolicyReaderUnitTest.java | 23 import static android.car.hardware.power.PowerComponent.DISPLAY; 82 new int[]{AUDIO, MEDIA, DISPLAY, BLUETOOTH, CELLULAR, ETHERNET, PROJECTION, NFC, INPUT, 86 new int[]{MEDIA, DISPLAY, BLUETOOTH, WIFI, CELLULAR, ETHERNET, PROJECTION, NFC, INPUT, 91 new int[]{AUDIO, DISPLAY, BLUETOOTH, WIFI, VOICE_INTERACTION, 100 new int[]{AUDIO, MEDIA, DISPLAY, BLUETOOTH, PROJECTION, NFC, INPUT, 105 new int[]{AUDIO, MEDIA, DISPLAY, PROJECTION, INPUT, VOICE_INTERACTION, 115 new int[]{AUDIO, MEDIA, DISPLAY, PROJECTION, INPUT, VOICE_INTERACTION, 122 new int[]{AUDIO, MEDIA, DISPLAY, BLUETOOTH, CELLULAR, ETHERNET, PROJECTION, NFC, INPUT, 128 new int[]{AUDIO, MEDIA, DISPLAY, BLUETOOTH, CELLULAR, ETHERNET, PROJECTION, NFC, INPUT, 133 new int[]{MEDIA, DISPLAY, BLUETOOTH, WIFI, CELLULAR, ETHERNET, PROJECTION, NFC, INPUT, [all …]
|
/aosp_15_r20/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/medical/ |
D | DisplayNameExtractor.kt | 45 private const val DISPLAY = "display" in <lambda>() constant 106 return coding.optString(DISPLAY) in <lambda>() 110 codingArray.optJSONObject(0)?.optString(DISPLAY) in <lambda>() 116 val classText = fhirData.optJSONObject(CLASS)?.optStringOrNull(DISPLAY) in <lambda>() 131 ?.optString(DISPLAY)) in <lambda>() 141 return medicationReference?.optStringOrNull(DISPLAY) in <lambda>() 147 return coding.optString(DISPLAY) in <lambda>() 150 codingArray.optJSONObject(0)?.optString(DISPLAY) in <lambda>() 208 ?.optString(DISPLAY) in <lambda>() 216 ?.optString(DISPLAY) in <lambda>()
|
/aosp_15_r20/external/zstd/programs/ |
H A D | benchzstd.c | 76 #define DISPLAY(...) \ macro 83 DISPLAY(__VA_ARGS__); \ 106 DISPLAY(__VA_ARGS__); \ 123 DISPLAY("Error : "); \ 124 DISPLAY("%s failed : %s", #zf, ZSTD_getErrorName(zerr)); \ 125 DISPLAY(" \n"); \ 689 DISPLAY("!!! WARNING !!! %14s : Invalid Checksum : %x != %x \n", in BMK_benchMemAdvancedNoAlloc() 697 DISPLAY("Decoding error at pos %u ", (unsigned)u); in BMK_benchMemAdvancedNoAlloc() 705 DISPLAY("(sample %u, block %u, pos %u) \n", in BMK_benchMemAdvancedNoAlloc() 712 DISPLAY("origin: "); in BMK_benchMemAdvancedNoAlloc() [all …]
|
/aosp_15_r20/external/libcxx/test/support/ |
H A 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)
|
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/wifi/supplicant/1.0/android.hardware.wifi.supplicant-V1.0-java_gen_java/gen/srcs/android/hardware/wifi/supplicant/V1_0/ |
D | WpsConfigMethods.java | 8 public static final short DISPLAY = 8 /* 0x0008 */; field in WpsConfigMethods 29 if (o == DISPLAY) { in toString() 80 if ((o & DISPLAY) == DISPLAY) { in dumpBitfield() 82 flipped |= DISPLAY; in dumpBitfield()
|
/aosp_15_r20/packages/services/Car/cpp/powerpolicy/server/tests/ |
D | PolicyManagerTest.cpp | 119 PowerComponent::DISPLAY, 137 PowerComponent::DISPLAY, 153 {PowerComponent::AUDIO, PowerComponent::MEDIA, PowerComponent::DISPLAY, 163 PowerComponent::DISPLAY, 180 PowerComponent::DISPLAY, PowerComponent::BLUETOOTH, 190 {PowerComponent::MEDIA, PowerComponent::DISPLAY, 201 {PowerComponent::MEDIA, PowerComponent::DISPLAY, 218 {PowerComponent::AUDIO, PowerComponent::DISPLAY, 225 {PowerComponent::AUDIO, PowerComponent::DISPLAY, 239 {PowerComponent::AUDIO, PowerComponent::MEDIA, PowerComponent::DISPLAY, [all …]
|
D | PowerComponentHandlerTest.cpp | 91 {PowerComponent::AUDIO, PowerComponent::DISPLAY}, {}, {}); in TEST_F() 97 ASSERT_FALSE(*handler.getPowerComponentState(PowerComponent::DISPLAY)); in TEST_F() 103 {PowerComponent::AUDIO, PowerComponent::DISPLAY}, in TEST_F() 116 {PowerComponent::WIFI, PowerComponent::DISPLAY}, in TEST_F() 125 {PowerComponent::AUDIO, PowerComponent::MEDIA, PowerComponent::DISPLAY, in TEST_F() 152 {PowerComponent::MEDIA, PowerComponent::DISPLAY, PowerComponent::INPUT, in TEST_F()
|