height             47 apps/HelloAndroid/src/com/example/hellohalide/CameraPreview.java             processFrame(data, s.width, s.height, mCameraOrientation, mFiltered.getHolder().getSurface());
height             84 apps/HelloAndroid/src/com/example/hellohalide/CameraPreview.java         Log.d(TAG, "Camera Preview Size: " + s.width + "x" + s.height);
height             88 apps/HelloAndroid/src/com/example/hellohalide/CameraPreview.java             int y_size = stride * s.height;
height             90 apps/HelloAndroid/src/com/example/hellohalide/CameraPreview.java             int c_size = c_stride * s.height/2;
height             39 apps/HelloAndroidCamera2/jni/HalideFilters.cpp         src->luma().height() != dst->luma().height() ||
height             41 apps/HelloAndroidCamera2/jni/HalideFilters.cpp         src->chromaU().height() != dst->chromaU().height() ||
height             43 apps/HelloAndroidCamera2/jni/HalideFilters.cpp         src->chromaV().height() != dst->chromaV().height()) {
height             48 apps/HelloAndroidCamera2/jni/HalideFilters.cpp             src->luma().width(), src->luma().height(),
height             49 apps/HelloAndroidCamera2/jni/HalideFilters.cpp             src->chromaU().width(), src->chromaU().height(),
height             50 apps/HelloAndroidCamera2/jni/HalideFilters.cpp             src->chromaV().width(), src->chromaV().height(),
height             51 apps/HelloAndroidCamera2/jni/HalideFilters.cpp             dst->luma().width(), dst->luma().height(),
height             52 apps/HelloAndroidCamera2/jni/HalideFilters.cpp             dst->chromaU().width(), dst->chromaU().height(),
height             53 apps/HelloAndroidCamera2/jni/HalideFilters.cpp             dst->chromaV().width(), dst->chromaV().height());
height             40 apps/HelloAndroidCamera2/jni/LockedSurface.cpp     uint32_t lumaSizeBytes = lumaRowStrideBytes * buffer_.height;
height             43 apps/HelloAndroidCamera2/jni/LockedSurface.cpp     uint32_t chromaSizeBytes = chromaRowStrideBytes * buffer_.height / 2;
height             49 apps/HelloAndroidCamera2/jni/LockedSurface.cpp         buffer_.width, buffer_.height,
height             52 apps/HelloAndroidCamera2/jni/LockedSurface.cpp         buffer_.width / 2, buffer_.height / 2,
height             55 apps/HelloAndroidCamera2/jni/LockedSurface.cpp         buffer_.width / 2, buffer_.height / 2,
height             43 apps/HelloAndroidCamera2/jni/YuvBufferT.cpp         chromaU_.height() == chromaV_.height() &&
height             61 apps/HelloAndroidCamera2/jni/YuvBufferT.cpp                 if (&chromaU_(0, chromaU_.height()) == &chromaV_(0, 0)) {
height             63 apps/HelloAndroidCamera2/jni/YuvBufferT.cpp                 } else if (&chromaV_(0, chromaU_.height()) == &chromaU_(0, 0)) {
height            165 apps/HelloAndroidCamera2/jni/YuvBufferT.cpp     return Halide::Runtime::Buffer<uint8_t>(&buf(buf.width()-1, buf.height()-1), 2, shape);
height             23 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AndroidBufferUtilities.java     public static native long allocNativeYuvBufferT(int width, int height, ByteBuffer luma,
height             54 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java     public void setAspectRatio(int width, int height) {
height             55 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java         if (width < 0 || height < 0) {
height             59 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java         mRatioHeight = height;
height             67 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java         int height = MeasureSpec.getSize(heightMeasureSpec);
height             70 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java                     + " dimension to: %d x %d", width, height));
height             71 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java             setMeasuredDimension(width, height);
height             73 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java             if (width < height * mRatioWidth / mRatioHeight) {
height             74 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java                 Log.d(TAG, String.format("setting measured dimension to %d x %d", width, height));
height             77 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java                 Log.d(TAG, String.format("setting measured dimension to %d x %d", width, height));
height             78 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/AutoFitSurfaceView.java                 setMeasuredDimension(height * mRatioWidth / mRatioHeight, height);
height             86 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/Camera2BasicFragment.java                 int height) {
height            566 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/Camera2BasicFragment.java     private static Size chooseOptimalSize(Size[] choices, int width, int height, Size aspectRatio) {
height            573 apps/HelloAndroidCamera2/src/com/example/helloandroidcamera2/Camera2BasicFragment.java                     option.getWidth() <= width && option.getHeight() <= height) {
height             19 apps/HelloAndroidGL/jni/android_halide_gl_native.cpp     JNIEnv *env, jobject obj, jint dst, jint width, jint height) {
height             23 apps/HelloAndroidGL/jni/android_halide_gl_native.cpp     dstBuf.extent[1] = height;
height             24 apps/HelloAndroidGL/src/org/halide_lang/hellohalidegl/HelloHalideGL.java     private static native void processTextureHalide(int dst, int width, int height);
height             13 apps/HelloMatlab/iir_blur.cpp Func blur_cols_transpose(Func input, Expr height, Expr alpha) {
height             21 apps/HelloMatlab/iir_blur.cpp     RDom ry(1, height - 1);
height             25 apps/HelloMatlab/iir_blur.cpp     Expr flip_ry = height - ry - 1;
height             69 apps/HelloMatlab/iir_blur.cpp         Expr height = input.height();
height             77 apps/HelloMatlab/iir_blur.cpp         Func blury_T = blur_cols_transpose(input_func, height, alpha);
height             26 apps/bilateral_grid/filter.cpp     Buffer<float> output(input.width(), input.height(), 1);
height             22 apps/blur/test.cpp     Buffer<uint16_t> tmp(in.width()-8, in.height());
height             23 apps/blur/test.cpp     Buffer<uint16_t> out(in.width()-8, in.height()-2);
height             26 apps/blur/test.cpp         for (int y = 0; y < tmp.height(); y++)
height             30 apps/blur/test.cpp         for (int y = 0; y < out.height(); y++)
height             40 apps/blur/test.cpp     Buffer<uint16_t> out(in.width()-8, in.height()-2);
height             45 apps/blur/test.cpp         for (int yTile = 0; yTile < out.height(); yTile += 32) {
height            123 apps/blur/test.cpp     Buffer<uint16_t> out(in.width()-8, in.height()-2);
height            137 apps/blur/test.cpp         for (int yTile = 0; yTile < in.height(); yTile += 128) {
height            178 apps/blur/test.cpp     Buffer<uint16_t> out(in.width()-8, in.height()-2);
height            200 apps/blur/test.cpp     for (int y = 0; y < input.height(); y++) {
height            221 apps/blur/test.cpp     for (int y = 64; y < input.height() - 64; y++) {
height             15 apps/c_backend/pipeline_generator.cpp         f(x, y) = (input(clamp(x+2, 0, input.width()-1), clamp(y-2, 0, input.height()-1)) * 17)/13;
height             42 apps/c_backend/run.cpp     for (int y = 0; y < in.height(); y++) {
height             55 apps/c_backend/run.cpp     for (int y = 0; y < out_native.height(); y++) {
height             71 apps/c_backend/run_cpp.cpp     for (int y = 0; y < in.height(); y++) {
height             84 apps/c_backend/run_cpp.cpp     for (int y = 0; y < out_native.height(); y++) {
height            316 apps/camera_pipe/camera_pipe_generator.cpp     Expr out_height = processed.output_buffer().height();
height             81 apps/camera_pipe/fcam/Demosaic.cpp     int rawHeight = input.height();
height             85 apps/camera_pipe/fcam/Demosaic.cpp     outHeight = min(outHeight, out.height());
height             32 apps/camera_pipe/fcam/Demosaic_ARM.cpp         input = input.subImage(1, 0, Size(input.width()-2, input.height()));
height             35 apps/camera_pipe/fcam/Demosaic_ARM.cpp         input = input.subImage(0, 1, Size(input.width(), input.height()-2));
height             38 apps/camera_pipe/fcam/Demosaic_ARM.cpp         input = input.subImage(1, 1, Size(input.width()-2, input.height()-2));
height             45 apps/camera_pipe/fcam/Demosaic_ARM.cpp     int rawHeight = out.height();
height             59 apps/camera_pipe/fcam/Demosaic_ARM.cpp     outHeight = min(outHeight, out.height());
height             68 apps/camera_pipe/fcam/Demosaic_ARM.cpp         ((input.height() - 8) != (unsigned)outHeight)) {
height             70 apps/camera_pipe/fcam/Demosaic_ARM.cpp         int offY = (input.height() - 8 - outHeight)/2;
height             31 apps/camera_pipe/process.cpp     fprintf(stderr, "       %d %d\n", input.width(), input.height());
height             32 apps/camera_pipe/process.cpp     Buffer<uint8_t> output(((input.width() - 32)/32)*32, ((input.height() - 24)/32)*32, 3);
height             74 apps/camera_pipe/process.cpp     fprintf(stderr, "        %d %d\n", output.width(), output.height());
height             76 apps/camera_pipe/process.cpp     Buffer<uint8_t> output_c(output.width(), output.height(), output.channels());
height             85 apps/camera_pipe/process.cpp     fprintf(stderr, "        %d %d\n", output_c.width(), output_c.height());
height             87 apps/camera_pipe/process.cpp     Buffer<uint8_t> output_asm(output.width(), output.height(), output.channels());
height             96 apps/camera_pipe/process.cpp     fprintf(stderr, "        %d %d\n", output_asm.width(), output_asm.height());
height             53 apps/interpolate/interpolate.cpp             Expr h = input.height()/(1 << l);
height            133 apps/interpolate/interpolate.cpp             .bound(y, 0, input.height());
height            168 apps/interpolate/interpolate.cpp             .tile(x, y, xo, yo, xi, yi, input.width()/4, input.height()/4)
height            210 apps/interpolate/interpolate.cpp     Buffer<float> out(in_png.width(), in_png.height(), 3);
height             49 apps/linear_algebra/src/blas_l2_generators.cpp             const Expr size = A_.height();
height            113 apps/linear_algebra/src/blas_l2_generators.cpp             y_.set_bounds(0, 0, A_.height());
height            114 apps/linear_algebra/src/blas_l2_generators.cpp             result.output_buffer().set_bounds(0, 0, A_.height());
height            117 apps/linear_algebra/src/blas_l2_generators.cpp             const Expr sum_size = A_.height();
height            155 apps/linear_algebra/src/blas_l2_generators.cpp             x_.set_bounds(0, 0, A_.height());
height            212 apps/linear_algebra/src/blas_l2_generators.cpp         Expr num_cols = A_.height();
height            229 apps/linear_algebra/src/blas_l2_generators.cpp         y_.set_bounds(0, 0, A_.height());
height            233 apps/linear_algebra/src/blas_l2_generators.cpp                 .set_bounds(1, 0, A_.height());
height             33 apps/linear_algebra/src/blas_l3_generators.cpp         const Expr num_cols = B_.height();
height             34 apps/linear_algebra/src/blas_l3_generators.cpp         const Expr sum_size = A_.height();
height            127 apps/linear_algebra/src/blas_l3_generators.cpp             .specialize(A_.width() >= 256 && A_.height() >= 256).parallel(jo, 4);
height             23 apps/local_laplacian/process.cpp     Buffer<uint16_t> output(input.width(), input.height(), 3);
height             35 apps/opengl_demo/glfw_helpers.cpp struct info GlfwHelpers::setup(int width, int height)
height             42 apps/opengl_demo/glfw_helpers.cpp     window = glfwCreateWindow(width, height, "opengl_halide_test", NULL, NULL);
height             10 apps/opengl_demo/glfw_helpers.h     struct info setup(int width, int height);
height             22 apps/opengl_demo/layout.cpp void Layout::draw_texture(enum location location, GLuint texture_id, int width, int height, const std::string &label)
height             40 apps/opengl_demo/layout.cpp             y0 = header_sz;             y1 = y0 + height;
height             45 apps/opengl_demo/layout.cpp             y1 = state.window_height - header_sz;        y0 = y1 - height;
height             54 apps/opengl_demo/layout.cpp void Layout::draw_image(enum location location, const uint8_t *data, int width, int height, const std::string &label)
height             56 apps/opengl_demo/layout.cpp     const auto texture_id = OpenGLHelpers::create_texture(width, height, data);
height             57 apps/opengl_demo/layout.cpp     draw_texture(location, texture_id, width, height, label);
height             21 apps/opengl_demo/layout.h     void draw_image(enum location location, const uint8_t *data, int width, int height, const std::string &label);
height             22 apps/opengl_demo/layout.h     void draw_texture(enum location location, GLuint texture_id, int width, int height, const std::string &label);
height             19 apps/opengl_demo/main.cpp buffer_t create_buffer(int width, int height)
height             29 apps/opengl_demo/main.cpp     buf.extent[1] = height;
height             41 apps/opengl_demo/main.cpp std::string run_cpu_filter(const uint8_t *image_data, uint8_t *result_data, int width, int height)
height             46 apps/opengl_demo/main.cpp     auto input_buf = create_buffer(width, height);
height             50 apps/opengl_demo/main.cpp     auto output_buf = create_buffer(width, height);
height             64 apps/opengl_demo/main.cpp std::string run_opengl_filter_from_host_to_host(const uint8_t *image_data, uint8_t *result_data, int width, int height)
height             72 apps/opengl_demo/main.cpp     auto input_buf = create_buffer(width, height);
height             79 apps/opengl_demo/main.cpp     auto output_buf = create_buffer(width, height);
height             93 apps/opengl_demo/main.cpp std::string run_opengl_filter_from_texture_to_texture(GLuint input_texture_id, GLuint output_texture_id, int width, int height)
height            100 apps/opengl_demo/main.cpp     auto input_buf = create_buffer(width, height);
height            106 apps/opengl_demo/main.cpp     auto output_buf = create_buffer(width, height);
height            129 apps/opengl_demo/main.cpp     const auto height = image.height;
height            132 apps/opengl_demo/main.cpp     const auto layout = Layout::setup(width, height);
height            139 apps/opengl_demo/main.cpp     Layout::draw_image(Layout::UL, image.data, width, height, "Input");
height            146 apps/opengl_demo/main.cpp     const auto cpu_result_data = (uint8_t *) calloc(width * height * 4, sizeof(uint8_t));
height            147 apps/opengl_demo/main.cpp     report = run_cpu_filter(image.data, cpu_result_data, width, height);
height            148 apps/opengl_demo/main.cpp     Layout::draw_image(Layout::UR, cpu_result_data, width, height, report);
height            155 apps/opengl_demo/main.cpp     const auto opengl_result_data = (uint8_t *) calloc(width * height * 4, sizeof(uint8_t));
height            156 apps/opengl_demo/main.cpp     report = run_opengl_filter_from_host_to_host(image.data, opengl_result_data, width, height);
height            157 apps/opengl_demo/main.cpp     Layout::draw_image(Layout::LL, opengl_result_data, width, height, report);
height            164 apps/opengl_demo/main.cpp     const auto image_texture_id = OpenGLHelpers::create_texture(width, height, image.data);
height            165 apps/opengl_demo/main.cpp     const auto result_texture_id = OpenGLHelpers::create_texture(width, height, nullptr);
height            166 apps/opengl_demo/main.cpp     report = run_opengl_filter_from_texture_to_texture(image_texture_id, result_texture_id, width, height);
height            167 apps/opengl_demo/main.cpp     Layout::draw_texture(Layout::LR, result_texture_id, width, height, report);
height             16 apps/opengl_demo/opengl_helpers.cpp GLuint OpenGLHelpers::create_texture(int width, int height, const uint8_t *data)
height             26 apps/opengl_demo/opengl_helpers.cpp     glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
height             14 apps/opengl_demo/opengl_helpers.h     GLuint create_texture(int width, int height, const uint8_t *data);
height             35 apps/opengl_demo/png_helpers.cpp     const auto height     = png_get_image_height(png, png_info);
height             60 apps/opengl_demo/png_helpers.cpp     const auto image_data = (png_byte *)malloc(rowbytes * height * sizeof(png_byte));
height             62 apps/opengl_demo/png_helpers.cpp     const auto row_pointers = (png_byte **)malloc(height * sizeof(png_byte *));
height             63 apps/opengl_demo/png_helpers.cpp     for (int i = 0; i < height; i++) {
height             73 apps/opengl_demo/png_helpers.cpp     return { width, height, image_data };
height              8 apps/opengl_demo/png_helpers.h 	unsigned int height;
height            109 apps/openglcompute/jni/oglc_run.cpp         for (int j = 0; j < std::min(buf.height(), 10); j++) {
height            184 apps/openglcompute/jni/oglc_run.cpp         int height = 2048;
height            187 apps/openglcompute/jni/oglc_run.cpp         auto input = Buffer<T>::make_interleaved(width, height, channels);
height            188 apps/openglcompute/jni/oglc_run.cpp         LOGI("Allocated memory for %dx%dx%d image", width, height, channels);
height            197 apps/openglcompute/jni/oglc_run.cpp         auto output = Buffer<T>::make_interleaved(width, height, channels);
height            198 apps/openglcompute/jni/oglc_run.cpp         auto output_arm = Buffer<T>::make_interleaved(width, height, channels);
height             21 apps/openglcompute/jni/oglc_two_kernels_run.cpp     for (int j = 0; j < std::min(buf.height(), 10); j++) {
height             42 apps/openglcompute/jni/oglc_two_kernels_run.cpp     int height = 128;
height             45 apps/openglcompute/jni/oglc_two_kernels_run.cpp     auto input = Halide::Runtime::Buffer<int>::make_interleaved(width, height, channels);
height             46 apps/openglcompute/jni/oglc_two_kernels_run.cpp     LOGI("Allocated memory for %dx%dx%d image", width, height, channels);
height             55 apps/openglcompute/jni/oglc_two_kernels_run.cpp     auto output = Halide::Runtime::Buffer<int>::make_interleaved(width, height, channels);
height            182 apps/resize/resize.cpp     int out_height = in_png.height() * scaleFactor;
height            187 apps/resize/resize.cpp            in_png.width(), in_png.height(),
height             42 apps/wavelet/wavelet.cpp     Buffer<T> rearranged(t.width()*2, t.height(), 1);
height             43 apps/wavelet/wavelet.cpp     for (int y = 0; y < t.height(); y++) {
height             62 apps/wavelet/wavelet.cpp     Buffer<float> transformed(input.width()/2, input.height(), 2);
height             63 apps/wavelet/wavelet.cpp     Buffer<float> inverse_transformed(input.width(), input.height(), 1);
height            197 python_bindings/python/Image.cpp     return im.height();
height             93 python_bindings/python/Param.cpp             .def("height", &ImageParam::height, p::arg("self"),
height            224 src/Buffer.h       static Buffer<T> make_interleaved(int width, int height, int channels, const std::string &name = "") {
height            225 src/Buffer.h           return Buffer<T>(Runtime::Buffer<T>::make_interleaved(width, height, channels),
height            229 src/Buffer.h       static Buffer<> make_interleaved(Type t, int width, int height, int channels, const std::string &name = "") {
height            230 src/Buffer.h           return Buffer<>(Runtime::Buffer<>::make_interleaved(t, width, height, channels),
height            234 src/Buffer.h       static Buffer<T> make_interleaved(T *data, int width, int height, int channels, const std::string &name = "") {
height            235 src/Buffer.h           return Buffer<T>(Runtime::Buffer<T>::make_interleaved(data, width, height, channels),
height            240 src/Buffer.h       make_interleaved(Type t, T *data, int width, int height, int channels, const std::string &name = "") {
height            242 src/Buffer.h           return Buffer<T2>(Runtime::Buffer<T2>::make_interleaved(t, data, width, height, channels),
height            326 src/Buffer.h       HALIDE_BUFFER_FORWARD_CONST(height)
height            105 src/OutputImageParam.h     EXPORT Expr height() const;
height            924 src/runtime/HalideBuffer.h     int height() const {
height           1293 src/runtime/HalideBuffer.h     static Buffer<void, D> make_interleaved(halide_type_t t, int width, int height, int channels) {
height           1294 src/runtime/HalideBuffer.h         Buffer<void, D> im(t, channels, width, height);
height           1306 src/runtime/HalideBuffer.h     static Buffer<T, D> make_interleaved(int width, int height, int channels) {
height           1307 src/runtime/HalideBuffer.h         Buffer<T, D> im(channels, width, height);
height           1315 src/runtime/HalideBuffer.h     make_interleaved(halide_type_t t, T *data, int width, int height, int channels) {
height           1316 src/runtime/HalideBuffer.h         Buffer<add_const_if_T_is_const<void>, D> im(t, data, channels, width, height);
height           1323 src/runtime/HalideBuffer.h     static Buffer<T, D> make_interleaved(T *data, int width, int height, int channels) {
height           1324 src/runtime/HalideBuffer.h         Buffer<T, D> im(data, channels, width, height);
height             13 src/runtime/metal_objc_platform_dependent.cpp         unsigned long height;
height             19 src/runtime/metal_objc_platform_dependent.cpp     threadgroupsPerGrid.height = blocks_y;
height             24 src/runtime/metal_objc_platform_dependent.cpp     threadsPerThreadgroup.height = threads_y;
height             86 src/runtime/mini_opengl.h                                     GLsizei width, GLsizei height,
height             92 src/runtime/mini_opengl.h                                        GLsizei width, GLsizei height,
height             95 src/runtime/mini_opengl.h typedef void (*PFNGLVIEWPORTPROC)(GLint x, GLint y, GLsizei width, GLsizei height);
height             97 src/runtime/mini_opengl.h                                 GLsizei width, GLsizei height,
height            887 src/runtime/opengl.cpp                                  GLint *height, GLint *channels) {
height            902 src/runtime/opengl.cpp     *height = (buf->dimensions > 1) ? buf->dim[1].extent : 1;
height            970 src/runtime/opengl.cpp         GLint width, height;
height            973 src/runtime/opengl.cpp         global_state.GetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_HEIGHT, &height);
height            977 src/runtime/opengl.cpp         if (width < buf->dim[0].extent || height < buf->dim[1].extent) {
height            980 src/runtime/opengl.cpp                 << "Texture size: " << width << "x" << height
height           1019 src/runtime/opengl.cpp         GLint width, height, channels;
height           1020 src/runtime/opengl.cpp         if (!get_texture_dimensions(user_context, buf, &width, &height, &channels)) {
height           1025 src/runtime/opengl.cpp         global_state.TexImage2D(GL_TEXTURE_2D, 0, internal_format, width, height, 0, format, type, NULL);
height           1036 src/runtime/opengl.cpp                             << " of size " << width << " x " << height << "\n";
height           1108 src/runtime/opengl.cpp     int height = (src_buf->dimensions > 1) ? src_buf->dim[1].extent : 1;
height           1113 src/runtime/opengl.cpp     for (int y = 0; y < height; y++) {
height           1135 src/runtime/opengl.cpp     int height = (dst_buf->dimensions > 1) ? dst_buf->dim[1].extent : 1;
height           1143 src/runtime/opengl.cpp     for (int y = 0; y < height; y++) {
height           1196 src/runtime/opengl.cpp     GLint width, height, buffer_channels;
height           1197 src/runtime/opengl.cpp     if (!get_texture_dimensions(user_context, buf, &width, &height, &buffer_channels)) {
height           1209 src/runtime/opengl.cpp         global_state.TexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, buf->host);
height           1217 src/runtime/opengl.cpp         size_t texture_size = width * height * buffer_channels * buf->type.bytes();
height           1237 src/runtime/opengl.cpp         global_state.TexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, tmp.ptr);
height           1267 src/runtime/opengl.cpp     GLint width, height, buffer_channels;
height           1268 src/runtime/opengl.cpp     if (!get_texture_dimensions(user_context, buf, &width, &height, &buffer_channels)) {
height           1345 src/runtime/opengl.cpp         size_t texture_size = width * height * texture_channels * buf->type.bytes();
height           1765 src/runtime/opengl.cpp     int height = num_coords_dim1;
height           1767 src/runtime/opengl.cpp     int vertex_buffer_size = width*height*num_padded_attributes;
height           1769 src/runtime/opengl.cpp     int element_buffer_size = (width-1)*(height-1)*6;
height           1773 src/runtime/opengl.cpp     for (int h=0;h!=(height-1);++h) {
height             58 src/runtime/qurt_hvx.cpp WEAK int _halide_prefetch_2d(const void *ptr, int width_bytes, int height, int stride_bytes) {
height             71 src/runtime/qurt_hvx.cpp         (static_cast<uint64_t>(height) << 0);
height            131 src/runtime/write_debug_image.cpp         int32_t height = shape[1].extent;
height            155 src/runtime/write_debug_image.cpp         tag++->assign32(257, 1, height);                         // Image height
height             86 test/common/check_call_graphs.h     for (int y = 0; y < im.height(); y++) {
height            101 test/common/check_call_graphs.h         for (int y = 0; y < im.height(); y++) {
height             18 test/correctness/autotune_bug.cpp                         clamp(y, 1, in_img.height())-1);
height             49 test/correctness/boundary_conditions.cpp             if (x < 0 || y < 0 || x >= input.width() || y >= input.height()) {
height             75 test/correctness/boundary_conditions.cpp             int32_t clamped_y = std::min(input.height() - 1, std::max(0, y));
height            103 test/correctness/boundary_conditions.cpp             while (mapped_y < 0) mapped_y += input.height();
height            104 test/correctness/boundary_conditions.cpp             while (mapped_y > input.height() - 1) mapped_y -= input.height();
height            133 test/correctness/boundary_conditions.cpp             mapped_y = mapped_y % (2 * input.height());
height            134 test/correctness/boundary_conditions.cpp             if (mapped_y > (input.height() - 1)) {
height            135 test/correctness/boundary_conditions.cpp                 mapped_y = (2 * input.height() - 1) - mapped_y;
height            163 test/correctness/boundary_conditions.cpp             int32_t mapped_y = abs(y) % (input.height() * 2 - 2);
height            164 test/correctness/boundary_conditions.cpp             if (mapped_y > input.height() - 1) {
height            165 test/correctness/boundary_conditions.cpp                 mapped_y = input.height() * 2 - 2 - mapped_y;
height             13 test/correctness/dynamic_reduction_bounds.cpp     Expr hard_to_reason_about = cast<int>(hypot(input.width(), input.height()));
height             11 test/correctness/func_lifetime.cpp         for (int j = 0; j < im.height(); j++) {
height             11 test/correctness/func_lifetime_2.cpp         for (int j = 0; j < im.height(); j++) {
height             21 test/correctness/gameoflife.cpp     Expr w = input.width(), h = input.height();
height             97 test/correctness/gameoflife.cpp         Expr w = input.width(), h = input.height();
height             54 test/correctness/gpu_specialize.cpp         for (int y = 0; y < out1.height(); y++) {
height             91 test/correctness/gpu_specialize.cpp         for (int y = 0; y < out.height(); y++) {
height             85 test/correctness/gpu_thread_barrier.cpp         for (int y = 0; y < out.height(); y++) {
height             42 test/correctness/histogram_equalize.cpp     Buffer<uint8_t> out = rescaled.realize(in.width(), in.height());
height             49 test/correctness/histogram_equalize.cpp     for (int y = 0; y < out.height(); y++) {
height             57 test/correctness/histogram_equalize.cpp         int correct = (in.width()*in.height())/16;
height             65 test/correctness/image_io.cpp     const int height = 1200;
height             72 test/correctness/image_io.cpp     Buffer<uint8_t> color_buf = f.realize(width, height, 3);
height             74 test/correctness/image_io.cpp     Buffer<uint8_t> luma_buf(width, height, 1);
height             14 test/correctness/implicit_args_tests.cpp             for (int y = 0; y < im.height(); y++) {
height             21 test/correctness/infer_arguments.cpp         Param<int32_t> height("height");
height             32 test/correctness/infer_arguments.cpp         f(x, y, c) = frac * (input1(clamp(x, 0, height), clamp(y, 0, width), c) +
height            328 test/correctness/interleave.cpp                     for (int y = 0; y < ref.height(); y++) {
height             35 test/correctness/interleave_rgb.cpp     for (int y = 0; y < buff.height(); y++) {
height             25 test/correctness/interleave_x.cpp     for (int y = 0; y < out.height(); y++) {
height             18 test/correctness/logical.cpp     for (int y = 0; y < input.height(); y++) {
height             40 test/correctness/logical.cpp         Buffer<uint8_t> output = f.realize(input.width(), input.height(), target);
height             42 test/correctness/logical.cpp         for (int y = 0; y < input.height(); y++) {
height             73 test/correctness/logical.cpp         Buffer<uint8_t> output = f.realize(input.width(), input.height(), target);
height             75 test/correctness/logical.cpp         for (int y = 0; y < input.height(); y++) {
height            104 test/correctness/logical.cpp         Buffer<uint8_t> output = f.realize(input.width(), input.height(), target);
height            106 test/correctness/logical.cpp         for (int y = 0; y < input.height(); y++) {
height            133 test/correctness/logical.cpp         Buffer<uint8_t> output = f.realize(input.width(), input.height(), target);
height            135 test/correctness/logical.cpp         for (int y = 0; y < input.height(); y++) {
height            186 test/correctness/logical.cpp             Realization r = out.realize(input.width(), input.height(), target);
height            190 test/correctness/logical.cpp             for (int y = 0; y < input.height(); y++) {
height             68 test/correctness/many_small_extern_stages.cpp     for (int y = 0; y < result.height(); y++) {
height             95 test/correctness/math.cpp         Buffer<type_ret> result = test_##name.realize(in.height(), target);          \
height             96 test/correctness/math.cpp         for (int i = 0; i < in.height(); i++) {                                     \
height            177 test/correctness/mul_div_mod.cpp Buffer<T> init(Type t, int unique, int width, int height) {
height            179 test/correctness/mul_div_mod.cpp     if (height < 2) height = 2;
height            181 test/correctness/mul_div_mod.cpp     Buffer<T> result(width, height);
height            190 test/correctness/mul_div_mod.cpp             for (int j = 0; j < height; j++) {
height            217 test/correctness/mul_div_mod.cpp             for (int j = 0; j < height; j++) {
height            241 test/correctness/mul_div_mod.cpp             for (int j = 0; j < height; j++) {
height             18 test/correctness/oddly_sized_output.cpp     for (int y = 0; y < out.height(); y++) {
height             10 test/correctness/partition_loops.cpp         for (int y = 0; y < input.height(); y++) {
height             37 test/correctness/partition_loops.cpp     for (int y = 0; y < input.height(); y++) {
height             54 test/correctness/partition_loops_bug.cpp     for (int y = 0; y < im1.height(); y++) {
height             92 test/correctness/process_some_tiles.cpp     for (int y = 0; y < result.height(); y++) {
height             91 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            124 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            153 test/correctness/reduction_non_rectangular.cpp         for (int y = 0; y < im.height(); y++) {
height            196 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            235 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            276 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            323 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            368 test/correctness/reduction_non_rectangular.cpp         for (int y = 0; y < im.height(); y++) {
height            395 test/correctness/reduction_non_rectangular.cpp         for (int y = 0; y < im.height(); y++) {
height            440 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            494 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            535 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im1.height(); y++) {
height            550 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im2.height(); y++) {
height            585 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im1.height(); y++) {
height            659 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            691 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            740 test/correctness/reduction_non_rectangular.cpp         for (int y = 0; y < im.height(); y++) {
height            762 test/correctness/reduction_non_rectangular.cpp         for (int y = 0; y < im.height(); y++) {
height            785 test/correctness/reduction_non_rectangular.cpp     Expr h = (f.output_buffer().height()/2)*2;
height            796 test/correctness/reduction_non_rectangular.cpp     for (int y = 0; y < im.height(); y++) {
height            799 test/correctness/reduction_non_rectangular.cpp             if ((1 <= x && x < im.width() - 1) && (1 <= y && y < im.height() - 1) &&
height             25 test/correctness/reduction_schedule.cpp     RDom r(0, noise.width(), 1, noise.height()-1);
height             21 test/correctness/sliding_reduction.cpp     for (int y = 0; y < im.height(); y++) {
height            469 test/correctness/specialize.cpp         int h = im.get().height();
height            479 test/correctness/specialize.cpp         h = im.get().height();
height            503 test/correctness/specialize.cpp         int h = im.get().height();
height            518 test/correctness/specialize.cpp         h = im.get().height();
height            112 test/correctness/storage_folding.cpp         for (int y = 0; y < im.height(); y++) {
height            146 test/correctness/storage_folding.cpp         for (int y = 0; y < im.height(); y++) {
height            183 test/correctness/storage_folding.cpp         for (int y = 0; y < im.height(); y++) {
height            203 test/correctness/storage_folding.cpp         f.bound(y, 0, (f.output_buffer().height()/8)*8).split(y, yo, yi, 8);
height            222 test/correctness/storage_folding.cpp         for (int y = 0; y < im.height(); y++) {
height            260 test/correctness/storage_folding.cpp         for (int y = 0; y < im.height(); y++) {
height            294 test/correctness/storage_folding.cpp         for (int y = 0; y < im.height(); y++) {
height             99 test/correctness/trim_no_ops.cpp         for (int y = 0; y < im.height(); y++) {
height            216 test/correctness/trim_no_ops.cpp         for (int y = 0; y < im.height(); y++) {
height             22 test/correctness/truncated_pyramid.cpp     Param<int> width, height;
height             24 test/correctness/truncated_pyramid.cpp     sizes[0] = { width, height };
height             42 test/correctness/truncated_pyramid.cpp             .specialize(max(width, height) > 32)
height             60 test/correctness/truncated_pyramid.cpp             .specialize(max(width, height) > 32)
height             69 test/correctness/truncated_pyramid.cpp     height.set(1000);
height             21 test/correctness/tuple_partial_update.cpp         for (int y = 0; y < a.height(); y++) {
height             43 test/correctness/tuple_partial_update.cpp         for (int y = 0; y < a.height(); y++) {
height             32 test/correctness/tuple_reduction.cpp         for (int y = 0; y < a.height(); y++) {
height             79 test/correctness/tuple_reduction.cpp         for (int y = 0; y < a.height(); y++) {
height            122 test/correctness/tuple_reduction.cpp         for (int y = 0; y < a.height(); y++) {
height            166 test/correctness/tuple_reduction.cpp         for (int y = 0; y < a.height(); y++) {
height             60 test/correctness/tuple_undef.cpp         for (int y = 0; y < a.height(); y++) {
height             88 test/correctness/tuple_undef.cpp         for (int y = 0; y < a.height(); y++) {
height            116 test/correctness/tuple_undef.cpp         for (int y = 0; y < a.height(); y++) {
height             16 test/correctness/tuple_update_ops.cpp         for (int y = 0; y < a.height(); y++) {
height             39 test/correctness/tuple_update_ops.cpp         for (int y = 0; y < a.height(); y++) {
height             65 test/correctness/tuple_update_ops.cpp             for (int i = 0; i < a.height(); i++) {
height             88 test/correctness/tuple_update_ops.cpp         for (int y = 0; y < a.height(); y++) {
height            111 test/correctness/tuple_update_ops.cpp         for (int y = 0; y < a.height(); y++) {
height             27 test/correctness/vectorized_load_from_vectorized_allocation.cpp         for (int y = 0; y < im.height(); y++) {
height             57 test/correctness/vectorized_reduction_bug.cpp         for (int y = 0; y < im.height(); y++) {
height             29 test/error/expanding_reduction.cpp     assert(in.height() == 102 && in.width() == 100);
height             12 test/error/impossible_constraints.cpp     out() = input(input.width(), input.height()) + input(0, 0);
height             10 test/error/init_def_should_be_all_vars.cpp     RDom r(0, in.width(), 0, in.height());
height             12 test/error/init_def_should_be_all_vars.cpp     f.realize(in.width(), in.height());
height            212 test/generator/acquire_release_aottest.cpp     for (int y = 0; y < input.height(); y++) {
height            226 test/generator/acquire_release_aottest.cpp     for (int y = 0; y < output.height(); y++) {
height             20 test/generator/blur2x2_generator.cpp     Input<int32_t> height{ "height" };
height             35 test/generator/blur2x2_generator.cpp             input, 0, width, 0, height);
height             19 test/generator/gpu_only_aottest.cpp     for (int y = 0; y < input.height(); y++) {
height             19 test/generator/mandelbrot_aottest.cpp         mandelbrot(-2.0f, 2.0f, -1.4f, 1.4f, fx, fy, iters, output.width(), output.height(),
height             25 test/generator/mandelbrot_aottest.cpp     for (int y = 0; y < output.height(); y++) {
height             19 test/generator/memory_profiler_mandelbrot_aottest.cpp const int height = 30;
height             29 test/generator/memory_profiler_mandelbrot_aottest.cpp const int y_niters = (height + tile_y - 1)/tile_y;
height             63 test/generator/memory_profiler_mandelbrot_aottest.cpp     Buffer<int> output(width, height);
height             66 test/generator/memory_profiler_mandelbrot_aottest.cpp                                output.width(), output.height(), output);
height             15 test/generator/pyramid_aottest.cpp     for (int y = 0; y < input.height(); y++) {
height             33 test/generator/pyramid_aottest.cpp     for (int y = 0; y < input.height(); y++) {
height             45 test/generator/pyramid_aottest.cpp         for (int y = 0; y < input.height() >> l; y++) {
height             27 test/generator/stubtest_aottest.cpp         input.height() != output.height()) {
height             28 test/generator/stubtest_aottest.cpp         fprintf(stderr, "size mismatch: %dx%d vs %dx%d\n",input.width(),input.height(),output.width(),output.height());
height             33 test/generator/stubtest_aottest.cpp         for (int y = 0; y < output.height(); y++) {
height             34 test/generator/stubtest_jittest.cpp         input.height() != output.height()) {
height             40 test/generator/stubtest_jittest.cpp         for (int y = 0; y < output.height(); y++) {
height             30 test/generator/stubuser_aottest.cpp         input.height() != output.height()) {
height             36 test/generator/stubuser_aottest.cpp         for (int y = 0; y < output.height(); y++) {
height             30 test/generator/tiled_blur_aottest.cpp         int min_y = ev->coordinates[2], height = ev->coordinates[3];
height             32 test/generator/tiled_blur_aottest.cpp         int max_y = min_y + height - 1;
height             34 test/generator/tiled_blur_aottest.cpp         printf("Using %d x %d input tile over [%d - %d] x [%d - %d]\n", width, height, min_x, max_x,
height             42 test/generator/tiled_blur_aottest.cpp         assert(height == 33 || height == 34);
height             15 test/opengl/conv_select.cpp     const int width = 10, height = 10, channels = 4, res_channels = 2;
height             16 test/opengl/conv_select.cpp     Buffer<float> input(width, height, channels);
height             37 test/opengl/conv_select.cpp     Buffer<float> result = g.realize(width, height, res_channels, target);
height             33 test/opengl/rewrap_texture.cpp     const int height = 10;
height             35 test/opengl/rewrap_texture.cpp     Buffer<uint8_t> input(width, height, 3);
height             36 test/opengl/rewrap_texture.cpp     Buffer<uint8_t> out1(width, height, 3);
height             37 test/opengl/rewrap_texture.cpp     Buffer<uint8_t> out2(width, height, 3);
height             38 test/opengl/rewrap_texture.cpp     Buffer<uint8_t> out3(width, height, 3);
height             55 test/opengl/rewrap_texture.cpp     glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
height             98 test/opengl/select.cpp     for (int y = 0; y < image.height(); y++) {
height            146 test/opengl/select.cpp     const int width = 10, height = 10;
height            147 test/opengl/select.cpp     Buffer<uint8_t> out = f.realize(width, height, channels, target);
height            182 test/opengl/select.cpp     const int width = 10, height = 10;
height            183 test/opengl/select.cpp     Buffer<uint8_t> out = f.realize(width, height, channels, target);
height             41 test/opengl/special_funcs.cpp     for (int y = 0; y < gpu_result.height(); y++) {
height             71 test/opengl/special_funcs.cpp     for (int y = 0; y < gpu_result.height(); y++) {
height             13 test/opengl/sum_reduction.cpp     const int width = 10, height = 10, channels = 4;
height             14 test/opengl/sum_reduction.cpp     Buffer<float> input(width, height, channels);
height             30 test/opengl/sum_reduction.cpp     Buffer<float> result = g.realize(width, height, channels, target);
height             13 test/opengl/sumcolor_reduction.cpp     const int width = 10, height = 10, channels = 3;
height             14 test/opengl/sumcolor_reduction.cpp     Buffer<float> input(width, height, channels);
height            126 test/performance/block_transpose.cpp     for (int y = 0; y < im2.height(); y++) {
height             21 test/performance/clamped_vector_load.cpp         for (int y = 0; y < output.height(); y++) {
height             44 test/performance/clamped_vector_load.cpp     for (int y = 0; y < input.height(); y++) {
height             67 test/performance/fast_pow.cpp     int timing_N = timing_scratch.width() * timing_scratch.height() * 10;
height             68 test/performance/fast_pow.cpp     int correctness_N = fast_result.width() * fast_result.height();
height            148 test/performance/wrap.cpp     for (int y = 0; y < out3.height(); y++) {
height            157 test/performance/wrap.cpp     for (int y = 0; y < out3.height(); y++) {
height            121 tools/halide_image_info.h     std::cout << tag << " height      = " << img.height() << std::endl;
height            124 tools/halide_image_io.h     PngRowPointers(int height, int rowbytes) : p(new png_bytep[height]), height(height) {
height            126 tools/halide_image_io.h             for (int y = 0; y < height; y++) {
height            133 tools/halide_image_io.h             for (int y = 0; y < height; y++) {
height            140 tools/halide_image_io.h     int const height;
height            179 tools/halide_image_io.h     int height = png_get_image_height(png_ptr, info_ptr);
height            189 tools/halide_image_io.h         *im = ImageType(width, height, channels);
height            191 tools/halide_image_io.h         *im = ImageType(width, height);
height            200 tools/halide_image_io.h     Internal::PngRowPointers row_pointers(im->height(), png_get_rowbytes(png_ptr, info_ptr));
height            210 tools/halide_image_io.h         for (int y = 0; y < im->height(); y++) {
height            220 tools/halide_image_io.h         for (int y = 0; y < im->height(); y++) {
height            284 tools/halide_image_io.h     png_set_IHDR(png_ptr, info_ptr, im.width(), im.height(),
height            290 tools/halide_image_io.h     Internal::PngRowPointers row_pointers(im.height(), png_get_rowbytes(png_ptr, info_ptr));
height            299 tools/halide_image_io.h     for (int y = 0; y < im.height(); y++) {
height            350 tools/halide_image_io.h     int width, height, maxval;
height            362 tools/halide_image_io.h     if (!check(sscanf(buf, "%d %d\n", &width, &height) == 2, "Could not read PGM width and height\n")) return false;
height            372 tools/halide_image_io.h     *im = ImageType(width, height);
height            376 tools/halide_image_io.h         std::vector<uint8_t> data(width*height);
height            377 tools/halide_image_io.h         if (!check(fread((void *) &data[0], sizeof(uint8_t), width*height, f.f) == (size_t) (width*height), "Could not read PGM 8-bit data\n")) return false;
height            380 tools/halide_image_io.h         for (int y = 0; y < height; y++) {
height            387 tools/halide_image_io.h         std::vector<uint16_t> data(width*height);
height            388 tools/halide_image_io.h         if (!check(fread((void *) &data[0], sizeof(uint16_t), width*height, f.f) == (size_t) (width*height), "Could not read PGM 16-bit data\n")) return false;
height            391 tools/halide_image_io.h         for (int y = 0; y < height; y++) {
height            417 tools/halide_image_io.h     fprintf(f.f, "P5\n%d %d\n%d\n", im.width(), im.height(), (1<<bit_depth)-1);
height            418 tools/halide_image_io.h     int width = im.width(), height = im.height();
height            421 tools/halide_image_io.h         std::vector<uint8_t> data(width*height);
height            423 tools/halide_image_io.h         for (int y = 0; y < height; y++) {
height            428 tools/halide_image_io.h         if (!check(fwrite((void *) &data[0], sizeof(uint8_t), width*height, f.f) == (size_t) (width*height), "Could not write PGM 8-bit data\n")) return false;
height            431 tools/halide_image_io.h         std::vector<uint16_t> data(width*height);
height            433 tools/halide_image_io.h         for (int y = 0; y < height; y++) {
height            441 tools/halide_image_io.h         if (!check(fwrite((void *) &data[0], sizeof(uint16_t), width*height, f.f) == (size_t) (width*height), "Could not write PGM 16-bit data\n")) return false;
height            455 tools/halide_image_io.h     int width, height, maxval;
height            467 tools/halide_image_io.h     if (!check(sscanf(buf, "%d %d\n", &width, &height) == 2, "Could not read PPM width and height\n")) return false;
height            477 tools/halide_image_io.h     *im = ImageType(width, height, channels);
height            481 tools/halide_image_io.h         std::vector<uint8_t> data(width*height*3);
height            482 tools/halide_image_io.h         if (!check(fread((void *) &data[0], sizeof(uint8_t), width*height*3, f.f) == (size_t) (width*height*3), "Could not read PPM 8-bit data\n")) return false;
height            485 tools/halide_image_io.h         for (int y = 0; y < height; y++) {
height            487 tools/halide_image_io.h                 Internal::convert(*row++, im_data[(0*height+y)*width+x]);
height            488 tools/halide_image_io.h                 Internal::convert(*row++, im_data[(1*height+y)*width+x]);
height            489 tools/halide_image_io.h                 Internal::convert(*row++, im_data[(2*height+y)*width+x]);
height            494 tools/halide_image_io.h         std::vector<uint16_t> data(width*height*3);
height            495 tools/halide_image_io.h         if (!check(fread((void *) &data[0], sizeof(uint16_t), width*height*3, f.f) == (size_t) (width*height*3), "Could not read PPM 16-bit data\n")) return false;
height            498 tools/halide_image_io.h         for (int y = 0; y < height; y++) {
height            503 tools/halide_image_io.h                 Internal::convert(value, im_data[(0*height+y)*width+x]);
height            506 tools/halide_image_io.h                 Internal::convert(value, im_data[(1*height+y)*width+x]);
height            509 tools/halide_image_io.h                 Internal::convert(value, im_data[(2*height+y)*width+x]);
height            529 tools/halide_image_io.h     fprintf(f.f, "P6\n%d %d\n%d\n", im.width(), im.height(), (1<<bit_depth)-1);
height            530 tools/halide_image_io.h     int width = im.width(), height = im.height(), channels = im.channels();
height            533 tools/halide_image_io.h         std::vector<uint8_t> data(width*height*3);
height            537 tools/halide_image_io.h             for (int y = 0; y < height; y++) {
height            545 tools/halide_image_io.h             for (int y = 0; y < height; y++) {
height            553 tools/halide_image_io.h         if (!check(fwrite((void *) &data[0], sizeof(uint8_t), width*height*3, f.f) == (size_t) (width*height*3), "Could not write PPM 8-bit data\n")) return false;
height            556 tools/halide_image_io.h         std::vector<uint16_t> data(width*height*3);
height            560 tools/halide_image_io.h             for (int y = 0; y < height; y++) {
height            575 tools/halide_image_io.h             for (int y = 0; y < height; y++) {
height            586 tools/halide_image_io.h         if (!check(fwrite((void *) &data[0], sizeof(uint16_t), width*height*3, f.f) == (size_t) (width*height*3), "Could not write PPM 16-bit data\n")) return false;
height            631 tools/halide_image_io.h     cinfo.image_height = im.height();
height            646 tools/halide_image_io.h     for (int y = 0; y < im.height(); y++) {
height            700 tools/halide_image_io.h     for (int y = 0; y < im->height(); y++) {
height             89 tutorial/lesson_01_basics.cpp     for (int j = 0; j < output.height(); j++) {
height             95 tutorial/lesson_02_input_image.cpp         brighter.realize(input.width(), input.height(), input.channels());
height             85 tutorial/lesson_07_multi_stage_pipelines.cpp         Buffer<uint8_t> result(input.width()-2, input.height()-2, 3);
height            114 tutorial/lesson_07_multi_stage_pipelines.cpp         Expr clamped_y = clamp(y, 0, input.height()-1);
height            160 tutorial/lesson_07_multi_stage_pipelines.cpp         Buffer<uint8_t> result = output.realize(input.width(), input.height(), 3);
height            201 tutorial/lesson_09_update_definitions.cpp         RDom r(0, input.width(), 0, input.height());
height            215 tutorial/lesson_09_update_definitions.cpp         for (int r_y = 0; r_y < input.height(); r_y++) {
height            665 tutorial/lesson_09_update_definitions.cpp         Buffer<uint8_t> halide_result = blurry.realize(input.width(), input.height());
height            674 tutorial/lesson_09_update_definitions.cpp         Buffer<uint8_t> c_result(input.width(), input.height());
height            675 tutorial/lesson_09_update_definitions.cpp         for (int y = 0; y < input.height(); y++) {
height            685 tutorial/lesson_09_update_definitions.cpp                         int clamped_y = std::min(std::max(y + r_y, 0), input.height()-1);
height            695 tutorial/lesson_09_update_definitions.cpp         for (int y = 0; y < input.height(); y++) {
height            767 tutorial/lesson_09_update_definitions.cpp         Expr y_clamped = clamp(y, 0, input.height()-1);
height            790 tutorial/lesson_09_update_definitions.cpp         Buffer<uint8_t> halide_result = spread.realize(input.width(), input.height());
height            801 tutorial/lesson_09_update_definitions.cpp         Buffer<uint8_t> c_result(input.width(), input.height());
height            811 tutorial/lesson_09_update_definitions.cpp             for (int yo = 0; yo < (input.height() + 31)/32; yo++) {
height            812 tutorial/lesson_09_update_definitions.cpp                 int y_base = std::min(yo * 32, input.height() - 32);
height            838 tutorial/lesson_09_update_definitions.cpp                         int clamped_y = std::min(std::max(cy, 0), input.height()-1);
height            924 tutorial/lesson_09_update_definitions.cpp         for (int y = 0; y < input.height(); y++) {
height             51 tutorial/lesson_12_using_the_gpu.cpp                                 clamp(y, 0, input.height()-1), c);
height            203 tutorial/lesson_12_using_the_gpu.cpp         Buffer<uint8_t> output(input.width(), input.height(), input.channels());
height            235 tutorial/lesson_12_using_the_gpu.cpp             curved.realize(input.width(), input.height(), input.channels());
height            239 tutorial/lesson_12_using_the_gpu.cpp             for (int y = 0; y < input.height(); y++) {
height            263 tutorial/lesson_12_using_the_gpu.cpp     Buffer<uint8_t> reference_output(input.width(), input.height(), input.channels());
height            278 tutorial/lesson_13_tuples.cpp         for (int y = 0; y < result.height(); y++) {
height             45 tutorial/lesson_18_parallel_associative_reductions.cpp         RDom r(0, input.width(), 0, input.height());
height             84 tutorial/lesson_18_parallel_associative_reductions.cpp         RDom ry(0, input.height());
height            119 tutorial/lesson_18_parallel_associative_reductions.cpp         RDom r(0, input.width(), 0, input.height());
height            166 tutorial/lesson_18_parallel_associative_reductions.cpp         for (int y = 0; y < input.height(); y++) {
height            171 tutorial/lesson_18_parallel_associative_reductions.cpp         /* parallel */ for (int y = 0; y < input.height(); y++) {
height            182 tutorial/lesson_18_parallel_associative_reductions.cpp             for (int r_y = 0; r_y < input.height(); r_y++) {
height            204 tutorial/lesson_18_parallel_associative_reductions.cpp         RDom r(0, input.width(), 0, input.height());
height            238 tutorial/lesson_18_parallel_associative_reductions.cpp         for (int r_y = 0; r_y < input.height(); r_y++) {
height            272 tutorial/lesson_18_parallel_associative_reductions.cpp         RDom r(0, input.width(), 0, input.height());
height            304 tutorial/lesson_18_parallel_associative_reductions.cpp         for (int v = 0; v < input.height() / 2; v++) {
height            311 tutorial/lesson_18_parallel_associative_reductions.cpp         /* parallel */ for (int v = 0; v < input.height() / 2; v++) {
height            326 tutorial/lesson_18_parallel_associative_reductions.cpp             for (int ry_outer = 0; ry_outer < input.height() / 2; ry_outer++) {