Searched defs:image (Results 1 - 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Ddynload_next.c40 NSObjectFileImage image; local
55 rc = NSCreateObjectFileImageFromFile(pathname, &image);
61 errString = "Can't create object file image";
77 newModule = NSLinkModule(image, pathname, LINKOPTIONS);
/device/generic/goldfish/camera/
H A DJpegCompressor.cpp42 typedef int (*CompressFunc)(JpegStub* stub, const void* image,
69 status_t NV21JpegCompressor::compressRawImage(const void* image, argument
76 return (status_t)(*f)(&mStub, image, width, height, quality, exifData);
/device/generic/goldfish-opengl/system/GLESv1/
H A Dgl.cpp58 EGLImage_t *image = (EGLImage_t*)img; local
60 if (image->target == EGL_NATIVE_BUFFER_ANDROID) {
62 android_native_buffer_t* native_buffer = image->native_buffer;
80 else if (image->target == EGL_GL_TEXTURE_2D_KHR) {
83 GLeglImageOES hostImage = reinterpret_cast<GLeglImageOES>((intptr_t)image->host_egl_image);
89 void glEGLImageTargetRenderbufferStorageOES(void *self, GLenum target, GLeglImageOES image) argument
94 DBG("glEGLImageTargetRenderbufferStorageOES v1 target=%#x image=%p",
95 target, image);
97 android_native_buffer_t* native_buffer = (android_native_buffer_t*)image;
/device/generic/goldfish-opengl/system/GLESv2/
H A Dgl2.cpp59 EGLImage_t *image = (EGLImage_t*)img; local
60 GLeglImageOES hostImage = reinterpret_cast<GLeglImageOES>((intptr_t)image->host_egl_image);
62 if (image->target == EGL_NATIVE_BUFFER_ANDROID) {
64 android_native_buffer_t* native_buffer = image->native_buffer;
82 else if (image->target == EGL_GL_TEXTURE_2D_KHR) {
91 void glEGLImageTargetRenderbufferStorageOES(void *self, GLenum target, GLeglImageOES image) argument
96 DBG("glEGLImageTargetRenderbufferStorageOES v2 image=%p\n", image);
98 android_native_buffer_t* native_buffer = (android_native_buffer_t*)image;
/device/linaro/bootloader/arm-trusted-firmware/plat/fvp/
H A Dbl2_fvp_setup.c257 void bl2_plat_set_bl33_ep_info(image_info_t *image, argument
/device/linaro/bootloader/arm-trusted-firmware/plat/juno/
H A Dscp_bootloader.c119 int scp_bootloader_transfer(void *image, unsigned int image_size) argument
121 uintptr_t offset = (uintptr_t)image - MHU_SECURE_BASE;
139 /* Transfer image to SCP a block at a time */
H A Dbl2_plat_setup.c175 * image and initialise the memory location to use for passing arguments to
263 * setting the SPSR prior to entry into the BL32 image.
274 void bl2_plat_set_bl33_ep_info(image_info_t *image, argument
/device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
H A Dbl2_plat_setup.c196 * image and initialise the memory location to use for passing arguments to
306 * setting the SPSR prior to entry into the BL32 image.
317 void bl2_plat_set_bl33_ep_info(image_info_t *image, argument
/device/google/contexthub/util/nanoapp_encr/
H A Dnanoapp_encr.c60 struct ImageHeader *image; local
82 if (bufUsed <= sizeof(*image)) {
89 if (((bufUsed - sizeof(*image)) % AES_BLOCK_SIZE) != 0)
90 padLen = AES_BLOCK_SIZE - ((bufUsed - sizeof(*image)) % AES_BLOCK_SIZE);
100 image = (struct ImageHeader *)buf;
102 if (bufUsed >= sizeof(*image) && image->aosp.magic == NANOAPP_AOSP_MAGIC &&
103 image->aosp.header_version == 1 && image->layout.magic == GOOGLE_LAYOUT_MAGIC) {
110 if ((image
156 struct ImageHeader *image; local
[all...]
/device/google/contexthub/firmware/os/core/
H A DappSec.c220 struct ImageHeader *image; local
229 image = (struct ImageHeader *)hdr; hdr += sizeof(*image);
230 aosp = &image->aosp;
234 image->layout.version != 1 ||
235 image->layout.magic != GOOGLE_LAYOUT_MAGIC)
238 needBytes = sizeof(*image);
310 .fwFlags = image->layout.flags,
312 .payInfoType = image->layout.payload,
317 switch(image
[all...]
/device/google/contexthub/util/nanoapp_sign/
H A Dnanoapp_sign.c234 struct ImageHeader *image = (struct ImageHeader *)buf; local
235 struct AppSecSignHdr *secHdr = (struct AppSecSignHdr *)&image[1];
242 if (bufUsed < (sizeof(*image) + sizeof(*secHdr))) {
251 if (!(image->aosp.flags & NANOAPP_SIGNED_FLAG)) {
252 fprintf(stderr, "image is not marked as signed, can not verify\n");
255 sigData = bufUsed - (secHdr->appDataLen + sizeof(*image) + sizeof(*secHdr));
326 struct ImageHeader *image = (struct ImageHeader *)buf; local
327 struct AppSecSignHdr *secHdr = (struct AppSecSignHdr *)&image[1];
329 if (!(image->aosp.flags & NANOAPP_SIGNED_FLAG)) {
333 image
441 struct ImageHeader *image; local
[all...]
/device/generic/goldfish-opengl/system/renderControl_enc/
H A DrenderControl_enc.cpp1030 int rcDestroyClientImage_enc(void *self , uint32_t image) argument
1048 memcpy(ptr, &image, 4); ptr += 4;
H A DrenderControl_entry.cpp35 int rcDestroyClientImage(uint32_t image);
214 int rcDestroyClientImage(uint32_t image) argument
217 return ctx->rcDestroyClientImage(ctx, image);
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
H A DX11GraphicsWindow.c59 XImage *image; member in struct:__anon5168
108 Drv->image = XShmCreateImage (
113 if (Drv->image == NULL) {
117 switch (Drv->image->bitmap_unit) {
130 IPC_PRIVATE, Drv->image->bytes_per_line * Drv->image->height,
134 XDestroyImage(Drv->image);
141 XDestroyImage(Drv->image);
154 Drv->image->data = (char*)Drv->image_data;
158 XDestroyImage(Drv->image);
[all...]
/device/generic/goldfish-opengl/tests/gles_android_wrapper/
H A Degl.cpp594 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR image) argument
596 return getDispatch()->eglDestroyImageKHR(dpy, image);
H A Dgles.cpp836 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image) argument
838 getDispatch()->glEGLImageTargetTexture2DOES(target, image);
841 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image) argument
843 getDispatch()->glEGLImageTargetRenderbufferStorageOES(target, image);
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
H A DGLClientState.cpp802 void GLClientState::setBoundEGLImage(GLenum target, GLeglImageOES image) { argument
/device/generic/goldfish-opengl/system/egl/
H A Degl.cpp1806 EGLImage_t *image = new EGLImage_t(); local
1807 image->dpy = dpy;
1808 image->target = target;
1809 image->native_buffer = native_buffer;
1811 return (EGLImageKHR)image;
1822 EGLImage_t *image = new EGLImage_t(); local
1823 image->dpy = dpy;
1824 image->target = target;
1825 image->host_egl_image = img;
1827 return (EGLImageKHR)image;
1836 EGLImage_t *image = (EGLImage_t*)img; local
[all...]
/device/generic/goldfish-opengl/system/GLESv1_enc/
H A Dgl_enc.cpp4874 void glEGLImageTargetTexture2DOES_enc(void *self , GLenum target, GLeglImageOES image) argument
4893 memcpy(ptr, &image, 4); ptr += 4;
4900 void glEGLImageTargetRenderbufferStorageOES_enc(void *self , GLenum target, GLeglImageOES image) argument
4919 memcpy(ptr, &image, 4); ptr += 4;
H A Dgl_entry.cpp181 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image);
182 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
1349 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image) argument
1352 ctx->glEGLImageTargetTexture2DOES(ctx, target, image);
1355 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image) argument
1358 ctx->glEGLImageTargetRenderbufferStorageOES(ctx, target, image);
/device/generic/goldfish-opengl/system/GLESv2_enc/
H A Dgl2_enc.cpp4348 void glEGLImageTargetTexture2DOES_enc(void *self , GLenum target, GLeglImageOES image) argument
4367 memcpy(ptr, &image, 4); ptr += 4;
4374 void glEGLImageTargetRenderbufferStorageOES_enc(void *self , GLenum target, GLeglImageOES image) argument
4393 memcpy(ptr, &image, 4); ptr += 4;
H A Dgl2_entry.cpp150 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image);
151 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
1294 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image) argument
1297 ctx->glEGLImageTargetTexture2DOES(ctx, target, image);
1300 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image) argument
1303 ctx->glEGLImageTargetRenderbufferStorageOES(ctx, target, image);

Completed in 4743 milliseconds