HomeSort by relevance Sort by last modified time
    Searched defs:height (Results 26 - 50 of 3805) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libvncserver/examples/
pnmshow24.c 25 int j,width,height,paddedWidth; local
48 /* get width & height */
49 sscanf(buffer,"%d %d",&width,&height);
50 rfbLog("Got width %d and height %d.\n",width,height);
62 rfbScreen = rfbGetScreen(&argc,argv,paddedWidth,height,8,3,3);
76 rfbScreen->frameBuffer = (char*)malloc(paddedWidth*3*height);
77 fread(rfbScreen->frameBuffer,width*3,height,in);
83 for(j=height-1;j>=0;j--) {
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_surface.h 39 uint16_t height; member in struct:fd_surface
  /external/pdfium/fxbarcode/oned/
BC_OnedCodaBarWriter_unittest.cpp 22 int32_t height; local
24 uint8_t* encoded = writer.Encode("", BCFORMAT_CODABAR, width, height);
25 EXPECT_EQ(1, height);
35 encoded = writer.Encode("123", BCFORMAT_CODABAR, width, height);
36 EXPECT_EQ(1, height);
49 encoded = writer.Encode("-$./:+", BCFORMAT_CODABAR, width, height);
50 EXPECT_EQ(1, height);
68 encoded = writer.Encode("456.987987987/001", BCFORMAT_CODABAR, width, height);
69 EXPECT_EQ(1, height);
102 int32_t height; local
    [all...]
BC_OnedCode39Writer_unittest.cpp 38 int32_t height; local
42 encoded = writer.Encode("PDFIUM", BCFORMAT_CODE_39, width, height);
56 encoded = writer.Encode("PDFIUM", BCFORMAT_CODE_39, width, height);
72 int32_t height; local
76 encoded = writer.Encode("", BCFORMAT_CODE_39, width, height);
77 EXPECT_EQ(1, height);
87 encoded = writer.Encode("123", BCFORMAT_CODE_39, width, height);
88 EXPECT_EQ(1, height);
101 encoded = writer.Encode("PDFIUM", BCFORMAT_CODE_39, width, height);
102 EXPECT_EQ(1, height);
142 int32_t height; local
    [all...]
  /external/pdfium/testing/libfuzzer/
pdf_jpx_fuzzer.cc 24 uint32_t height; local
26 g_module.GetImageInfo(decoder.get(), &width, &height, &components);
30 mem *= height;
47 if (!bitmap->Create(width, height, format))
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPicture.java 13 private int height; field in class:ShadowPicture
27 height = src.getHeight();
37 return height;
41 public Canvas beginRecording(int width, int height) {
43 this.height = height;
44 return new Canvas(Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888));
  /external/skia/include/android/
SkBitmapRegionDecoder.h 76 int height() const { return fHeight; } function in class:SkBitmapRegionDecoder
82 SkBitmapRegionDecoder(int width, int height)
84 , fHeight(height)
  /external/skia/src/android/
SkBitmapRegionDecoderPriv.h 47 int height = SkTMin(imageDims.height() - top, subset->height() - *outY); local
48 if (width <= 0 || height <= 0) {
52 subset->setXYWH(left, top, width, height);
54 (height != subset->height())) {
  /external/skia/src/core/
SkBitmapProvider.cpp 16 int SkBitmapProvider::height() const { function in class:SkBitmapProvider
17 return fImage->height();
SkSpecialSurface.h 37 int height() const { return fSubset.height(); } function in class:SkSpecialSurface
63 int width, int height,
  /external/skia/src/gpu/
GrRectanizer.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
19 SkASSERT(height >= 0);
27 int height() const { return fHeight; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
  /external/skia/tests/
FillPathTest.cpp 36 int height = 100; local
39 clip.set(0, height - expected_lines, width, height);
41 path.quadTo(SkIntToScalar(width/2), SkIntToScalar(height),
  /external/skqp/include/android/
SkBitmapRegionDecoder.h 76 int height() const { return fHeight; } function in class:SkBitmapRegionDecoder
82 SkBitmapRegionDecoder(int width, int height)
84 , fHeight(height)
  /external/skqp/src/android/
SkBitmapRegionDecoderPriv.h 47 int height = SkTMin(imageDims.height() - top, subset->height() - *outY); local
48 if (width <= 0 || height <= 0) {
52 subset->setXYWH(left, top, width, height);
54 (height != subset->height())) {
  /external/skqp/src/core/
SkBitmapProvider.cpp 16 int SkBitmapProvider::height() const { function in class:SkBitmapProvider
17 return fImage->height();
SkSpecialSurface.h 37 int height() const { return fSubset.height(); } function in class:SkSpecialSurface
63 int width, int height,
  /external/skqp/src/gpu/
GrRectanizer.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
19 SkASSERT(height >= 0);
27 int height() const { return fHeight; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
  /external/skqp/tests/
FillPathTest.cpp 36 int height = 100; local
39 clip.set(0, height - expected_lines, width, height);
41 path.quadTo(SkIntToScalar(width/2), SkIntToScalar(height),
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/
Nest.java 19 private int height; field in class:Nest
22 return height;
25 public void setHeight(int height) {
26 this.height = height;
  /external/swiftshader/src/D3D8/
Direct3DTexture8.hpp 31 Direct3DTexture8(Direct3DDevice8 *device, unsigned int width, unsigned int height, unsigned int levels, unsigned long usage, D3DFORMAT format, D3DPOOL pool);
68 const unsigned int height; member in class:D3D8::Direct3DTexture8
Direct3DVolumeTexture8.hpp 31 Direct3DVolumeTexture8(Direct3DDevice8 *device, unsigned int width, unsigned int height, unsigned int depth, unsigned int levels, unsigned long usage, D3DFORMAT format, D3DPOOL pool);
68 const unsigned int height; member in class:D3D8::Direct3DVolumeTexture8
  /external/swiftshader/src/D3D9/
Direct3DVolumeTexture9.hpp 31 Direct3DVolumeTexture9(Direct3DDevice9 *device, unsigned int width, unsigned int height, unsigned int depth, unsigned int levels, unsigned long usage, D3DFORMAT format, D3DPOOL pool);
71 const unsigned int height; member in class:D3D9::Direct3DVolumeTexture9
  /external/tensorflow/tensorflow/compiler/xla/
array2d.h 68 int64 height() const { return this->dim(0); } function in class:xla::Array2D
  /external/tensorflow/tensorflow/core/kernels/
extract_jpeg_shape_op.cc 50 int width, height, components; variable
53 jpeg::GetImageInfo(input.data(), input.size(), &width, &height,
61 image_shape_data(0) = height;
  /external/tensorflow/tensorflow/core/kernels/fuzzing/
encode_jpeg_fuzz.cc 31 int64 height = data[1] + (data[2] << 8); variable
37 double hw_ratio = height / width;
40 height = static_cast<int64>(floor(sqrt(hw_ratio * pixels)));
41 if (height == 0) return;
42 width = static_cast<int64>(floor(pixels / height));
44 size_t actual_pixels = height * width * channels;
50 TensorShape({height, width, channels}));

Completed in 1868 milliseconds

12 3 4 5 6 7 8 91011>>