HomeSort by relevance Sort by last modified time
    Searched refs:DISPLAY (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/lz4/programs/
lz4cli.c 76 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
77 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
78 static unsigned displayLevel = 2; /* 0 : no display ; 1: errors only ; 2 : downgradable normal ; 3 : non-downgradable normal; 4 : + information */
85 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__);
112 DISPLAY( "Usage : \n");
113 DISPLAY( " %s [arg] [input] [output] \n", exeName);
114 DISPLAY( "\n");
115 DISPLAY( "input : a filename \n");
116 DISPLAY( " with no FILE, or when FILE is - or %s, read standard input\n", stdinmark);
117 DISPLAY( "Arguments : \n")
    [all...]
bench.c 83 * console display
85 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
86 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
87 static U32 g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
91 { g_time = clock(); DISPLAY(__VA_ARGS__); \
103 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__);
178 if (strlen(displayName)>17) displayName += strlen(displayName)-17; /* can only display 17 characters */
295 DISPLAY("LZ4_decompress_safe() failed on block %u \n", blockNb);
320 DISPLAY("!!! WARNING !!! %14s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOrig, (unsigned)crcCheck);
325 DISPLAY("Decoding error at pos %u ", (U32)u)
    [all...]
  /external/lz4/tests/
datagencli.c 51 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
52 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
61 DISPLAY( "Compressible data generator\n");
62 DISPLAY( "Usage :\n");
63 DISPLAY( " %s [size] [args]\n", programName);
64 DISPLAY( "\n");
65 DISPLAY( "Arguments :\n");
66 DISPLAY( " -g# : generate # data (default:%i)\n", SIZE_DEFAULT);
67 DISPLAY( " -s# : Select seed (default:%i)\n", SEED_DEFAULT);
68 DISPLAY( " -P# : Select compressibility in %% (default:%i%%)\n", COMPRESSIBILITY_DEFAULT)
    [all...]
fullbench.c 90 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
91 #define PROGRESS(...) g_noPrompt ? 0 : DISPLAY(__VA_ARGS__)
109 DISPLAY("-Using Block Size of %i KB-\n", g_chunkSize>>10);
115 DISPLAY("- %i iterations -\n", g_nbIterations);
310 if (result!=0) { DISPLAY("Error decompressing frame : unfinished frame\n"); exit(8); }
311 if (srcSize != (size_t)inSize) { DISPLAY("Error decompressing frame : read size incorrect\n"); exit(9); }
324 if (LZ4F_isError(errorCode)) { DISPLAY("dctx allocation issue \n"); return 10; } }
343 if (inFile==NULL) { DISPLAY( "Pb opening %s\n", inFileName); return 11; }
347 if (inFileSize==0) { DISPLAY( "file is empty\n"); fclose(inFile); return 11; }
349 if (benchedSize==0) { DISPLAY( "not enough memory\n"); fclose(inFile); return 11;
    [all...]
frametest.c 80 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
81 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
84 { g_clockTime = clock(); DISPLAY(__VA_ARGS__); \
183 DISPLAY("allocation error, not enough memory to start fuzzer tests \n");
254 DISPLAY("%u bytes missing != %u bytes requested \n", (U32)missingBytes, (U32)decResult);
265 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; }
529 DISPLAY("Basic tests completed \n");
540 DISPLAY("Error detected ! \n");
551 DISPLAY("Non-contiguous output test (%i bytes)\n", (int)size);
555 DISPLAY("Error at pos %i/%i : %02X != %02X \n", p, (int)size, b1[p], b2[p])
    [all...]
fuzzer.c 78 #define DISPLAY(...) fprintf(stdout, __VA_ARGS__)
79 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
99 DISPLAY("\r%5u ", testNb);
165 DISPLAY("Overflow tests : ");
169 DISPLAY("64 bits mode : no overflow \n");
178 DISPLAY("not enough memory for tests \n");
183 DISPLAY("%3i \b\b\b\b", nbBuff); fflush(stdout);
188 DISPLAY("high address detected : ");
204 if (r>0) { DISPLAY("LZ4_decompress_safe = %i \n", r); goto _overflowError; }
210 if (r>0) { DISPLAY("LZ4_decompress_safe = %i \n", r); goto _overflowError;
    [all...]
  /external/selinux/sandbox/
sandboxX.sh 24 export DISPLAY=:$D
27 DISPLAY=$DISPLAY "\$@"
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
GoNegReqPinTestCase.java 33 return connectTest(false, WpsInfo.DISPLAY);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
compile.py 10 DISPLAY = 0
25 DISPLAY = 1
38 profile.run('compileFile(%r, %r)' % (filename, DISPLAY),
41 compileFile(filename, DISPLAY)
  /external/python/cpython2/Tools/compiler/
compile.py 10 DISPLAY = 0
25 DISPLAY = 1
38 profile.run('compileFile(%r, %r)' % (filename, DISPLAY),
41 compileFile(filename, DISPLAY)
  /libcore/luni/src/test/java/libcore/java/util/
Locales.java 23 import static java.util.Locale.Category.DISPLAY;
42 * Sets the specified default Locale, default DISPLAY Locale and default FORMAT Locale.
93 Locale.setDefault(DISPLAY, displayLocale);
99 Locale.getDefault(), Locale.getDefault(DISPLAY), Locale.getDefault(FORMAT));
  /frameworks/base/drm/java/android/drm/
DrmStore.java 195 public static final int DISPLAY = 0x07;
208 case DISPLAY:
  /packages/apps/Camera2/src/com/android/camera/settings/
CameraPictureSizesCacher.java 52 editor.putString(key_build, Build.DISPLAY);
92 editor.putString(key_build, Build.DISPLAY);
115 if (thisCameraCachedBuild != null && thisCameraCachedBuild.equals(Build.DISPLAY)) {
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
AboutFragment.java 52 text += "Android Build ID: " + Build.DISPLAY + "\n";
  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
machine_replay.sh 62 export DISPLAY=:0
  /hardware/interfaces/wifi/supplicant/1.0/
types.hal 99 DISPLAY = 0x0008,
  /external/ltp/tools/pounder21/test_scripts/
xterm_stress 30 #if [ -z "$DISPLAY" ]; then
61 export DISPLAY=:2
63 $XSERVER_FILE -- $DISPLAY -ac vt9 &
65 $POUNDER_HOME/timed_loop $TEST_DURATION $XSERVER_FILE $DISPLAY -ac vt9 &
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 27 #include <private/EGL/display.h>
117 static jboolean jni_eglInitialize(JNIEnv *_env, jobject _this, jobject display,
119 if (display == NULL || (major_minor != NULL &&
125 EGLDisplay dpy = getDisplay(_env, display);
140 static jboolean jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display,
142 if (display == NULL || context == NULL || value == NULL
147 EGLDisplay dpy = getDisplay(_env, display);
159 static jboolean jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display,
161 if (display == NULL || surface == NULL || value == NULL
166 EGLDisplay dpy = getDisplay(_env, display);
    [all...]
  /external/toolchain-utils/binary_search_tool/sysroot_wrapper/
glibc_test_script.sh 39 echo "export DISPLAY=:0.0; echo \$DISPLAY; /usr/local/piglit/lib/piglit/bin/glx-close-display -auto" > /tmp/repro.sh
43 # notice the bash -l here. Otherwise the DISPLAY cannot be set
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_gl.py 88 # insure that we at least have an X display before continuing.
91 display = os.environ['DISPLAY']
93 raise unittest.SkipTest, "No $DISPLAY -- skipping gl test"
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
Currency.java 20 * can return various data necessary to its proper display:
22 * <ul><li>A display symbol, for a specific locale
23 * <li>The number of fraction digits to display
27 * The <tt>DecimalFormat</tt> class uses these data to display
260 return currency.getSymbol(ULocale.getDefault(Category.DISPLAY).toLocale());
286 // * Returns the display name for the given currency in the
299 // * Returns the display name for the given currency in the
300 // * given locale. For example, the display name for the USD
302 // * @param locale locale in which to display currency
309 // * @return display string for this currency. If the resource dat
    [all...]
  /external/libchrome/base/threading/
platform_thread_linux.cc 38 {ThreadPriority::DISPLAY, -8},
  /external/python/cpython2/Lib/test/
test_gl.py 87 # insure that we at least have an X display before continuing.
90 display = os.environ['DISPLAY']
92 raise unittest.SkipTest, "No $DISPLAY -- skipping gl test"
  /frameworks/base/core/tests/coretests/src/android/os/
BuildTest.java 57 assertNotEmpty("DISPLAY", Build.DISPLAY);
  /frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java 31 /** Display pin method configuration - pin is generated and displayed on device */
32 public static final int DISPLAY = 1;

Completed in 792 milliseconds

1 2 3 4 5 6