HomeSort by relevance Sort by last modified time
    Searched full:xsize (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /external/bison/lib/
xsize.c 3 #include "xsize.h"
  /external/bison/m4/
xsize.m4 0 # xsize.m4 serial 5
9 dnl Prerequisites of lib/xsize.h.
  /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 49 static const int xSize = 16;
52 fTexture.allocN32Pixels(xSize, ySize);
56 for (int x = 0; x < xSize; ++x) {
57 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorBLACK);
60 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorRED);
63 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorGREEN);
anisotropic.cpp 53 void draw(SkCanvas* canvas, int x, int y, int xSize, int ySize) {
55 SkIntToScalar(xSize), SkIntToScalar(ySize));
bitmaprect.cpp 93 const int xSize = 3;
96 const SkColor textureData[xSize][ySize] = {
102 bitmap->allocN32Pixels(xSize, ySize, true);
107 for (int x = 0; x < xSize; x++) {
  /external/lzma/CPP/7zip/UI/FileManager/
ComboDialog.cpp 42 bool CComboDialog::OnSize(WPARAM /* wParam */, int xSize, int ySize)
50 int x = xSize - mx - bx1;
56 ChangeSubWindowSizeX(_comboBox, xSize - mx * 2);
ComboDialog.h 16 virtual bool OnSize(WPARAM wParam, int xSize, int ySize);
  /external/webp/src/enc/
near_lossless.c 99 static void NearLossless(int xsize, int ysize, uint32_t* argb,
104 uint32_t* curr_row = prev_row + xsize;
105 uint32_t* next_row = curr_row + xsize;
106 memcpy(copy_buffer, argb, xsize * 2 * sizeof(argb[0]));
109 uint32_t* const curr_argb_row = argb + y * xsize;
110 uint32_t* const next_argb_row = curr_argb_row + xsize;
111 memcpy(next_row, next_argb_row, xsize * sizeof(argb[0]));
112 for (x = 1; x < xsize - 1; ++x) {
138 int VP8ApplyNearLossless(int xsize, int ysize, uint32_t* argb, int quality) {
141 (uint32_t*)WebPSafeMalloc(xsize * 3, sizeof(*copy_buffer))
    [all...]
backward_references.c 49 static int DistanceToPlaneCode(int xsize, int dist) {
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;
251 static int GetWindowSizeForHashChain(int quality, int xsize) {
253 : (quality > 50) ? (xsize << 8)
254 : (quality > 25) ? (xsize << 6)
255 : (xsize << 4);
256 assert(xsize > 0)
    [all...]
  /external/opencv3/3rdparty/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...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfTileDescription.h 71 unsigned int xSize; // size of a tile in the x dimension
81 xSize (xs),
92 return xSize == other.xSize &&
ImfMisc.cpp 531 size_t xSize)
537 Xdr::skip <CharPtrIO> (readPtr, Xdr::size <unsigned int> () * xSize);
542 Xdr::skip <CharPtrIO> (readPtr, Xdr::size <half> () * xSize);
547 Xdr::skip <CharPtrIO> (readPtr, Xdr::size <float> () * xSize);
705 size_t xSize)
717 for (int j = 0; j < xSize; ++j)
724 for (int j = 0; j < xSize; ++j)
731 for (int j = 0; j < xSize; ++j)
751 for (int j = 0; j < xSize; ++j)
762 for (int j = 0; j < xSize; ++j
    [all...]
ImfTileDescriptionAttribute.cpp 60 Xdr::write <StreamIO> (os, _value.xSize);
74 Xdr::read <StreamIO> (is, _value.xSize);
  /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/lzma/CPP/Windows/Control/
Dialog.cpp 87 bool IsDialogSizeOK(int xSize, int ySize)
99 xSize / 4 * x <= wx &&
156 int xSize = RECT_SIZE_X(workRect);
162 bool needMove = (xSize2 > xSize || ySize2 > ySize);
163 if (xSize2 > xSize || (needMove && fullNormalize))
167 xSize2 = xSize;
Window2.h 33 virtual bool OnSize(WPARAM /* wParam */, int /* xSize */, int /* ySize */) { return false; }
Dialog.h 94 virtual bool OnSize(WPARAM /* wParam */, int /* xSize */, int /* ySize */) { return false; }
163 bool IsDialogSizeOK(int xSize, int ySize);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
MediaRecorderFacade.java 100 int xSize;
104 xSize = 160;
108 xSize = 320;
112 xSize = 352;
116 xSize = 640;
120 xSize = 800;
124 xSize = 320;
134 mMediaRecorder.setVideoSize(xSize, ySize);
139 mMediaRecorder.setVideoSize(xSize, ySize);
145 mMediaRecorder.setVideoSize(xSize, ySize)
    [all...]
  /external/pdfium/fpdfsdk/src/fpdfxfa/
fpdfxfa_page.cpp 229 int xSize,
242 rect.Set(xPos, yPos, xSize, ySize);
249 m_pPDFPage->GetDisplayMatrix(matrix, xPos, yPos, xSize, ySize, iRotate);
  /external/pdfium/fpdfsdk/include/fpdfxfa/
fpdfxfa_page.h 49 int xSize,
  /external/opencv3/modules/video/src/opencl/
pyrlk.cl 314 unsigned int xsize=get_local_size(0);
317 float wx = ((xid+2*xsize)<c_winSize_x)?1:0;
322 const int tid = mad24(yid, xsize, xid);
437 xBase+=xsize;
442 xBase+=xsize;
455 xBase+=xsize;
460 xBase+=xsize;
473 xBase+=xsize;
478 xBase+=xsize;
510 xBase+=xsize;
    [all...]
  /external/clang/test/Analysis/
cxx11-crashes.cpp 38 const float ysize={0.015}, xsize={0.01}; local
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.c 848 int ix, int xsize) {
    [all...]

Completed in 4873 milliseconds

1 2 3 4 5 6 7 8 910