Searched refs:image (Results 1 - 25 of 1808) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jar ... zxing.NotFoundException com.google.zxing.BinaryBitmap image public com.google.zxing.Result decode (com
/external/yaffs2/yaffs2/utils/
H A Dmkyaffs2image.c6 * Makes a YAFFS file system image that can be used to load up a file system.
522 fprintf(stderr,"mkyaffs2image: image building tool for YAFFS2 built "__DATE__"\n");
528 fprintf(stderr," image_file the output file to hold the image\n");
530 fprintf(stderr," mountpoint the directory where this image be mounted on the device\n");
531 fprintf(stderr," 'convert' produce a big-endian image from a little-endian machine\n");
539 char *image; local
572 image = argv[optind + 1];
611 outFile = open(image,O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE);
616 fprintf(stderr,"Could not open output file %s\n",image);
634 //printf("Processing directory %s into image fil
[all...]
/external/zlib/src/
H A Dmake_vms.com20 $! shared image creation
22 $! image
227 $! Create shareable image
479 $! needed to build shareable image
720 $! image from it
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp1344 may be worse (but this can vary too depending on the image, sometimes it is
2981 /*put a pixel, given its RGBA color, into image of any color type*/
3055 /*put a pixel, given its RGBA16 color, into image of any color 16-bitdepth type*/
3099 /*Get RGBA8 color of pixel with index i (y * width + x) from the raw image with given color type.*/
3348 /*Get RGBA16 color of pixel with index i (y * width + x) from the raw image with
3555 size_t numpixels /*must be full image size, for certain filesize based choices*/,
3758 const unsigned char* image, unsigned w, unsigned h,
3780 error = get_color_profile(&profile, image, w * h, mode_in, 0 /*fix_png*/);
3808 /*don't add palette overhead if image hasn't got a lot of pixels*/
3902 Outputs various dimensions and positions in the image relate
3757 lodepng_auto_choose_color(LodePNGColorMode* mode_out, const unsigned char* image, unsigned w, unsigned h, const LodePNGColorMode* mode_in, LodePNGAutoConvert auto_convert) argument
5855 lodepng_encode_memory(unsigned char** out, size_t* outsize, const unsigned char* image, unsigned w, unsigned h, LodePNGColorType colortype, unsigned bitdepth) argument
5871 lodepng_encode32(unsigned char** out, size_t* outsize, const unsigned char* image, unsigned w, unsigned h) argument
5876 lodepng_encode24(unsigned char** out, size_t* outsize, const unsigned char* image, unsigned w, unsigned h) argument
5882 lodepng_encode_file(const char* filename, const unsigned char* image, unsigned w, unsigned h, LodePNGColorType colortype, unsigned bitdepth) argument
5893 lodepng_encode32_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) argument
5898 lodepng_encode24_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) argument
[all...]
H A Dlodepng.h108 colortype: the desired color type for the raw output image. See explanation on PNG color types.
109 bitdepth: the desired bit depth for the raw output image. See explanation on PNG color types.
116 /*Same as lodepng_decode_memory, but always decodes to 32-bit RGBA raw image*/
120 /*Same as lodepng_decode_memory, but always decodes to 24-bit RGB raw image*/
133 /*Same as lodepng_decode_file, but always decodes to 32-bit RGBA raw image.*/
137 /*Same as lodepng_decode_file, but always decodes to 24-bit RGB raw image.*/
146 Converts raw pixel data into a PNG image in memory. The colortype and bitdepth
147 of the output PNG image cannot be chosen, they are automatically determined
150 out: Output parameter. Pointer to buffer that will contain the PNG image data.
153 image
[all...]
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc62 printf("ZopfliPNG, a Portable Network Graphics (PNG) image optimizer.\n"
84 "--lossy_8bit: convert 16-bit per channel image to 8-bit per"
88 "--always_zopflify: always output the image encoded by Zopfli, even if"
106 " the best for this image is chosen by trying faster compression with"
283 std::vector<unsigned char> image; local
299 error = lodepng::decode(image, w, h, inputstate, resultpng);
346 // previous run with different parameters that gave a smaller PNG image.
H A Dzopflipng_lib.cc87 // Counts amount of colors in the image, up to 257. If transparent_counts_as_one
91 const unsigned char* image, unsigned w, unsigned h,
95 unsigned index = ColorIndex(&image[i * 4]);
96 if (transparent_counts_as_one && image[i * 4 + 3] == 0) index = 0;
103 void LossyOptimizeTransparent(lodepng::State* inputstate, unsigned char* image, argument
109 if (image[i * 4 + 3] > 0 && image[i * 4 + 3] < 255) {
115 CountColors(&count, image, w, h, true);
124 if (image[i * 4 + 3] == 0) {
127 // existing in the input image palett
90 CountColors(std::set<unsigned>* unique, const unsigned char* image, unsigned w, unsigned h, bool transparent_counts_as_one) argument
176 TryOptimize( const std::vector<unsigned char>& image, unsigned w, unsigned h, const lodepng::State& inputstate, bool bit16, const std::vector<unsigned char>& origfile, ZopfliPNGFilterStrategy filterstrategy, bool use_zopfli, int windowsize, const ZopfliPNGOptions* png_options, std::vector<unsigned char>* out) argument
277 AutoChooseFilterStrategy(const std::vector<unsigned char>& image, unsigned w, unsigned h, const lodepng::State& inputstate, bool bit16, const std::vector<unsigned char>& origfile, int numstrategies, ZopfliPNGFilterStrategy* strategies, bool* enable) argument
361 std::vector<unsigned char> image; local
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dhttp_curl.c328 STACK_OF(LogotypeImage) *image;
401 ASN1_SEQUENCE_OF_OPT(LogotypeData, image, LogotypeImage),
489 if (data->image == NULL)
492 num = sk_LogotypeImage_num(data->image);
494 LogotypeImage *image; local
499 image = sk_LogotypeImage_value(data->image, i);
500 if (image == NULL)
503 details = image->imageDetails;
636 static void i2r_LogotypeImage(LogotypeImage *image, BI argument
656 LogotypeImage *image = sk_LogotypeImage_value(data->image, i); local
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dhttp_curl.c328 STACK_OF(LogotypeImage) *image;
401 ASN1_SEQUENCE_OF_OPT(LogotypeData, image, LogotypeImage),
489 if (data->image == NULL)
492 num = sk_LogotypeImage_num(data->image);
494 LogotypeImage *image; local
499 image = sk_LogotypeImage_value(data->image, i);
500 if (image == NULL)
503 details = image->imageDetails;
636 static void i2r_LogotypeImage(LogotypeImage *image, BI argument
656 LogotypeImage *image = sk_LogotypeImage_value(data->image, i); local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dhttp_curl.c328 STACK_OF(LogotypeImage) *image;
401 ASN1_SEQUENCE_OF_OPT(LogotypeData, image, LogotypeImage),
489 if (data->image == NULL)
492 num = sk_LogotypeImage_num(data->image);
494 LogotypeImage *image; local
499 image = sk_LogotypeImage_value(data->image, i);
500 if (image == NULL)
503 details = image->imageDetails;
636 static void i2r_LogotypeImage(LogotypeImage *image, BI argument
656 LogotypeImage *image = sk_LogotypeImage_value(data->image, i); local
[all...]
/external/webp/src/dec/
H A Dvp8l.c617 const uint32_t* const image, int xsize, int bits, int x, int y) {
619 return image[xsize * (y >> bits) + (x >> bits)];
1178 // We allocate image data in this function only for transforms. At level 0
616 GetMetaIndex( const uint32_t* const image, int xsize, int bits, int x, int y) argument
/external/webp/src/demux/
H A Ddemux.c52 int complete_; // img_components_ contains a full image.
73 Chunk* chunks_; // non-image chunks
196 // Store image bearing chunks to 'frame'.
296 // Parse a 'ANMF' chunk and any image bearing chunks that immediately follow.
341 // Parse a 'FRGM' chunk and any image bearing chunks that immediately follow.
433 // For the single image case we allow parsing of a partial frame, but we need
446 // Also, set ALPHA_FLAG if this is a lossless image with alpha.
582 return PARSE_ERROR; // image final dimension is too large
607 // If 'exact' is true, check that the image resolution matches the canvas.
609 // TODO(jzern): this is insufficient in the fragmented image cas
649 const ChunkData* const image = f->img_components_; local
823 const ChunkData* const image = frame->img_components_; local
[all...]
/external/webp/src/dsp/
H A Dlossless.c678 uint32_t* const image) {
709 image[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8);
1087 uint32_t* const argb, uint32_t* image) {
1106 ColorCodeToMultipliers(image[offset - tile_xsize], &prev_y);
1114 image[offset] = MultipliersToColorCode(&prev_x);
676 VP8LResidualImage(int width, int height, int bits, uint32_t* const argb, uint32_t* const argb_scratch, uint32_t* const image) argument
1086 VP8LColorSpaceTransform(int width, int height, int bits, int quality, uint32_t* const argb, uint32_t* image) argument
H A Dlossless.h103 uint32_t* const image);
106 uint32_t* const argb, uint32_t* image);
/external/valgrind/main/
H A DAndroid.mk195 coregrind/m_debuginfo/image.c \
/external/valgrind/main/VEX/switchback/
H A Dlinker.c151 void* image;
873 char* ehdrC = (char*)(oc->image);
935 char* ehdrC = (char*)(oc->image);
1119 char* ehdrC = (char*)(oc->image);
1384 /* Allocate a 1-page area just prior to the image, so we can put
1401 oc->image = &(p[ oc->fixup_size ]);
1403 r = read(fd, oc->image, oc->fileSize);
1410 oc->fileName, oc->image, oc->fixup );
1414 /* verify the in-memory image */
1418 /* build the symbol list for this image */
[all...]
/external/valgrind/main/VEX/unused/
H A Dlinker.c85 void* image; member in struct:_ObjectCode
713 char* ehdrC = (char*)(oc->image);
775 char* ehdrC = (char*)(oc->image);
956 char* ehdrC = (char*)(oc->image);
1217 /* Allocate a 1-page area just prior to the image, so we can put
1233 oc->image = &(p[ oc->fixup_size ]);
1235 r = read(fd, oc->image, oc->fileSize);
1242 oc->fileName, oc->image, oc->fixup );
1246 /* verify the in-memory image */
1250 /* build the symbol list for this image */
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dpriv_readelf.h46 extern Bool ML_(is_elf_object_file)( void* image, SizeT n_image, Bool rel_ok );
H A Dreadelf.c112 Bool ML_(is_elf_object_file)( void* image, SizeT n_image, Bool rel_ok ) argument
114 ElfXX_Ehdr* ehdr = (ElfXX_Ehdr*)image;
156 /* Show a raw ELF symbol, given its in-image address and name. */
534 section. We can't look in the running image since it won't
1003 * Look for a build-id in an ELF image. The build-id specification
1391 _{m,d,a}ioff an offset in the image (DiOffT)
1422 /* Program header table image addr, # entries, entry size */
1427 /* Section header image addr, # entries, entry size. Also the
1498 /* Connect to the primary object image, so that we can read symbols
1503 VG_(message)(Vg_UserMsg, "warning: connection to image
[all...]
H A Dreadpdb.c69 turn specifies its start as a VA relative to "image base".
72 directly to the image base, without the segment indirection.
74 The original/preferred image base is set in the PE header,
76 data. So everything is biased using the current image base,
79 The difference between the original image base and current
80 image base, which is what Wine sends here in the last
954 UChar* pdbimage; // image address
1149 static void pdb_convert_types_header( PDB_TYPES *types, char* image )
1152 if ( !image )
1154 if ( *(unsigned long *)image < 1996000
[all...]
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dll.S50 # but, that only gains us one byte of space in the lzss image.
/external/valgrind/main/exp-bbv/tests/x86-linux/
H A Dll.S44 # but, that only gains us one byte of space in the lzss image.
/external/sqlite/dist/orig/
H A Dsqlite3.c525 #define SQLITE_CORRUPT 11 /* The database disk image is malformed */
[all...]
/external/sqlite/dist/
H A Dsqlite3.c525 #define SQLITE_CORRUPT 11 /* The database disk image is malformed */
[all...]
/external/srec/srec/clib/
H A Dsrec_arb.c310 pfread(&allotree->image, sizeof(char *), 1, fp); /* image */
324 allotree->image = buffer;
357 PLogMessage("read arbdata image size %d\n", allotree->image_size);

Completed in 552 milliseconds

1234567891011>>