HomeSort by relevance Sort by last modified time
    Searched refs:_width (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /hardware/qcom/msm8x26/kernel-headers/media/
msm_media_info.h 30 #define VENUS_Y_STRIDE(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 128)
31 #define VENUS_UV_STRIDE(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 128)
32 #define VENUS_Y_SCANLINES(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 32)
34 #define VENUS_UV_SCANLINES(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 16)
35 #define VENUS_BUFFER_SIZE_UNALIGNED(_color_fmt, _width, _height) ((VENUS_Y_STRIDE(_color_fmt, _width) * VENUS_Y_SCANLINES(_color_fmt, _height)) + (VENUS_UV_STRIDE(_color_fmt, _width) * VENUS_UV_SCA (…)
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfPreviewImage.cpp 53 _width = width;
56 [checkArraySize (uiMult (_width, _height), sizeof (PreviewRgba))];
60 for (unsigned int i = 0; i < _width * _height; ++i)
65 for (unsigned int i = 0; i < _width * _height; ++i)
72 _width (other._width),
74 _pixels (new PreviewRgba [other._width * other._height])
76 for (unsigned int i = 0; i < _width * _height; ++i)
92 _width = other._width;
    [all...]
ImfPreviewImage.h 104 unsigned int width () const {return _width;}
116 {return _pixels[y * _width + x];}
119 {return _pixels[y * _width + x];}
123 unsigned int _width; member in class:Imf::PreviewImage
ImfRgbaFile.cpp 220 int _width; member in class:Imf::RgbaOutputFile::ToYca
249 _width = dw.max.x - dw.min.x + 1;
262 ptrdiff_t pad = cachePadding (_width * sizeof (Rgba)) / sizeof (Rgba);
264 _bufBase = new Rgba[(_width + pad) * N];
267 _buf[i] = _bufBase + (i * (_width + pad));
269 _tmpBuf = new Rgba[_width + N - 1];
379 for (int j = 0; j < _width; ++j)
390 RGBAtoYCA (_yw, _width, _writeA, _tmpBuf, _tmpBuf);
414 for (int j = 0; j < _width; ++j)
424 RGBAtoYCA (_yw, _width, _writeA, _tmpBuf + N2, _tmpBuf + N2)
833 int _width; member in class:Imf::RgbaInputFile::FromYca
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
80 width = _width;
  /external/webrtc/webrtc/modules/video_coding/codecs/i420/
i420.cc 141 _width(0),
161 _width = codecSettings->width;
195 _width = width;
199 size_t req_length = CalcBufferSize(kI420, _width, _height) + kI420HeaderSize;
205 int half_width = (_width + 1) / 2;
206 _decodedImage.CreateEmptyFrame(_width, _height, _width, half_width,
209 int ret = ConvertToI420(kI420, buffer, 0, 0, _width, _height, 0,
  /external/webrtc/webrtc/modules/video_coding/test/
video_source.h 66 uint16_t GetWidth() const { return _width; }
79 uint16_t _width; member in class:VideoSource
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
80 width = _width;
  /external/webrtc/webrtc/modules/video_render/linux/
video_x11_channel.cc 27 _width(DEFAULT_RENDER_FRAME_WIDTH),
49 if (_width != videoFrame.width() || _height
88 XShmPutImage(_display, _window, _gc, _image, 0, 0, _xPos, _yPos, _width,
98 width = _width;
203 if (CreateLocalRenderer(_width, _height) == -1)
247 _width = width;
252 &_shminfo, _width, _height); // this parameter needs to be the same for some reason.
video_x11_channel.h 74 int32_t _width; // incoming frame width member in class:webrtc::VideoX11Channel
  /external/jetty/src/java/org/eclipse/jetty/util/
StringMap.java 47 protected int _width=__HASH_WIDTH; field in class:StringMap
81 _width=width;
108 _width=width;
114 return _width;
158 node=(node._children==null)?null:node._children[c%_width];
200 parent._children=new Node[_width];
201 parent._children[c%_width]=node;
202 int oi=node._ochar[0]%_width;
203 if (node._ochar!=null && node._char[0]%_width!=oi)
286 node=(node._children==null)?null:node._children[c%_width];
    [all...]
  /external/ImageMagick/Magick++/lib/
Geometry.cpp 71 : _width(0),
86 : _width(0),
102 : _width(geometry_._width),
117 : _width(0),
134 : _width(width_),
163 _width=geometry_._width;
223 _width=width_val;
278 if (_width)
    [all...]
  /external/opencv3/modules/videoio/src/
cap_winrt_bridge.cpp 148 void VideoioBridge::setWidth(int _width)
150 width = _width;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
_bitmap.py 96 self._width = width
108 return self._crop_box[2] if self._crop_box else self._width
117 crop_box = self._crop_box or (0, 0, self._width, self._height)
118 return _BitmapTools((self._bpp, self._width, self._height) + crop_box,
126 _, _, self._width, self._height = self._crop_box
141 base = self._bpp * (y * self._width + x)
221 cur_box = self._crop_box or (0, 0, self._width, self._height)
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 87 virtual bool open(const char* _address, const char* _port, int _width, int _height);
105 bool CVCapture_Socket::open(const char* _address, const char* _port, int _width, int _height)
115 width = _width;
  /external/webrtc/webrtc/modules/video_coding/codecs/i420/include/
i420.h 146 int _width; member in class:webrtc::I420Decoder
  /external/webrtc/webrtc/modules/video_render/mac/
video_render_nsopengl.mm 27 _width( 0),
96 if(_width != videoFrame.width() ||
112 _width = width;
134 if (width == _width && _height == height)
142 _width = width;
152 _incomingBufferSize = CalcBufferSize(kI420, _width, _height);
153 _bufferSize = CalcBufferSize(kARGB, _width, _height);
180 if (texSize < _width || texSize < _height)
190 _width, // width
248 _width, // widt
    [all...]
video_render_agl.cc 37 _width( 0),
85 if (_width != videoFrame.width() ||
122 if (width == _width && _height == height)
130 _width = width;
140 _incomingBufferSize = CalcBufferSize(kI420, _width, _height);
141 _bufferSize = CalcBufferSize(kARGB, _width, _height);//_width * _height * bytesPerPixel;
192 if (texSize < _width || texSize < _height)
203 _width, // width
259 _width, // widt
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Drawable.h 811 _width = width_;
815 return _width;
838 double _width; member in class:Magick::DrawableCompositeImage
1409 size_t _width; member in class:Magick::DrawablePushPattern
1585 double _width; member in class:Magick::DrawableRoundRectangle
1971 double _width; member in class:Magick::DrawableStrokeWidth
    [all...]
  /bionic/libc/kernel/uapi/linux/
v4l2-dv-timings.h 22 #define V4L2_INIT_BT_TIMINGS(_width,args...) {.bt = { _width, ##args } }
25 #define V4L2_INIT_BT_TIMINGS(_width,args...) . bt = { _width, ##args }
  /development/ndk/platforms/android-21/include/linux/
v4l2-dv-timings.h 22 #define V4L2_INIT_BT_TIMINGS(_width, args...) { .bt = { _width , ## args } }
25 #define V4L2_INIT_BT_TIMINGS(_width, args...) .bt = { _width , ## args }
  /external/kernel-headers/original/uapi/linux/
v4l2-dv-timings.h 29 #define V4L2_INIT_BT_TIMINGS(_width, args...) \
30 { .bt = { _width , ## args } }
32 #define V4L2_INIT_BT_TIMINGS(_width, args...) \
33 .bt = { _width , ## args }
  /external/opencv3/modules/videoio/src/cap_winrt/
MediaStreamSink.hpp 106 unsigned int _width; member in class:Media::WrlSealed
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
v4l2-dv-timings.h 22 #define V4L2_INIT_BT_TIMINGS(_width, args...) { .bt = { _width , ## args } }
25 #define V4L2_INIT_BT_TIMINGS(_width, args...) .bt = { _width , ## args }
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
v4l2-dv-timings.h 22 #define V4L2_INIT_BT_TIMINGS(_width, args...) { .bt = { _width , ## args } }
25 #define V4L2_INIT_BT_TIMINGS(_width, args...) .bt = { _width , ## args }

Completed in 944 milliseconds

1 2 3 4