/external/bison/lib/ |
xsize.c | 3 #include "xsize.h"
|
xsize.h | 0 /* xsize.h -- Checked size_t computations.
|
/external/bison/m4/ |
xsize.m4 | 0 # xsize.m4 serial 5 9 dnl Prerequisites of lib/xsize.h.
|
/external/chromium_org/third_party/yasm/source/patched-yasm/m4/ |
xsize.m4 | 0 # xsize.m4 serial 3 9 dnl Prerequisites of lib/xsize.h.
|
Makefile.inc | 11 EXTRA_DIST += m4/xsize.m4
|
/ndk/sources/host-tools/make-3.81/config/ |
xsize.m4 | 0 # xsize.m4 serial 2 11 dnl Prerequisites of lib/xsize.h.
|
Makefile.am | 22 wint_t.m4 intmax.m4 printf-posix.m4 xsize.m4 size_max.m4
|
/external/skia/gm/ |
samplerstress.cpp | 47 static const int xSize = 16; 51 xSize, 53 xSize*sizeof(SkColor)); 60 for (int x = 0; x < xSize; ++x) { 61 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorBLACK); 64 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorRED); 67 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorGREEN);
|
/external/chromium_org/third_party/libwebp/enc/ |
backward_references.c | 57 static int DistanceToPlaneCode(int xsize, int dist) { 58 const int yoffset = dist / xsize; 59 const int xoffset = dist - yoffset * xsize; 62 } else if (xoffset > xsize - 8 && yoffset < 7) { 63 return plane_to_code_lut[(yoffset + 1) * 16 + 8 + (xsize - xoffset)] + 1; 146 static void GetParamsForHashChainFindCopy(int quality, int xsize, 153 : (quality > 25) ? (xsize << 8) 154 : (xsize << 4); 155 assert(xsize > 0); 174 const uint32_t xsize = (uint32_t)xsize_signed local [all...] |
histogram.c | 335 static void HistogramBuildImage(int xsize, int histo_bits, 340 const int histo_xsize = VP8LSubSampleSize(xsize, histo_bits); 348 while (x >= xsize) { 349 x -= xsize; 481 int VP8LGetHistoImageSymbols(int xsize, int ysize, 487 const int histo_xsize = histo_bits ? VP8LSubSampleSize(xsize, histo_bits) : 1; 501 HistogramBuildImage(xsize, histo_bits, refs, image_out);
|
histogram.h | 91 int VP8LGetHistoImageSymbols(int xsize, int ysize,
|
/external/webp/src/enc/ |
backward_references.c | 57 static int DistanceToPlaneCode(int xsize, int dist) { 58 const int yoffset = dist / xsize; 59 const int xoffset = dist - yoffset * xsize; 62 } else if (xoffset > xsize - 8 && yoffset < 7) { 63 return plane_to_code_lut[(yoffset + 1) * 16 + 8 + (xsize - xoffset)] + 1; 146 static void GetParamsForHashChainFindCopy(int quality, int xsize, 153 : (quality > 25) ? (xsize << 8) 154 : (xsize << 4); 155 assert(xsize > 0); 174 const uint32_t xsize = (uint32_t)xsize_signed local [all...] |
histogram.c | 335 static void HistogramBuildImage(int xsize, int histo_bits, 340 const int histo_xsize = VP8LSubSampleSize(xsize, histo_bits); 348 while (x >= xsize) { 349 x -= xsize; 481 int VP8LGetHistoImageSymbols(int xsize, int ysize, 487 const int histo_xsize = histo_bits ? VP8LSubSampleSize(xsize, histo_bits) : 1; 501 HistogramBuildImage(xsize, histo_bits, refs, image_out);
|
histogram.h | 91 int VP8LGetHistoImageSymbols(int xsize, int ysize,
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
ConstrainedConjGrad.h | 115 Index xSize = x.size(); 116 TmpVec p(xSize), q(xSize), q2(xSize), 117 r(xSize), old_z(xSize), z(xSize), 118 memox(xSize);
|
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/ |
SDL_vglvideo.c | 93 if ((modes[i]->ModeInfo.Xsize > 320) && 181 if ((mode->w == inmode->ModeInfo.Xsize) && 194 mode->w = inmode->ModeInfo.Xsize; 224 VGLCurMode->ModeInfo.Xsize * 261 this->info.current_w = VGLCurMode->ModeInfo.Xsize; 320 if ((modes[i]->ModeInfo.Xsize == width) && 356 current->w = VGLCurMode->ModeInfo.Xsize; 359 current->pitch = VGLCurMode->ModeInfo.Xsize * 369 if (VGLCurMode->ModeInfo.Xsize * 2 <= 590 vminfop->Xsize = minfo.vi_width [all...] |
/external/chromium_org/content/common/gpu/client/ |
gl_helper_unittests.cc | 577 void TestScale(int xsize, int ysize, 585 input_pixels.setConfig(SkBitmap::kARGB_8888_Config, xsize, ysize); 589 for (int x = 0; x < xsize; ++x) { 619 xsize, 629 xsize, ysize, 638 gfx::Size(xsize, ysize), 639 gfx::Rect(0, 0, xsize, ysize), 648 gfx::Size(xsize, ysize), 667 if (xsize == scaled_xsize && ysize == scaled_ysize) { 697 int xsize, int ysize [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/ |
elf.c | 302 entry->xsize = NULL; 355 if (entry->xsize) 356 yasm_expr_print(entry->xsize, f); 380 entry->xsize = NULL; 478 if (entry->xsize) { 480 yasm_expr_get_intnum(&entry->xsize, 1)); 484 yasm_errwarn_propagate(errwarns, entry->xsize->line); 545 yasm_expr *xsize, 554 if (xsize) entry->xsize = xsize [all...] |
/external/clang/test/Analysis/ |
cxx11-crashes.cpp | 38 const float ysize={0.015}, xsize={0.01}; local
|
/external/chromium_org/third_party/libwebp/dsp/ |
lossless.c | 848 int ix, int xsize) { [all...] |
/external/webp/src/dsp/ |
lossless.c | 848 int ix, int xsize) { [all...] |
/external/valgrind/main/exp-dhat/ |
dh_main.c | 207 Exactly xsize all retiring blocks are of this size 211 SizeT xsize; member in struct:__anon28067 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 * sizeof(UInt)) [all...] |
/external/chromium_org/third_party/libwebp/dec/ |
vp8l.c | 77 static int DecodeImageStream(int xsize, int ysize, 140 static WEBP_INLINE int PlaneCodeToDistance(int xsize, int plane_code) { 147 const int dist = yoffset * xsize + xoffset; 301 static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, 313 const int huffman_xsize = VP8LSubSampleSize(xsize, huffman_precision); 594 const uint32_t* const image, int xsize, int bits, int x, int y) { 596 return image[xsize * (y >> bits) + (x >> bits)]; [all...] |
/external/webp/src/dec/ |
vp8l.c | 77 static int DecodeImageStream(int xsize, int ysize, 139 static WEBP_INLINE int PlaneCodeToDistance(int xsize, int plane_code) { 146 const int dist = yoffset * xsize + xoffset; 300 static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, 312 const int huffman_xsize = VP8LSubSampleSize(xsize, huffman_precision); 593 const uint32_t* const image, int xsize, int bits, int x, int y) { 595 return image[xsize * (y >> bits) + (x >> bits)]; [all...] |
/external/e2fsprogs/intl/ |
xsize.h | 0 /* xsize.h -- Checked size_t computations.
|