Searched defs:xsize (Results 1 - 15 of 15) sorted by relevance

/external/syslinux/com32/lib/syslinux/video/
H A Dreportmode.c36 void syslinux_report_video_mode(uint16_t flags, uint16_t xsize, uint16_t ysize) argument
41 using_vga(flags, xsize, ysize);
/external/syslinux/core/mem/
H A Dmalloc.c133 size_t newsize, oldsize, xsize; local
165 xsize = oldsize;
180 xsize = ARENA_SIZE_GET(ah->a.attrs);
183 if (xsize >= newsize) {
185 if (xsize >= newsize + 2 * sizeof(struct arena_header)) {
189 ARENA_SIZE_SET(nah->a.attrs, xsize - newsize);
198 //nah->a.size = xsize - newsize;
/external/clang/test/Analysis/
H A Dcxx11-crashes.cpp37 const float ysize={0.015}, xsize={0.01}; local
/external/webp/src/enc/
H A Dnear_lossless_enc.c74 static void NearLossless(int xsize, int ysize, const uint32_t* argb_src, argument
80 uint32_t* curr_row = prev_row + xsize;
81 uint32_t* next_row = curr_row + xsize;
82 memcpy(curr_row, argb_src, xsize * sizeof(argb_src[0]));
83 memcpy(next_row, argb_src + stride, xsize * sizeof(argb_src[0]));
85 for (y = 0; y < ysize; ++y, argb_src += stride, argb_dst += xsize) {
87 memcpy(argb_dst, argb_src, xsize * sizeof(argb_src[0]));
89 memcpy(next_row, argb_src + stride, xsize * sizeof(argb_src[0]));
91 argb_dst[xsize - 1] = argb_src[xsize
113 const int xsize = picture->width; local
[all...]
H A Dbackward_references_cost_enc.c28 extern int VP8LDistanceToPlaneCode(int xsize, int dist);
61 static int CostModelBuild(CostModel* const m, int xsize, int cache_bits, argument
73 xsize);
564 int xsize, int ysize, const uint32_t* const argb, int cache_bits,
570 const int pix_count = xsize * ysize;
594 if (!CostModelBuild(cost_model, xsize, cache_bits, refs)) {
622 const int code = VP8LDistanceToPlaneCode(xsize, offset);
758 int xsize, int ysize, const uint32_t* const argb, int cache_bits,
761 int VP8LBackwardReferencesTraceBackwards(int xsize, int ysize, argument
768 const int dist_array_size = xsize * ysiz
563 BackwardReferencesHashChainDistanceOnly( int xsize, int ysize, const uint32_t* const argb, int cache_bits, const VP8LHashChain* const hash_chain, const VP8LBackwardRefs* const refs, uint16_t* const dist_array) argument
[all...]
H A Dbackward_references_enc.c48 extern int VP8LDistanceToPlaneCode(int xsize, int dist);
49 int VP8LDistanceToPlaneCode(int xsize, int dist) { argument
50 const int yoffset = dist / xsize;
51 const int xoffset = dist - yoffset * xsize;
54 } else if (xoffset > xsize - 8 && yoffset < 7) {
55 return plane_to_code_lut[(yoffset + 1) * 16 + 8 + (xsize - xoffset)] + 1;
211 static int GetWindowSizeForHashChain(int quality, int xsize) { argument
213 : (quality > 50) ? (xsize << 8)
214 : (quality > 25) ? (xsize << 6)
215 : (xsize <<
224 VP8LHashChainFill(VP8LHashChain* const p, int quality, const uint32_t* const argb, int xsize, int ysize, int low_effort) argument
410 BackwardReferencesRle(int xsize, int ysize, const uint32_t* const argb, int cache_bits, VP8LBackwardRefs* const refs) argument
453 BackwardReferencesLz77(int xsize, int ysize, const uint32_t* const argb, int cache_bits, const VP8LHashChain* const hash_chain, VP8LBackwardRefs* const refs) argument
525 BackwardReferencesLz77Box(int xsize, int ysize, const uint32_t* const argb, int cache_bits, const VP8LHashChain* const hash_chain_best, VP8LHashChain* hash_chain, VP8LBackwardRefs* const refs) argument
676 BackwardReferences2DLocality(int xsize, const VP8LBackwardRefs* const refs) argument
[all...]
H A Dhistogram_enc.c474 int xsize, int histo_bits, const VP8LBackwardRefs* const backward_refs,
477 const int histo_xsize = VP8LSubSampleSize(xsize, histo_bits);
486 while (x >= xsize) {
487 x -= xsize;
978 int VP8LGetHistoImageSymbols(int xsize, int ysize, argument
986 const int histo_xsize = histo_bits ? VP8LSubSampleSize(xsize, histo_bits) : 1;
1001 HistogramBuild(xsize, histo_bits, refs, orig_histo);
473 HistogramBuild( int xsize, int histo_bits, const VP8LBackwardRefs* const backward_refs, VP8LHistogramSet* const image_histo) argument
H A Dpredictor_enc.c677 int quality, int xsize, int ysize,
684 const int all_x_max = GetMin(tile_x_offset + max_tile_size, xsize);
688 const uint32_t* const tile_argb = argb + tile_y_offset * xsize
693 GetBestGreenToRed(tile_argb, xsize, tile_width, tile_height,
695 GetBestGreenRedToBlue(tile_argb, xsize, tile_width, tile_height,
701 static void CopyTileWithColorTransform(int xsize, int ysize, argument
706 const int xscan = GetMin(max_tile_size, xsize - tile_x);
708 argb += tile_y * xsize + tile_x;
711 argb += xsize;
673 GetBestColorTransformForTile( int tile_x, int tile_y, int bits, VP8LMultipliers prev_x, VP8LMultipliers prev_y, int quality, int xsize, int ysize, const int accumulated_red_histo[256], const int accumulated_blue_histo[256], const uint32_t* const argb) argument
/external/python/cpython2/Modules/
H A Dimgfile.c90 int xsize, ysize, zsize; local
116 xsize = image->xsize;
125 if ( xsize > 8192 ) {
133 rv = PyString_FromStringAndSize((char *)NULL, xsize*ysize*zsize);
153 for(x=0; x<xsize; x++ )
159 for(x=0; x<xsize; x++ )
216 xscale(IMAGE *image, int xsize, int ysize, int zsize, argument
225 filterzoom(xs_get, xs_put_c, xsize, ysize,
229 filterzoom(xs_get, xs_put_0, xsize, ysiz
246 int xsize, ysize, zsize; local
397 int xsize, ysize, zsize, len; local
[all...]
/external/freetype/src/pfr/
H A Dpfrsbit.c413 FT_UInt xsize, ysize; local
421 xsize = 0;
461 xsize = 0;
468 xsize = ( b >> 4 ) & 0xF;
474 xsize = PFR_NEXT_BYTE( p );
480 xsize = PFR_NEXT_USHORT( p );
516 *axsize = xsize;
657 FT_UInt xsize = 0, ysize = 0, format = 0; local
684 &xsize, &ysize,
695 * (xsize * ysiz
[all...]
/external/syslinux/com32/lib/sys/vesa/
H A Dbackground.c84 int xsize = __vesa_info.mi.h_res; local
94 for (x = 0 ; x < xsize ; x += width) {
95 xl = min(width, xsize-x);
101 dp += xsize;
102 sp += xsize;
107 drp += xsize*height;
296 uint16_t xsize; member in struct:lss16_header
310 h->xsize <= __vesa_info.mi.h_res &&
353 while (x < h->xsize) {
393 count = min(count, h->xsize
[all...]
/external/python/cpython2/RISCOS/Modules/
H A Ddrawfmodule.c244 int xsize,ysize,x,y; local
252 (int*)&fill,(int*)&bg_hint,(int*)&style,&xsize,&ysize)) return NULL;
267 dtext->xsize=xsize;
274 box->x0=x;box->y0=y;box->x1=x+len*xsize;box->y1=y+ysize;
282 int xsize,ysize,x,y; local
294 (int*)&fill,(int*)&bg_hint,(int*)&style,&xsize,&ysize,&t1,&t2,&t3,&t4,&t5,&t6)) return NULL;
316 dtext->xsize=xsize;
323 box->x0=x;box->y0=y;box->x1=x+len*xsize;bo
[all...]
/external/valgrind/exp-dhat/
H A Ddh_main.c207 Exactly xsize all retiring blocks are of this size
211 SizeT xsize; member in struct:__anon29298
212 UInt* histo; /* [0 .. xsize-1] */
248 api->xsize = 0;
334 // histo stuff. First, do state transitions for xsize/xsize_tag.
338 tl_assert(api->xsize == 0);
342 api->xsize = bk->req_szB;
343 if (0) VG_(printf)("api %p --> Exactly(%lu)\n", api, api->xsize);
347 api->xsize * sizeof(UInt));
348 VG_(memset)(api->histo, 0, api->xsize * sizeo
[all...]
/external/webp/src/dec/
H A Dvp8l_dec.c104 static int DecodeImageStream(int xsize, int ysize,
167 static WEBP_INLINE int PlaneCodeToDistance(int xsize, int plane_code) { argument
174 const int dist = yoffset * xsize + xoffset;
175 return (dist >= 1) ? dist : 1; // dist<1 can happen if xsize is very small
358 static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, argument
375 const int huffman_xsize = VP8LSubSampleSize(xsize, huffman_precision);
693 const uint32_t* const image, int xsize, int bits, int x, int y) {
695 return image[xsize * (y >> bits) + (x >> bits)];
1242 static int ReadTransform(int* const xsize, int const* ysize, argument
1257 transform->xsize_ = *xsize;
692 GetMetaIndex( const uint32_t* const image, int xsize, int bits, int x, int y) argument
1364 DecodeImageStream(int xsize, int ysize, int is_level0, VP8LDecoder* const dec, uint32_t** const decoded_data) argument
[all...]
/external/libmtp/src/
H A Dptp.c2505 * xsize Size in bytes of the transfer to do
2512 ptp_canon_eos_getpartialobject (PTPParams* params, uint32_t oid, uint32_t offset, uint32_t xsize, unsigned char**data) argument
2516 PTP_CNT_INIT(ptp, PTP_OC_CANON_EOS_GetPartialObject, oid, offset, xsize);
2885 unsigned int xsize, psize1 = 0, psize2 = 0; local
2891 CHECK_PTP_RC(ptp_transaction(params, &ptp, PTP_DP_GETDATA, 0, &xdata, &xsize));
2892 if (xsize == 0) {
2897 psize1 = ptp_unpack_uint16_t_array (params, xdata+2, 0, xsize, &props1);
2898 ptp_debug (params, "xsize %d, got size %d\n", xsize, psize1*2 + 2 + 4);
2899 if (psize1*2 + 2 + 4 < xsize) {
3241 unsigned int xsize = 0; local
3293 ptp_nikon_get_preview_image(PTPParams* params, unsigned char **xdata, unsigned int *xsize, uint32_t *handle) argument
3605 unsigned int xsize = 0; local
[all...]

Completed in 518 milliseconds