HomeSort by relevance Sort by last modified time
    Searched refs:bpp (Results 1 - 25 of 282) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/u-boot/include/
video_easylogo.h 21 int bpp; member in struct:__anon47921
video_fb.h 63 unsigned int bpp, /* bytes per pixel */
75 unsigned int bpp, /* bytes per pixel */
  /external/libpng/contrib/intel/
intel_init.c 22 png_init_filter_functions_sse2(png_structp pp, unsigned int bpp)
26 * So they generally speed up 3bpp images about 3x, 4bpp images about 4x.
27 * They can scale up to 6 and 8 bpp images and down to 2 bpp images,
28 * but they'd not likely have any benefit for 1bpp images.
33 if (bpp == 3)
40 else if (bpp == 4)
  /external/libpng/intel/
intel_init.c 21 png_init_filter_functions_sse2(png_structp pp, unsigned int bpp)
25 * So they generally speed up 3bpp images about 3x, 4bpp images about 4x.
26 * They can scale up to 6 and 8 bpp images and down to 2 bpp images,
27 * but they'd not likely have any benefit for 1bpp images.
32 if (bpp == 3)
39 else if (bpp == 4)
  /external/pdfium/third_party/libpng16/contrib/intel/
intel_init.c 22 png_init_filter_functions_sse2(png_structp pp, unsigned int bpp)
26 * So they generally speed up 3bpp images about 3x, 4bpp images about 4x.
27 * They can scale up to 6 and 8 bpp images and down to 2 bpp images,
28 * but they'd not likely have any benefit for 1bpp images.
33 if (bpp == 3)
40 else if (bpp == 4)
  /external/u-boot/drivers/video/
anx9804.h 19 void anx9804_init(unsigned int i2c_bus, u8 lanes, u8 data_rate, int bpp);
22 int bpp) {}
am335x-fb.h 48 unsigned int bpp; /* bits per pixel */ member in struct:am335x_lcdpanel
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
map_v4v6.c 112 _map_v4v6_hostent(struct hostent *hp, char **bpp, int *lenp)
121 int i = (int)(sizeof(align) - ((size_t)*bpp % sizeof(align)));
128 *bpp += i;
130 _map_v4v6_address(*ap, *bpp);
131 *ap = *bpp;
132 *bpp += IN6ADDRSZ;
  /external/libpng/arm/
arm_init.c 57 png_init_filter_functions_neon(png_structp pp, unsigned int bpp)
118 if (bpp == 3)
126 else if (bpp == 4)
  /external/libpng/mips/
mips_init.c 58 png_init_filter_functions_msa(png_structp pp, unsigned int bpp)
114 if (bpp == 3)
121 else if (bpp == 4)
  /external/libpng/powerpc/
powerpc_init.c 54 png_init_filter_functions_vsx(png_structp pp, unsigned int bpp)
110 if (bpp == 3)
117 else if (bpp == 4)
filter_vsx_intrinsics.c 164 #define vsx_char_to_short(vec,offset,bpp) (vector unsigned short)vec_perm((vec),VSX_CHAR_ZERO,VSX_CHAR_TO_SHORT##offset##_##bpp)
165 #define vsx_short_to_char(vec,offset,bpp) vec_perm(((vector unsigned char)(vec)),VSX_CHAR_ZERO,VSX_SHORT_TO_CHAR##offset##_##bpp)
176 const png_byte bpp = 4; local
181 vsx_declare_common_vars(row_info,row,prev_row,bpp)
191 *rp = (png_byte)(((int)(*rp) + (int)(*(rp-bpp))) & 0xff);
198 for(i=0;i < bpp ; i++)
200 *rp = (png_byte)(((int)(*rp) + (int)(*(rp-bpp))) & 0xff);
203 rp -= bpp;
233 const png_byte bpp = 3; local
297 const png_byte bpp = 4; local
384 const png_byte bpp = 3; local
502 const png_byte bpp = 4; local
622 const png_byte bpp = 3; local
    [all...]
  /external/pdfium/third_party/libpng16/arm/
arm_init.c 57 png_init_filter_functions_neon(png_structp pp, unsigned int bpp)
118 if (bpp == 3)
126 else if (bpp == 4)
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
format_traits.h 58 static const uint32_t bpp{ 0 };
78 static const uint32_t bpp{ 128 };
100 static const uint32_t bpp{ 128 };
122 static const uint32_t bpp{ 128 };
144 static const uint32_t bpp{ 128 };
166 static const uint32_t bpp{ 128 };
188 static const uint32_t bpp{ 128 };
210 static const uint32_t bpp{ 128 };
232 static const uint32_t bpp{ 128 };
254 static const uint32_t bpp{ 96 }
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-tegra20/
display.h 15 unsigned bpp; /* Bits per pixel */ member in struct:disp_ctl_win
  /frameworks/av/include/private/media/
