HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 251 - 275 of 9596) sorted by null

<<11121314151617181920>>

  /external/skia/third_party/etc1/
etc1.h 66 etc1_uint32 etc1_get_encoded_data_size(etc1_uint32 width, etc1_uint32 height);
75 int etc1_encode_image(const etc1_byte* pIn, etc1_uint32 width, etc1_uint32 height,
87 etc1_uint32 width, etc1_uint32 height,
96 void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height);
106 // Read the image height from a PKM header
  /external/webrtc/talk/media/base/
videorenderer.h 50 virtual bool SetSize(int width, int height, int reserved) { return true; };
  /external/webrtc/webrtc/base/
x11windowpicker.h 40 int* height) override;
41 uint8_t* GetWindowIcon(const WindowId& id, int* width, int* height);
42 uint8_t* GetWindowThumbnail(const WindowId& id, int width, int height);
44 uint8_t* GetDesktopThumbnail(const DesktopId& id, int width, int height);
  /external/webrtc/webrtc/modules/video_capture/
video_capture_delay.h 22 int32_t height; member in struct:webrtc::videocapturemodule::DelayValue
  /external/webrtc/webrtc/modules/video_processing/
spatial_resampler.h 27 virtual int32_t SetTargetFrameSize(int32_t width, int32_t height) = 0;
35 virtual bool ApplyResample(int32_t width, int32_t height) = 0;
42 virtual int32_t SetTargetFrameSize(int32_t width, int32_t height);
49 virtual bool ApplyResample(int32_t width, int32_t height);
  /external/webrtc/webrtc/tools/frame_editing/
frame_editing_lib.h 34 int EditFrames(const std::string& in_path, int width, int height,
  /frameworks/base/libs/hwui/
PixelBuffer.cpp 36 CpuPixelBuffer(GLenum format, uint32_t width, uint32_t height);
42 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
51 CpuPixelBuffer::CpuPixelBuffer(GLenum format, uint32_t width, uint32_t height)
52 : PixelBuffer(format, width, height)
53 , mBuffer(new uint8_t[width * height * formatSize(format)]) {
71 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) {
72 glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, width, height,
82 GpuPixelBuffer(GLenum format, uint32_t width, uint32_t height);
89 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
101 uint32_t width, uint32_t height)
    [all...]
  /frameworks/base/media/mca/effect/java/android/media/effect/
Effect.java 55 * <p>The input texture must be a valid texture name with the given width and height and must be
71 * @param height The height of the input texture in pixels.
74 public abstract void apply(int inputTexId, int width, int height, int outputTexId);
  /frameworks/base/opengl/java/android/opengl/
ETC1.java 86 public static native int getEncodedDataSize(int width, int height);
97 public static native void encodeImage(Buffer in, int width, int height,
110 int width, int height, int pixelSize, int stride);
116 * @param height the height of the image in pixels.
118 public static native void formatHeader(Buffer header, int width, int height);
133 * Read the image height from a PKM header
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DropTarget.java 28 * RecentsView, and the width/height are of the RecentsView.
30 boolean acceptsDrop(int x, int y, int width, int height, Rect insets, boolean isCurrentTarget);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.h 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer);
colorspace.h 31 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
35 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
39 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
43 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
contrast.h 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer);
  /frameworks/native/opengl/include/ETC1/
etc1.h 58 etc1_uint32 etc1_get_encoded_data_size(etc1_uint32 width, etc1_uint32 height);
67 int etc1_encode_image(const etc1_byte* pIn, etc1_uint32 width, etc1_uint32 height,
79 etc1_uint32 width, etc1_uint32 height,
88 void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height);
98 // Read the image height from a PKM header
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_resize.h 18 int height,
30 int height,
44 int height,
58 int height,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
yv12config.h 61 int width, int height, int border);
63 int width, int height, int border);
67 int width, int height, int ss_x, int ss_y,
77 int width, int height, int ss_x, int ss_y,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
y4menc.h 24 int y4m_write_file_header(char *buf, size_t len, int width, int height,
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetNative.java 34 * @param height the height of the input image.
36 * @param outputSize the width and height of the square output image.
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize,
  /packages/apps/Gallery2/src/com/android/photos/views/
SquareImageView.java 44 int height = width; local
46 height = Math.min(height, MeasureSpec.getSize(heightMeasureSpec));
48 setMeasuredDimension(width, height);
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRenderer.java 41 * Pass the drawing surface's width and height to initialize the
45 * @param height height of the drawing surface in pixels.
48 public static native void reset(int width, int height, boolean isLandscapeOrientation);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AutoResizeListView.java 26 * A list view that auto resizes depending on the height of the viewing frame. This means this
46 // The desired height is the available height we have for VIEWING.
51 // Measure height and obey the measure mode.
52 final int height; local
54 height = heightSize;
57 height = Math.min(desiredHeight, heightSize);
61 heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, heightMode);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
Target03.java 27 private final int height; field in class:Target03
31 public Target03(int width, int height) {
33 this.height = height;
42 boolean[][] f = new boolean[height][];
43 for (int i = 0; i < height; i++) {
50 field[wrap(x, width)][wrap(y, height)] = flag;
54 return field[wrap(x, width)][wrap(y, height)];
71 for (int y = 0; y < height; y++) {
125 for (int y = 0; y < height; y++)
    [all...]
  /external/libvpx/libvpx/examples/
resize_util.c 25 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
35 static int parse_dim(char *v, int *width, int *height) {
42 *height = atoi(&x[1]);
43 if (*width <= 0 || *height <= 0)
56 int width, height, target_width, target_height; local
68 if (!parse_dim(argv[2], &width, &height)) {
97 width, height);
105 inbuf = (uint8_t*)malloc(width * height * 3 / 2);
107 inbuf_u = inbuf + width * height;
108 inbuf_v = inbuf_u + width * height / 4
    [all...]
  /external/mesa3d/src/mesa/main/
drawtex.c 36 GLfloat width, GLfloat height)
43 if (width <= 0.0f || height <= 0.0f) {
44 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTex(width or height <= 0)");
54 ctx->Driver.DrawTex(ctx, x, y, z, width, height);
61 _mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height)
64 draw_texture(ctx, x, y, z, width, height);
77 _mesa_DrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height)
81 (GLfloat) width, (GLfloat) height);
95 _mesa_DrawTexs(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height)
99 (GLfloat) width, (GLfloat) height);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
resize_util.c 22 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
27 static int parse_dim(char *v, int *width, int *height) {
34 *height = atoi(&x[1]);
35 if (*width <= 0 || *height <= 0)
48 int width, height, target_width, target_height; local
58 if (!parse_dim(argv[2], &width, &height)) {
87 width, height);
95 inbuf = (uint8_t*)malloc(width * height * 3 / 2);
97 inbuf_u = inbuf + width * height;
98 inbuf_v = inbuf_u + width * height / 4
    [all...]

Completed in 1103 milliseconds

<<11121314151617181920>>