HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 1176 - 1200 of 11127) sorted by null

<<41424344454647484950>>

  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv_sw_c.h 29 extern SDL_Overlay *SDL_CreateYUV_SW(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.h 29 extern SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fb3dfx.c 56 Uint32 format; local
67 /* Set the destination pixel format */
69 bpp = dst->format->BitsPerPixel;
70 format = dst->pitch | ((bpp+((bpp==8) ? 0 : 8)) << 13);
79 tdfx_out32(DSTFORMAT, format);
114 /* Set the source and destination pixel format */
116 bpp = src->format->BitsPerPixel;
119 bpp = dst->format->BitsPerPixel;
142 tdfx_out32(SRCCOLORKEYMIN, src->format->colorkey);
143 tdfx_out32(SRCCOLORKEYMAX, src->format->colorkey)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxmodes.c 31 SDL_Rect ** NX_ListModes (_THIS, SDL_PixelFormat * format, Uint32 flags)
36 if (SDL_Visual.bpp == format -> BitsPerPixel) {
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv_c.h 42 long format; member in struct:private_yuvhwdata
56 extern SDL_Overlay* ph_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display);
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsyuv_c.h 29 extern SDL_Overlay *GS_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5yuv_c.h 30 extern SDL_Overlay *DX5_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11yuv_c.h 31 extern SDL_Overlay *X11_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/include/qemu/
compiler.h 41 # define GCC_FMT_ATTR(n, m) __attribute__((format(printf, n, m)))
43 /* Use gnu_printf when supported (qemu uses standard format strings). */
44 # define GCC_FMT_ATTR(n, m) __attribute__((format(gnu_printf, n, m)))
46 /* Map __printf__ to __gnu_printf__ because we want standard format strings
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPasswordTransformationMethod.java 20 return String.format(String.format("%%0%dd", charSequence.length()), 0).replace("0", "\u2022");
  /external/skia/tools/
reformat-json.py 11 Rewrites a JSON file to use Python's standard JSON pretty-print format,
14 by format differences).
  /external/smack/asmack-master/static-src/custom/de/measite/smack/
AndroidDebugger.java 59 dateFormatter.format(new Date()) + " RCV (" + connection.hashCode() +
71 dateFormatter.format(new Date()) + " SENT (" + connection.hashCode() +
90 dateFormatter.format(new Date()) + " RCV PKT (" +
101 dateFormatter.format(new Date()) + " Connection closed (" +
108 dateFormatter.format(new Date()) +
116 dateFormatter.format(new Date()) +
124 dateFormatter.format(new Date()) + " Connection reconnected (" +
130 dateFormatter.format(new Date()) + " Connection (" +
  /external/smack/src/de/measite/smack/
AndroidDebugger.java 59 dateFormatter.format(new Date()) + " RCV (" + connection.hashCode() +
71 dateFormatter.format(new Date()) + " SENT (" + connection.hashCode() +
90 dateFormatter.format(new Date()) + " RCV PKT (" +
101 dateFormatter.format(new Date()) + " Connection closed (" +
108 dateFormatter.format(new Date()) +
116 dateFormatter.format(new Date()) +
124 dateFormatter.format(new Date()) + " Connection reconnected (" +
130 dateFormatter.format(new Date()) + " Connection (" +
  /external/smack/src/org/jivesoftware/smack/debugger/
ConsoleDebugger.java 73 dateFormatter.format(new Date()) + " RCV (" + connection.hashCode() +
85 dateFormatter.format(new Date()) + " SENT (" + connection.hashCode() +
104 dateFormatter.format(new Date()) + " RCV PKT (" +
115 dateFormatter.format(new Date()) + " Connection closed (" +
122 dateFormatter.format(new Date()) +
130 dateFormatter.format(new Date()) +
138 dateFormatter.format(new Date()) + " Connection reconnected (" +
144 dateFormatter.format(new Date()) + " Connection (" +
  /external/valgrind/main/coregrind/
pub_core_libcassert.h 57 #define vg_assert2(expr, format, args...) \
61 format, ##args), \
  /frameworks/av/media/libstagefright/include/
SoftwareRenderer.h 37 void *platformPrivate, const sp<AMessage> &format);
55 void resetFormatIfChanged(const sp<AMessage> &format);
  /frameworks/av/tools/resampler_tools/
fir.cpp 81 " -f output format, can be fixed-point or floating-point (fixed)\n"
100 int format = 0; local
189 format = 0;
192 format = 0;
196 format = 1;
241 if (!format) {
245 printf("static %s resampleFIR[] = {", !format ? "int32_t" : "float");
260 if (!format) {
283 if (!format) {
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
EventsCommand.java 60 System.out.println(String.format("%s %s",
61 formatter.format(new Date()), event.toString()));
  /frameworks/base/core/java/android/view/
GraphicBuffer.java 74 * @param format The format of each pixel as specified in {@link PixelFormat}
79 public static GraphicBuffer create(int width, int height, int format, int usage) {
80 long nativeObject = nCreateGraphicBuffer(width, height, format, usage);
82 return new GraphicBuffer(width, height, format, usage, nativeObject);
90 private GraphicBuffer(int width, int height, int format, int usage, long nativeObject) {
93 mFormat = format;
113 * Returns the pixel format of this buffer. The pixel format must be one of
272 int format = in.readInt()
    [all...]
SurfaceHolder.java 24 * control the surface size and format, edit the pixels in the surface, and
82 * This is called immediately after any structural changes (format or
88 * @param format The new PixelFormat of the surface.
92 public void surfaceChanged(SurfaceHolder holder, int format, int width,
180 * @param format A constant from PixelFormat.
184 public void setFormat(int format);
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 176 String.format(
180 String.format(
203 String.format(
207 String.format(
232 String.format("%s[%d] must not be null", valueName, i));
260 String.format("%s[%d] must not be null", valueName, ctr));
317 String.format("%s[%d] is out of range of [%f, %f] (too low)",
321 String.format("%s[%d] is out of range of [%f, %f] (too high)",
  /frameworks/base/media/java/android/media/
AudioDevicePort.java 57 * Get the device address. Address format varies with the device type.
75 public AudioDevicePortConfig buildConfig(int samplingRate, int channelMask, int format,
77 return new AudioDevicePortConfig(this, samplingRate, channelMask, format, gain);
MediaMuxer.java 71 * Defines the output format. These constants are used with constructor.
78 /** MPEG4 media file format*/
84 private static native long nativeSetup(FileDescriptor fd, int format);
114 * @param format The format of the output media file.
118 public MediaMuxer(String path, int format) throws IOException {
122 if (format != OutputFormat.MUXER_OUTPUT_MPEG_4 &&
123 format != OutputFormat.MUXER_OUTPUT_WEBM) {
124 throw new IllegalArgumentException("format is invalid");
132 mNativeObject = nativeSetup(fd, format);
    [all...]
  /frameworks/base/media/java/android/media/tv/
ITvInputHardware.aidl 60 * @param format desired format. Use default when it's AudioFormat.ENCODING_DEFAULT.
63 int format);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaFrameworkIntegrationTestRunner.java 64 String.format("Reading camera_id from icicle: '%s'", cameraId));
68 Log.e(TAG, String.format("Failed to convert camera_id to integer"));

Completed in 530 milliseconds

<<41424344454647484950>>