HomeSort by relevance Sort by last modified time
    Searched full:planes (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /external/libvpx/vpx/src/
vpx_image.c 184 img->planes[VPX_PLANE_PACKED] =
193 img->planes[VPX_PLANE_ALPHA] =
198 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
203 img->planes[VPX_PLANE_U] = data
207 img->planes[VPX_PLANE_V] = data
213 img->planes[VPX_PLANE_V] = data
217 img->planes[VPX_PLANE_U] = data
237 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
240 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
244 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_phyuv.c 49 int planes = 0; local
60 planes++;
63 planes++;
66 planes++;
68 return planes;
77 int planes; local
209 planes = grab_ptrs2(overlay->hwdata->channel, overlay->hwdata->FrameData0, overlay->hwdata->FrameData1);
218 /* check for the validness of all planes */
224 SDL_SetError("PgConfigScaler() returns all planes equal NULL\n");
246 overlay->planes = planes
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 77 JSAMPARRAY planes[3]; local
78 planes[0] = y;
79 planes[1] = cb;
80 planes[2] = cr;
107 jpeg_write_raw_data(cinfo, planes, 16);
150 JSAMPARRAY planes[3]; local
151 planes[0] = y;
152 planes[1] = cb;
153 planes[2] = cr;
178 jpeg_write_raw_data(cinfo, planes, 16)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysyuv.cc 133 int planes; local
144 /* count planes */
145 planes = count_planes(format);
146 if (planes == 0)
151 if (planes == 3)
213 overlay->planes = planes;
214 overlay->pitches = (Uint16*)SDL_calloc(overlay->planes, sizeof(Uint16));
215 overlay->pixels = (Uint8**)SDL_calloc(overlay->planes, sizeof(Uint8*));
  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_ataric2p_s.h 35 Uint8 *dest, /* Destination (4/8 bits planes) */
49 Uint8 *dest, /* Destination (8 bits planes) */
63 Uint8 *dest, /* Destination (4 bits planes) */
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_yuv.c 47 Uint8 *planes[3]; member in struct:private_yuvhwdata
192 overlay->pixels = hwdata->planes;
197 overlay->planes = 3;
200 overlay->planes = 1;
230 /* Add the two extra planes */
  /external/webkit/WebKit/mac/Carbon/
CarbonUtils.m 119 unsigned char* planes[5];
121 [rep getBitmapDataPlanes:planes];
123 image = _NSCreateImageRef( planes, [rep pixelsWide], [rep pixelsHigh],
  /external/libvpx/examples/
decoder_tmpl.txt 48 unsigned char *buf =img->planes[plane];
decode_to_md5.txt 35 unsigned char *buf =img->planes[plane];
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 103 * Given an n-gon as input, clipping against 6 planes could generate an
114 /* count vertices "outside" with respect to each of the six planes */
129 /* check if all vertices are "outside" any of the six planes */
137 * now clip against each of the planes that might cut the polygon,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fb.h 40 #define FB_TYPE_PLANES 1 /* Non interleaved planes */
41 #define FB_TYPE_INTERLEAVED_PLANES 2 /* Interleaved planes */
43 #define FB_TYPE_VGA_PLANES 4 /* EGA/VGA planes */
58 #define FB_AUX_VGA_PLANES_VGA4 0 /* 16 color planes (EGA/VGA) */
59 #define FB_AUX_VGA_PLANES_CFB4 1 /* CFB4 in planes (VGA) */
60 #define FB_AUX_VGA_PLANES_CFB8 2 /* CFB8 in planes (VGA) */
151 __u32 type_aux; /* Interleave for interleaved Planes */
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5yuv.c 45 Uint8 *planes[3]; member in struct:private_yuvhwdata
181 overlay->pixels = hwdata->planes;
185 overlay->planes = 3;
188 overlay->planes = 1;
227 /* Add the two extra planes */
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios_centscreen.c 78 void SDL_XBIOS_CentscreenSetmode(_THIS, int width, int height, int planes)
85 newmode.plan = planes;
SDL_xbios_sb3.h 58 unsigned short device; /* Device number to find planes = getRez() */
  /external/quake/quake/src/QW/server/
worlda.s 54 // %ebp: hull->planes
62 // plane = hull->planes + node->planenum;
  /frameworks/base/media/libstagefright/codecs/on2/dec/
VPXDecoder.cpp 240 const uint8_t *srcLine = (const uint8_t *)img->planes[PLANE_Y];
249 srcLine = (const uint8_t *)img->planes[PLANE_U];
257 srcLine = (const uint8_t *)img->planes[PLANE_V];
  /external/icu4c/extra/uconv/
uconv.1.in 300 for planes 1 and above characters,
304 character. Characters from planes 1 and above are written as a pair of
312 for planes 1 and above characters,
316 character. Characters from planes 1 and above are written as a pair of
324 for planes 1 and above characters,
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 24 * array irrespective of the number of image planes in it.
45 * In the case of more than one image plane, the image planes must be
68 * @param yuv The YUV data. In the case of more than one image plane, all the planes must be
  /bootable/recovery/tools/ota/
convert-to-bmp.py 34 "H" # planes (set to 1)
  /external/bluetooth/glib/tests/
utf8.txt 297 # Mixed plane 0 and higher planes
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11yuv.c 321 overlay->planes = hwdata->image->num_planes;
322 overlay->pitches = (Uint16 *)SDL_malloc(overlay->planes * sizeof(Uint16));
323 overlay->pixels = (Uint8 **)SDL_malloc(overlay->planes * sizeof(Uint8 *));
329 for ( i=0; i<overlay->planes; ++i ) {
  /device/samsung/crespo/include/
s5p_fimc.h 35 * FIMC TYPE PLANES ORDER V4L2_PIX_FMT
100 int planes; member in struct:yuv_fmt_list
  /external/quake/quake/src/QW/client/
bspfile.h 115 // 0-2 are axial planes
120 // 3-5 are non-axial planes snapped to the nearest
pmove.c 102 The basic solid body movement clip that slides along multiple planes
113 vec3_t planes[MAX_CLIP_PLANES]; local
174 VectorCopy (trace.plane.normal, planes[numplanes]);
178 // modify original_velocity so it parallels all of the clip planes
182 PM_ClipVelocity (original_velocity, planes[i], pmove.velocity, 1);
186 if (DotProduct (pmove.velocity, planes[j]) < 0)
204 CrossProduct (planes[0], planes[1], dir);
  /external/quake/quake/src/WinQuake/
worlda.s 74 // %ebp: hull->planes
82 // plane = hull->planes + node->planenum;

Completed in 1261 milliseconds

1 2 3 4 5 6