HomeSort by relevance Sort by last modified time
    Searched full:pixsize (Results 1 - 14 of 14) sorted by null

  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 115 final int pixSize = mBitmap.getRowBytes() * mBitmap.getHeight();
116 final int tooSmall = pixSize / 2;
120 mBitmap.copyPixelsToBuffer(CharBuffer.allocate(pixSize));
133 ByteBuffer byteBuf = ByteBuffer.allocate(pixSize);
136 assertEquals(pixSize, byteBuf.position());
146 ShortBuffer shortBuf = ShortBuffer.allocate(pixSize);
149 assertEquals(pixSize >> 1, shortBuf.position());
159 IntBuffer intBuf1 = IntBuffer.allocate(pixSize);
162 assertEquals(pixSize >> 2, intBuf1.position());
168 IntBuffer intBuf2 = IntBuffer.allocate(pixSize);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 85 if (index > code->pixsize)
86 code->pixsize = index;
504 if (code->pixsize >= compiler->Base.max_temp_regs)
546 if (code->pixsize >= R300_PFS_NUM_TEMP_REGS
radeon_code.h 218 uint32_t pixsize; /* US_PIXSIZE */ member in struct:r300_fragment_program_code
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 85 if (index > code->pixsize)
86 code->pixsize = index;
504 if (code->pixsize >= compiler->Base.max_temp_regs)
546 if (code->pixsize >= R300_PFS_NUM_TEMP_REGS
radeon_code.h 218 uint32_t pixsize; /* US_PIXSIZE */ member in struct:r300_fragment_program_code
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_texture_desc.c 61 unsigned pixsize = util_format_get_blocksize(format); local
65 assert(pixsize <= 16);
70 if (pixsize == 4)
75 tile = table[macrotile][util_logbase2(pixsize)][microtile][dim];
79 h_tile = table[macrotile][util_logbase2(pixsize)][microtile][DIM_HEIGHT];
80 align = 64 / (pixsize * h_tile);
r300_fs.c 339 OUT_CB_REG(R300_US_PIXSIZE, code->pixsize);
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture_desc.c 61 unsigned pixsize = util_format_get_blocksize(format); local
65 assert(pixsize <= 16);
70 if (pixsize == 4)
75 tile = table[macrotile][util_logbase2(pixsize)][microtile][dim];
79 h_tile = table[macrotile][util_logbase2(pixsize)][microtile][DIM_HEIGHT];
80 align = 64 / (pixsize * h_tile);
r300_fs.c 339 OUT_CB_REG(R300_US_PIXSIZE, code->pixsize);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_blit.c 273 unsigned pixsize = util_format_get_blocksize(rtex->real_format); local
285 if (pixsize == 8)
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_blit.c 273 unsigned pixsize = util_format_get_blocksize(rtex->real_format); local
285 if (pixsize == 8)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_blit.c 575 unsigned pixsize = util_format_get_blocksize(rtex->resource.b.b.format); local
587 if (pixsize == 8)
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 575 unsigned pixsize = util_format_get_blocksize(rtex->resource.b.b.format); local
587 if (pixsize == 8)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SVG/resources/
MtSaintHelens.svg 106 var pixSize;
210 pixSize = origPixSize / scale;
211 ox = initLeft - (trans.x * pixSize); //pan settings.
212 oy = initTop - (trans.y * pixSize);
214 var height = origHeight * pixSize;
215 var width = origWidth * pixSize;
    [all...]

Completed in 345 milliseconds