HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 726 - 750 of 11432) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/skia/src/svg/
SkSVGRect.cpp 14 SVG_ATTRIBUTE(height),
33 SVG_ADD_ATTRIBUTE(height);
  /external/chromium_org/third_party/webrtc/modules/utility/source/
frame_scaler.cc 33 (video_frame->height() != out_height)) {
35 scaler_->Set(video_frame->width(), video_frame->height(), out_width,
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
brighten.cc 23 if (frame->width() <= 0 || frame->height() <= 0) {
27 int num_pixels = frame->width() * frame->height();
color_enhancement.cc 28 if (frame->width() == 0 || frame->height() == 0) {
35 int size_uv = ((frame->width() + 1) / 2) * ((frame->height() + 1) / 2);
  /external/chromium_org/third_party/webrtc/test/gl/
gl_renderer.cc 43 void GlRenderer::ResizeViewport(size_t width, size_t height) {
45 glViewport(0, 0, width, height);
54 void GlRenderer::ResizeVideo(size_t width, size_t height) {
57 height_ = height;
59 buffer_size_ = width * height * 4; // BGRA
68 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_BGRA,
77 static_cast<size_t>(frame.height()) != height_) {
78 ResizeVideo(frame.width(), frame.height());
  /external/chromium_org/third_party/webrtc/test/
vcm_capturer.h 24 size_t height, size_t target_fps);
37 bool Init(size_t width, size_t height, size_t target_fps);
  /external/chromium_org/ui/views/controls/
throbber.cc 59 DCHECK(frames_->width() > 0 && frames_->height() > 0);
60 DCHECK(frames_->width() % frames_->height() == 0);
61 frame_count_ = frames_->width() / frames_->height();
72 return gfx::Size(frames_->height(), frames_->height());
83 int image_size = frames_->height();
163 int checkmark_y = (height() - checkmark_->height()) / 2;
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
FileLoader.java 20 public DataFetcher<T> getResourceFetcher(File model, int width, int height) {
21 return uriLoader.getResourceFetcher(Uri.fromFile(model), width, height);
UrlLoader.java 15 public DataFetcher<T> getResourceFetcher(URL model, int width, int height) {
16 return glideUrlLoader.getResourceFetcher(new GlideUrl(model), width, height);
  /external/mesa3d/src/gallium/auxiliary/util/
u_clear.h 49 pipe->clear_render_target(pipe, ps, color, 0, 0, ps->width, ps->height);
57 0, 0, ps->width, ps->height);
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_modeset.h 41 int width, height; member in struct:native_mode
72 uint width, uint height);
  /external/mesa3d/src/mesa/main/
viewport.h 35 _mesa_Viewport(GLint x, GLint y, GLsizei width, GLsizei height);
40 GLsizei width, GLsizei height);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_readpixels.c 45 GLsizei width, GLsizei height,
54 _mesa_readpixels(ctx, x, y, width, height, format, type, pack, dest);
  /external/pixman/demos/
gtk-utils.h 14 int height,
  /external/replicaisland/src/com/replica/replicaisland/
ScrollableBitmap.java 27 public ScrollableBitmap(Texture texture, int width, int height) {
28 super(texture, width, height);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 21 private int height; field in class:ShadowPopupWindow
38 public void __constructor__(View contentView, int width, int height, boolean focusable) {
41 this.height = height;
67 public void setHeight(int height) {
68 this.height = height;
73 return height;
  /external/skia/include/gpu/
GrClipData.h 52 this->getConservativeBounds(surface->width(), surface->height(),
56 void getConservativeBounds(int width, int height,
GrRect.h 24 int height() const { return fBottom - fTop; } function in struct:GrIRect16
25 int area() const { return this->width() * this->height(); }
  /external/skia/src/core/
SkValidationUtils.h 29 return rect.width() >= 0 && rect.height() >= 0;
38 SkScalarIsFinite(rect.height());
  /external/skia/src/svg/
SkSVGRect.cpp 14 SVG_ATTRIBUTE(height),
33 SVG_ADD_ATTRIBUTE(height);
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
AccessibilityNodeInfoHelper.java 32 * @param height pixel height of the display
35 static Rect getVisibleBoundsInScreen(AccessibilityNodeInfo node, int width, int height) {
47 displayRect.bottom = height;
  /frameworks/base/core/jni/android/graphics/
Picture.cpp 27 mHeight = src->height();
39 Canvas* Picture::beginRecording(int width, int height) {
43 mHeight = height;
44 SkCanvas* canvas = mRecorder->beginRecording(width, height, NULL, 0);
62 SkASSERT(mPicture->height() == mHeight);
68 int Picture::height() const { function in class:android::Picture
71 SkASSERT(mPicture->height() == mHeight);
83 newPict->mHeight = newPict->mPicture->height();
  /frameworks/base/libs/hwui/tests/
TestContext.cpp 35 sp<SurfaceControl> createWindow(int width, int height) {
37 width, height, PIXEL_FORMAT_RGBX_8888);
  /frameworks/base/libs/hwui/utils/
Blur.h 39 uint8_t* dest, int32_t width, int32_t height);
41 uint8_t* dest, int32_t width, int32_t height);
  /frameworks/base/opengl/java/android/opengl/
ETC1Util.java 75 int height = texture.getHeight(); local
79 GLES10.glCompressedTexImage2D(target, level, ETC1.ETC1_RGB8_OES, width, height,
85 ByteBuffer decodedData = ByteBuffer.allocateDirect(stride*height)
87 ETC1.decodeImage(data, decodedData, width, height, pixelSize, stride);
88 GLES10.glTexImage2D(target, level, fallbackFormat, width, height, border,
117 public ETC1Texture(int width, int height, ByteBuffer data) {
119 mHeight = height;
130 * Get the height of the texture in pixels.
154 int height = 0; local
167 height = ETC1.getHeight(headerBuffer)
211 int height = texture.getHeight(); local
    [all...]

Completed in 925 milliseconds

<<21222324252627282930>>