VideoFrame.h 41 uint32_t angle, uint32_t bpp, bool hasData, size_t iccSize):
45 mRotationAngle(angle), mBytesPerPixel(bpp), mRowBytes(bpp * width),
46 mSize(hasData ? (bpp * width * height) : 0),
  /external/mesa3d/src/amd/addrlib/core/
addrelemlib.cpp 336 UINT_32 resultBits, ///< [in] result bits: total bpp after decompression
1143 UINT_32 bpp; local
1272 UINT_32 bpp; local
1373 UINT_32 bpp; local
    [all...]
  /external/skia/src/codec/
SkSwizzler.cpp 19 static void copy(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
22 // sampling, deltaSrc should equal bpp.
23 SkASSERT(deltaSrc == bpp);
25 memcpy(dst, src + offset, width * bpp);
28 static void sample1(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
38 static void sample2(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
48 static void sample4(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
58 static void sample6(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
69 static void sample8(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
89 int bpp, int deltaSrc, int offset, const SkPMColor* /*ctable*/)
    [all...]
  /external/skqp/src/codec/
SkSwizzler.cpp 19 static void copy(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
22 // sampling, deltaSrc should equal bpp.
23 SkASSERT(deltaSrc == bpp);
25 memcpy(dst, src + offset, width * bpp);
28 static void sample1(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
38 static void sample2(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
48 static void sample4(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
58 static void sample6(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
69 static void sample8(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
89 int bpp, int deltaSrc, int offset, const SkPMColor* /*ctable*/)
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_blt.h 52 uint8_t bpp; /* # bytes per pixel 1/2/4/8 - only used for CLEAR_IMAGE */ member in struct:blt_imginfo
93 uint8_t bpp; member in struct:blt_inplace_op
  /external/skia/src/gpu/
GrSurfacePriv.h 22 the tight row bytes (based on width and bpp) on output. */
25 size_t bpp,
31 size_t bpp,
GrSurface.cpp 96 size_t bpp,
101 *rowBytes = *width * bpp;
111 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
122 size_t bpp,
126 return adjust_params<void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height, data,
132 size_t bpp,
136 return adjust_params<const void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height,
  /external/skqp/src/gpu/
GrSurfacePriv.h 22 the tight row bytes (based on width and bpp) on output. */
25 size_t bpp,
31 size_t bpp,
  /external/mesa3d/src/gallium/drivers/vc5/
v3dx_format_table.c 194 uint32_t *bpp)
208 *bpp = V3D_INTERNAL_BPP_32;
215 *bpp = V3D_INTERNAL_BPP_32;
222 *bpp = V3D_INTERNAL_BPP_32;
238 *bpp = V3D_INTERNAL_BPP_64;
244 /* Use 64bpp to make sure the TLB doesn't throw away the alpha
247 *bpp = V3D_INTERNAL_BPP_64;
252 *bpp = V3D_INTERNAL_BPP_64;
257 *bpp = V3D_INTERNAL_BPP_32;
263 *bpp = V3D_INTERNAL_BPP_64
    [all...]
  /external/mesa3d/src/amd/addrlib/r800/
ciaddrlib.h 83 UINT_32 bpp, INT_32 index, INT_32 macroModeIndex, ADDR_TILEINFO* pInfo,
88 UINT_32 bpp, ADDR_TILEINFO* pTileInfo) const;
91 INT_32 tileIndex, ADDR_SURFACE_FLAGS flags, UINT_32 bpp, UINT_32 numSamples,
98 UINT_32 bpp, UINT_32 pitch, UINT_32 height, UINT_32 numSamples,
143 AddrTileMode tileMode, UINT_32 bpp, ADDR_SURFACE_FLAGS flags,
148 AddrTileMode tileMode, UINT_32 bpp, ADDR_SURFACE_FLAGS flags,
180 BOOL_32 CheckTcCompatibility(const ADDR_TILEINFO* pTileInfo, UINT_32 bpp, AddrTileMode tileMode,

Completed in 1037 milliseconds

1 2 3 4 5 6 7 8 91011>>