Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for cbP1 (0.06 sec)

  1. src/image/png/reader.go

    	ctTrueColorAlpha = 6
    )
    
    // A cb is a combination of color type and bit depth.
    const (
    	cbInvalid = iota
    	cbG1
    	cbG2
    	cbG4
    	cbG8
    	cbGA8
    	cbTC8
    	cbP1
    	cbP2
    	cbP4
    	cbP8
    	cbTCA8
    	cbG16
    	cbGA16
    	cbTC16
    	cbTCA16
    )
    
    func cbPaletted(cb int) bool {
    	return cbP1 <= cb && cb <= cbP8
    }
    
    func cbTrueColor(cb int) bool {
    	return cb == cbTC8 || cb == cbTC16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. src/image/png/writer.go

    		e.tmp[9] = ctTrueColor
    	case cbP8:
    		e.tmp[8] = 8
    		e.tmp[9] = ctPaletted
    	case cbP4:
    		e.tmp[8] = 4
    		e.tmp[9] = ctPaletted
    	case cbP2:
    		e.tmp[8] = 2
    		e.tmp[9] = ctPaletted
    	case cbP1:
    		e.tmp[8] = 1
    		e.tmp[9] = ctPaletted
    	case cbTCA8:
    		e.tmp[8] = 8
    		e.tmp[9] = ctTrueColorAlpha
    	case cbG16:
    		e.tmp[8] = 16
    		e.tmp[9] = ctGrayscale
    	case cbTC16:
    		e.tmp[8] = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/go/doc/testdata/d.2.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  4. src/image/internal/imageutil/impl.go

    				r := yy1 + 91881*cr1
    				if uint32(r)&0xff000000 == 0 {
    					r >>= 16
    				} else {
    					r = ^(r >> 31)
    				}
    
    				g := yy1 - 22554*cb1 - 46802*cr1
    				if uint32(g)&0xff000000 == 0 {
    					g >>= 16
    				} else {
    					g = ^(g >> 31)
    				}
    
    				b := yy1 + 116130*cb1
    				if uint32(b)&0xff000000 == 0 {
    					b >>= 16
    				} else {
    					b = ^(b >> 31)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  5. src/go/doc/testdata/d.0.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                        cb.specify().columnId();
                    });
            final List<String> idList = activeSessionList.stream().map(CrawlingInfo::getId).collect(Collectors.toList());
            crawlingInfoParamBhv.queryDelete(cb1 -> cb1.query().filtered((cq, cf) -> {
                cq.matchAll();
                if (!idList.isEmpty()) {
                    cf.not(subCf -> subCf.setCrawlingInfoId_InScope(idList));
                }
            }));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/image/internal/imageutil/gen.go

    				if uint32(r)&0xff000000 == 0 {
    					r >>= 16
    				} else {
    					r = ^(r >> 31)
    				}
    
    				g := yy1 - 22554*cb1 - 46802*cr1
    				if uint32(g)&0xff000000 == 0 {
    					g >>= 16
    				} else {
    					g = ^(g >> 31)
    				}
    
    				b := yy1 + 116130*cb1
    				if uint32(b)&0xff000000 == 0 {
    					b >>= 16
    				} else {
    					b = ^(b >> 31)
    				}
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  8. src/go/doc/testdata/d1.go

    package d
    
    // C2 should be third.
    const C2 = 2
    
    // V2 should be third.
    var V2 int
    
    // CBx constants should appear before CAx constants.
    const (
    	CB2 = iota // before CB1
    	CB1        // before CB0
    	CB0        // at end
    )
    
    // VBx variables should appear before VAx variables.
    var (
    	VB2 int // before VB1
    	VB1 int // before VB0
    	VB0 int // at end
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1K bytes
    - Viewed (0)
  9. src/image/color/ycbcr.go

    	r := yy1 + 91881*cr1
    	if uint32(r)&0xff000000 == 0 {
    		r >>= 16
    	} else {
    		r = ^(r >> 31)
    	}
    
    	g := yy1 - 22554*cb1 - 46802*cr1
    	if uint32(g)&0xff000000 == 0 {
    		g >>= 16
    	} else {
    		g = ^(g >> 31)
    	}
    
    	b := yy1 + 116130*cb1
    	if uint32(b)&0xff000000 == 0 {
    		b >>= 16
    	} else {
    		b = ^(b >> 31)
    	}
    
    	return uint8(r), uint8(g), uint8(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/go/doc/testdata/d.1.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
Back to top