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

1 2 3

  /prebuilts/jdk/jdk8/darwin-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/
Module.java 48 DISPLAY, CLOCK, THERMOMETER, HEATER, SPEAKER, GSM, LED;
  /prebuilts/jdk/jdk8/linux-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/
Module.java 48 DISPLAY, CLOCK, THERMOMETER, HEATER, SPEAKER, GSM, LED;
  /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...]
  /frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java 34 /** Display pin method configuration - pin is generated and displayed on device
37 public static final int DISPLAY = 1;
  /external/libchrome/base/threading/
platform_thread.h 113 // Suitable for threads which generate data for the display (at ~60Hz).
114 DISPLAY,
  /frameworks/base/drm/java/android/drm/
DrmStore.java 195 public static final int DISPLAY = 0x07;
208 case DISPLAY:
  /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...]
lz4io.c 101 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
102 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
103 static int g_displayLevel = 0; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */
107 { g_time = clock(); DISPLAY(__VA_ARGS__); \
132 #define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__);
275 DISPLAY("%s already exists; not overwritten \n", dstFileName);
278 DISPLAY("%s already exists; do you wish to overwrite (y/N) ? ", dstFileName);
281 DISPLAY(" not overwritten \n");
    [all...]
  /frameworks/av/include/drm/
drm_framework_common.h 188 static const int DISPLAY = 0x07;
  /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...]
  /frameworks/base/core/java/android/os/
Build.java 48 public static final String DISPLAY = getString("ro.build.display.id");
    [all...]
  /device/google/marlin/camera/usbcamcore/src/
QualcommUsbCamera.cpp 89 #define DISPLAY 1
767 #if DISPLAY
784 /* - dequeue all the display buffers */
853 /* - dequeue all the display buffers */
962 #endif /* #if DISPLAY */
969 * Description: This function de-initializes all the display buffers allocated
    [all...]
  /hardware/qcom/camera/msm8998/usbcamcore/src/
QualcommUsbCamera.cpp 89 #define DISPLAY 1
767 #if DISPLAY
784 /* - dequeue all the display buffers */
853 /* - dequeue all the display buffers */
962 #endif /* #if DISPLAY */
969 * Description: This function de-initializes all the display buffers allocated
    [all...]
  /external/libavc/test/decoder/
main.c 213 UWORD32 display; member in struct:__anon24060
219 /* For signalling to display thread */
266 DISPLAY,
318 "Enable shared display buffer mode\n" },
323 { "--", "--display", DISPLAY,
324 "Enable display (uses SDL)\n" },
328 "FPS to be used for display \n" },
733 /* Description : Calls release display control - Used to signal to the */
743 /* Processing : Calls Release Display call *
    [all...]
  /external/libhevc/test/decoder/
main.c 209 UWORD32 display; member in struct:__anon24998
218 /* For signalling to display thread */
265 DISPLAY,
321 "Enable shared display buffer mode\n" },
324 { "--", "--display", DISPLAY,
325 "Enable display (uses SDL)\n" },
329 "FPS to be used for display \n" },
724 /* Description : Calls release display control - Used to signal to the */
734 /* Processing : Calls Release Display call *
    [all...]
  /external/libmpeg2/test/decoder/
main.c 204 UWORD32 display; member in struct:__anon25346
213 /* For signalling to display thread */
261 DISPLAY,
316 "Enable shared display buffer mode\n" },
321 { "--", "--display", DISPLAY,
322 "Enable display (uses SDL)\n" },
326 "FPS to be used for display \n" },
742 /* Description : Calls release display control - Used to signal to the */
752 /* Processing : Calls Release Display call *
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Locale.java 351 * {@link Locale.Category#DISPLAY DISPLAY} locale and one
690 * Display types for retrieving localized names from the name providers.
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
ULocale.java 265 DISPLAY,
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
ULocale.java 270 DISPLAY,
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ULocale.java 307 DISPLAY,
    [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 

Completed in 459 milliseconds

1 2 3