Home
last modified time | relevance | path

Searched refs:component_count (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/radeon/
DSIGenRegisterInfo.pl260 my $component_count = $reg_width / 32;
262 for (my $i = 0; $i < $reg_count; $i += $component_count) {
265 for (my $idx = 0; $idx < $component_count; $idx++) {
286 …print " let SubRegClasses = [($class_prefix\_", ($reg_width / $component_count) , ' ', join(', ',…
/external/ImageMagick/coders/
Dpict.c87 pixmap.component_count=(short) ReadBlobMSBShort(image); \
93 (pixmap.bits_per_pixel > 32) || (pixmap.component_count <= 0) || \
94 (pixmap.component_count > 4) || (pixmap.component_size <= 0)) \
124 component_count, member
874 pixmap.component_count=0; in ReadPICTImage()
1129 tile_image->alpha_trait=pixmap.component_count == 4 ? in ReadPICTImage()
1286 p+=(pixmap.component_count-1)*tile_image->columns; in ReadPICTImage()
1691 pixmap.component_count=1; in WritePICTImage()
1706 pixmap.component_count=image->alpha_trait != UndefinedPixelTrait ? 4 : 3; in WritePICTImage()
1901 (void) WriteBlobMSBShort(image,(unsigned short) pixmap.component_count); in WritePICTImage()
/external/skia/src/sksl/
DSkSLIRGenerator.cpp1265 int component_count(const Type& type) { in component_count() function
1289 if (args.size() != 1 || expected != component_count(args[0]->fType) || in convertCompoundConstructor()