Searched defs:image (Results 176 - 200 of 902) sorted by relevance

1234567891011>>

/external/eigen/Eigen/src/Eigen2Support/
H A DLU.h38 MatrixType::RowsAtCompileTime, // the image is a subspace of the destination space, whose dimension is the number
40 Dynamic, // we don't know at compile time the dimension of the image (the rank)
42 MatrixType::MaxRowsAtCompileTime, // the image matrix will consist of columns from the original matrix,
73 *result = static_cast<const Base*>(this)->image(m_originalMatrix);
76 const ImageResultType image() const function in class:Eigen::LU
78 return static_cast<const Base*>(this)->image(m_originalMatrix);
/external/jpeg/
H A Dwrrle.c38 * Since RLE stores scanlines bottom-to-top, we have to invert the image
56 jvirt_sarray_ptr image; /* virtual array to store the output image */ member in struct:__anon22742
87 * Make sure the image can be stored in RLE format.
89 * - RLE stores image dimensions as *signed* 16 bit integers. JPEG
133 ((j_common_ptr) cinfo, dest->image, (JDIMENSION) 0, (JDIMENSION) 1, TRUE);
160 ((j_common_ptr) cinfo, dest->image,
201 /* Add a comment to the output image with the true colormap length. */
225 ((j_common_ptr) cinfo, dest->image,
239 ((j_common_ptr) cinfo, dest->image,
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dtextblit.c55 static void plot (const int x, const int y, unsigned char *image, const int pitch) argument
57 image [x+y*pitch] ^= 255;
61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) argument
106 plot(y,x, image, pitch);
120 plot(x,y, image, pitch);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_textblit.c27 static void plot(int x, int y, unsigned char *image, int pitch) { argument
28 image[x + y * pitch] ^= 255;
60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, argument
101 plot(y, x, image, pitch);
111 plot(x, y, image, pitch);
/external/mesa3d/src/egl/main/
H A Deglimage.h63 /* An image is a display resource */
78 * Increment reference count for the image.
90 * Decrement reference count for the image.
100 * Link an image to its display and return the handle of the link.
112 * Unlink a linked image from its display.
113 * Accessing an unlinked image should generate EGL_BAD_PARAMETER error.
123 * Lookup a handle to find the linked image.
124 * Return NULL if the handle has no corresponding linked image.
127 _eglLookupImage(EGLImageKHR image, _EGLDisplay *dpy) argument
129 _EGLImage *img = (_EGLImage *) image;
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmemory.cpp117 image::image(clover::context &ctx, cl_mem_flags flags, function in class:image
128 image::resource(cl_command_queue q) {
144 image::format() const {
149 image::width() const {
154 image::height() const {
159 image::depth() const {
164 image::row_pitch() const {
169 image::slice_pitch() const {
177 image(ct
[all...]
H A Dmemory.hpp107 struct image : public memory_obj { struct in namespace:clover
109 image(clover::context &ctx, cl_mem_flags flags,
135 struct image2d : public image {
145 struct image3d : public image {
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_masks.c61 struct vg_image *image = handle_to_image(mask); local
62 mask_using_image(image, operation, x, y, width, height);
H A Dapi_text.c103 VGImage image,
121 if (image != VG_INVALID_HANDLE &&
122 !vg_context_is_object_valid(ctx, VG_OBJECT_IMAGE, image)) {
127 img_obj = handle_to_image(image);
101 vegaSetGlyphToImage(VGFont font, VGuint glyphIndex, VGImage image, const VGfloat glyphOrigin[2], const VGfloat escapement[2]) argument
/external/mesa3d/src/gbm/backends/dri/
H A Dgbm_driint.h50 __DRIimageExtension *image; member in struct:gbm_dri_device
57 __DRIimage *(*lookup_image)(__DRIscreen *screen, void *image, void *data);
74 __DRIimage *image; member in struct:gbm_dri_bo
/external/mesa3d/src/mesa/main/
H A Dtexcompress.c436 * compressed texture image.
437 * \param col, row, img - image position (3D), should be a multiple of the
439 * \param format - compressed image format
440 * \param width - image width (stride) in pixels
441 * \param image - the image address
447 GLsizei width, const GLubyte *image)
462 return (GLubyte *) image + offset;
467 * Decompress a compressed texture image, returning a GL_RGBA/GL_FLOAT image
445 _mesa_compressed_image_address(GLint col, GLint row, GLint img, gl_format mesaFormat, GLsizei width, const GLubyte *image) argument
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_image.c49 void opd_delete_image(struct opd_image * image) argument
51 verbprintf(vmisc, "Deleting image: name %s app_name %s, kernel %d, "
53 image->name, image->app_name, image->kernel,
54 image->tid, image->tgid, (int)image->ref_count);
56 if (image->ref_count <= 0) {
57 printf("image
87 struct opd_image * image = local
133 struct opd_image * image; local
177 is_same_image(struct opd_image const * image, char const * app_name, pid_t tid, pid_t tgid) argument
225 struct opd_image * image = 0; local
252 struct opd_image * image; local
[all...]
H A Dopd_mapping.c62 opd_delete_image(map->image);
68 void opd_add_mapping(struct opd_proc * proc, struct opd_image * image, argument
74 proc->tid, start, end, offset, image->name);
78 /* first map is the primary image */
82 proc->name = xstrdup(image->name);
85 image->ref_count++;
87 map->image = image;
142 struct opd_image * image; local
166 image
[all...]
H A Dopd_parse_proc.c47 struct opd_image * image; local
75 image = opd_get_image(cp, image_name, 0, proc->tid, proc->tgid);
76 if (!image)
79 opd_add_mapping(proc, image, start, offset, end);
117 verbprintf(vmisc, "image name %s for pid %u %u\n", image_name, proc->tid, proc->tgid);
128 /* dae assume than the first map added is the primary image name, this
130 * the primary image name
134 if (!strcmp(map->image->name, image_name)) {
136 fprintf(stderr, "swap map for image %s from %s to %s\n", image_name, proc->name, map->image
152 struct opd_image * image = opd_get_image(image_name, local
[all...]
/external/oprofile/daemon/
H A Dopd_kernel.c89 * Allocate and initialise a kernel image description
90 * @param name image name
97 struct kernel_image * image = xmalloc(sizeof(struct kernel_image)); local
99 image->name = xstrdup(name);
100 image->start = start;
101 image->end = end;
102 list_add(&image->list, &modules);
104 return image;
109 * Clear and free all kernel image information and reset
116 struct kernel_image * image; local
143 struct kernel_image * image; local
211 struct kernel_image * image = &vmlinux_image; local
[all...]
/external/oprofile/libpp/
H A Dlocate_images.cpp133 string image = op_realpath(archive_path + image_name); local
134 if (op_file_readable(image)) {
136 return fixup ? image : image_name;
150 string image = op_realpath(root_path + image_name); local
151 if (op_file_readable(image)) {
153 return fixup ? image : image_name;
166 string const image = locate_image(image_name, error, fixup); local
168 return image;
170 string const base = op_basename(image);
190 // library in the image pat
[all...]
/external/pixman/pixman/
H A Dpixman-edge-imp.h27 RASTERIZE_EDGES (pixman_image_t *image, argument
35 uint32_t *buf = (image)->bits.bits;
36 int stride = (image)->bits.rowstride;
37 int width = (image)->bits.width;
121 WRITE(image, a, READ(image, a) | startmask);
125 WRITE(image, a++, 0xffffffff);
127 WRITE(image, a, READ(image, a) | endmask);
H A Dpixman-noop.c43 iter->buffer += iter->image->bits.rowstride;
51 iter->buffer += iter->image->bits.rowstride;
65 pixman_image_t *image = iter->image; local
70 if (!image)
79 else if (image->common.extended_format_code == PIXMAN_solid &&
80 (iter->image->type == SOLID ||
89 if (image->type == SOLID)
90 color = image->solid.color_32;
92 color = image
137 pixman_image_t *image = iter->image; local
[all...]
/external/pixman/test/
H A Drotate-test.c55 on_destroy (pixman_image_t *image, void *data) argument
65 pixman_image_t *image; local
69 image = pixman_image_create_bits (
72 pixman_image_set_transform (image, RANDOM_TRANSFORM());
73 pixman_image_set_destroy_function (image, on_destroy, bytes);
74 pixman_image_set_repeat (image, PIXMAN_REPEAT_NORMAL);
76 image_endian_swap (image);
78 return image;
/external/qemu/distrib/jpeg-6b/
H A Dwrrle.c38 * Since RLE stores scanlines bottom-to-top, we have to invert the image
56 jvirt_sarray_ptr image; /* virtual array to store the output image */ member in struct:__anon29340
87 * Make sure the image can be stored in RLE format.
89 * - RLE stores image dimensions as *signed* 16 bit integers. JPEG
133 ((j_common_ptr) cinfo, dest->image, (JDIMENSION) 0, (JDIMENSION) 1, TRUE);
160 ((j_common_ptr) cinfo, dest->image,
201 /* Add a comment to the output image with the true colormap length. */
225 ((j_common_ptr) cinfo, dest->image,
239 ((j_common_ptr) cinfo, dest->image,
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_BView.h39 image = NULL;
70 /* And if there's an image, redraw it. */
71 if( image ) {
72 bounds = image->Bounds();
79 if ( image ) {
80 delete image;
82 image = bitmap;
85 if ( image ) {
92 DrawBitmap(image, updateRect, dest);
94 DrawBitmap(image, updateRec
112 BBitmap *image; member in class:SDL_BView
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsmouse.c54 struct ps2_image image; local
69 /* Remove the cursor image from the DMA area */
109 image = screen_image;
110 image.y += screen->offset / screen->pitch + mouse_y1;
111 image.h = mouse_y2 - mouse_y1;
112 image.ptr = mapped_mem +
113 (image.y - screen_image.y) * screen->pitch;
114 ioctl(console_fd, PS2IOC_LOADIMAGE, &image);
116 /* Need to scale offscreen image to TV output */
117 if ( image
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_QWin.h62 void setImage(QImage *image);
70 QImage *image(void) { return my_image; } function in class:SDL_QWin
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestgamma.c76 SDL_Surface *image; local
128 image = SDL_LoadBMP("sample.bmp");
129 if ( image ) {
132 dst.x = (screen->w - image->w)/2;
133 dst.y = (screen->h - image->h)/2;
134 dst.w = image->w;
135 dst.h = image->h;
136 SDL_BlitSurface(image, NULL, screen, &dst);
/external/skia/gm/
H A Daaclip.cpp145 CGImageRef image = SkCreateCGImageRefWithColorspace(bm, NULL); local
148 SkCreateBitmapFromCGImage(&bm2, image);
149 CGImageRelease(image);

Completed in 280 milliseconds

1234567891011>>