Symbol: int16u
headers/libs/agg/agg_blur.h
38
static int16u const g_stack_blur8_mul[255];
headers/libs/agg/agg_blur.h
44
int16u const stack_blur_tables<T>::g_stack_blur8_mul[255] =
headers/libs/agg/agg_color_gray.h
227
typedef int16u value_type;
headers/libs/agg/agg_color_gray.h
246
v(int16u(v_)), a(int16u(a_)) {}
headers/libs/agg/agg_color_rgba.h
474
typedef int16u value_type;
headers/libs/agg/agg_glyph_raster_bin.h
126
int16u value(const int8u* p) const
headers/libs/agg/agg_glyph_raster_bin.h
128
int16u v;
headers/libs/agg/agg_gsv_text.h
65
int16u value(const int8u* p) const
headers/libs/agg/agg_gsv_text.h
67
int16u v;
headers/libs/agg/agg_math.h
251
extern int16u g_sqrt_table[1024];
headers/libs/agg/agg_pixfmt_rgb_packed.h
122
typedef int16u pixel_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
171
typedef int16u pixel_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
209
typedef int16u pixel_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
249
typedef int16u pixel_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
40
typedef int16u pixel_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
79
typedef int16u pixel_type;
headers/libs/agg/agg_pixfmt_rgba.h
2761
struct pixel64_type { int16u c[4]; };
headers/libs/agg/agg_scanline_storage_aa.h
530
typedef scanline_storage_aa<int16u> scanline_storage_aa16; //--------scanline_storage_aa16
headers/libs/agg/agg_scanline_storage_aa.h
808
typedef serialized_scanlines_adaptor_aa<int16u> serialized_scanlines_adaptor_aa16; //----serialized_scanlines_adaptor_aa16
headers/libs/agg/util/agg_color_conv_rgb8.h
185
unsigned rgb = *(int16u*)src;
headers/libs/agg/util/agg_color_conv_rgb8.h
212
*(int16u*)dst = (int16u)(((unsigned(src[R]) << 7) & 0x7C00) |
headers/libs/agg/util/agg_color_conv_rgb8.h
238
unsigned rgb = *(int16u*)src;
headers/libs/agg/util/agg_color_conv_rgb8.h
265
*(int16u*)dst = (int16u)(((unsigned(src[R]) << 8) & 0xF800) |
headers/libs/agg/util/agg_color_conv_rgb8.h
322
*(int16u*)dst = (int16u)(((unsigned(src[R]) << 7) & 0x7C00) |
headers/libs/agg/util/agg_color_conv_rgb8.h
382
*(int16u*)dst = (int16u)(((unsigned(src[R]) << 8) & 0xF800) |
headers/libs/agg/util/agg_color_conv_rgb8.h
410
unsigned rgb = *(int16u*)src;
headers/libs/agg/util/agg_color_conv_rgb8.h
411
*(int16u*)dst = (int16u)(((rgb << 1) & 0xFFC0) | (rgb & 0x1F));
headers/libs/agg/util/agg_color_conv_rgb8.h
430
unsigned rgb = *(int16u*)src;
headers/libs/agg/util/agg_color_conv_rgb8.h
431
*(int16u*)dst = (int16u)(((rgb >> 1) & 0x7FE0) | (rgb & 0x1F));
src/libs/agg/src/agg_sqrt_tables.cpp
24
int16u g_sqrt_table[1024] =
src/servers/app/drawing/Painter/agg_scanline_storage_subpix.h
394
typedef scanline_storage_subpix<int16u> scanline_storage_subpix16; //--------scanline_storage_subpix16
src/servers/app/drawing/Painter/agg_scanline_storage_subpix.h
672
typedef serialized_scanlines_adaptor_subpix<int16u>