Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for uninterlace (0.4 sec)

  1. src/image/gif/reader.go

    	{4, 2}, // Group 3 : Every 4th. row, starting with row 2.
    	{2, 1}, // Group 4 : Every 2nd. row, starting with row 1.
    }
    
    // uninterlace rearranges the pixels in m to account for interlaced input.
    func uninterlace(m *image.Paletted) {
    	var nPix []uint8
    	dx := m.Bounds().Dx()
    	dy := m.Bounds().Dy()
    	nPix = make([]uint8, dx*dy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/image/png/testdata/benchRGB-interlace.png

    benchRGB-interlace.png...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 46.4K bytes
    - Viewed (0)
  3. src/image/png/reader.go

    	ftPaeth   = 4
    	nFilter   = 5
    )
    
    // Interlace type.
    const (
    	itNone  = 0
    	itAdam7 = 1
    )
    
    // interlaceScan defines the placement and size of a pass for Adam7 interlacing.
    type interlaceScan struct {
    	xFactor, yFactor, xOffset, yOffset int
    }
    
    // interlacing defines Adam7 interlacing, with 7 passes of reduced images.
    // See https://www.w3.org/TR/PNG/#8Interlace
    var interlacing = []interlaceScan{
    	{8, 8, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

      public void testSerializableOnReturnValues_good() throws Exception {
        tester.forAllPublicStaticMethods(GoodSerializableFactory.class).testSerializable();
      }
    
      public static class GoodSerializableFactory {
        public static Object good(Runnable r) {
          return r;
        }
    
        public static Object good(AnInterface i) {
          return i;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/OuterClass.java

     */
    
    package org.gradle.model.internal.inspect;
    
    import org.gradle.model.RuleSource;
    
    @SuppressWarnings("UnusedDeclaration")
    public class OuterClass {
        public static interface AnInterface {
        }
    
        public class InnerInstanceClass extends RuleSource {
        }
    
        private class PrivateInnerStaticClass {
        }
    
        public static class HasSuperclass extends InnerPublicStaticClass {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ClassModelRuleSourceValidationTest.groovy

            def e = thrown(InvalidModelRuleDeclarationException)
            def message = e.message
            message.contains(reason)
    
            where:
            type                               | reason
            OuterClass.AnInterface             | "Must be a class, not an interface"
            OuterClass.InnerInstanceClass      | "Enclosed classes must be static and non private"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            Type superclass = cls.getGenericSuperclass();
            if (superclass != null) {
                getAllTypeBindingsImpl(superclass, mapping);
            }
    
            for (Type anInterface : cls.getGenericInterfaces()) {
                getAllTypeBindingsImpl(anInterface, mapping);
            }
        }
    
        /**
         * Binds a given type with actual type arguments
         *
         * @param type     a type to be bound
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block.go

    }
    
    func blockGeneric(dig *digest, p []byte) {
    	var w [64]uint32
    	h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
    	for len(p) >= chunk {
    		// Can interlace the computation of w with the
    		// rounds below if needed for speed.
    		for i := 0; i < 16; i++ {
    			j := i * 4
    			w[i] = uint32(p[j])<<24 | uint32(p[j+1])<<16 | uint32(p[j+2])<<8 | uint32(p[j+3])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/internal/notsha256/sha256block.go

    }
    
    func blockGeneric(dig *digest, p []byte) {
    	var w [64]uint32
    	h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
    	for len(p) >= chunk {
    		// Can interlace the computation of w with the
    		// rounds below if needed for speed.
    		for i := 0; i < 16; i++ {
    			j := i * 4
    			w[i] = uint32(p[j])<<24 | uint32(p[j+1])<<16 | uint32(p[j+2])<<8 | uint32(p[j+3])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/JavaPropertyReflectionUtil.java

                    return annotation;
                }
            }
    
            if (annotationType.getAnnotation(Inherited.class) != null) {
                for (Class<?> anInterface : type.getInterfaces()) {
                    annotation = getAnnotation(anInterface, annotationType, true);
                    if (annotation != null) {
                        return annotation;
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top