Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for Bounds (0.18 sec)

  1. api/go1.5.txt

    pkg image, const YCbCrSubsampleRatio411 = 4
    pkg image, const YCbCrSubsampleRatio411 YCbCrSubsampleRatio
    pkg image, func NewCMYK(Rectangle) *CMYK
    pkg image, method (*CMYK) At(int, int) color.Color
    pkg image, method (*CMYK) Bounds() Rectangle
    pkg image, method (*CMYK) CMYKAt(int, int) color.CMYK
    pkg image, method (*CMYK) ColorModel() color.Model
    pkg image, method (*CMYK) Opaque() bool
    pkg image, method (*CMYK) PixOffset(int, int) int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	ROUNDPS $7, X11, X11                    // 66450f3a08db07
    	ROUNDSD $7, (BX), X2                    // 660f3a0b1307
    	ROUNDSD $7, (R11), X2                   // 66410f3a0b1307
    	ROUNDSD $7, X2, X2                      // 660f3a0bd207
    	ROUNDSD $7, X11, X2                     // 66410f3a0bd307
    	ROUNDSD $7, (BX), X11                   // 66440f3a0b1b07
    	ROUNDSD $7, (R11), X11                  // 66450f3a0b1b07
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    	}
    	b1.Flush()
    	if w1 != 3 {
    		t.Fatalf("flush 1200 + 1389 'x's: got %d writes, want 3", w1)
    	}
    }
    
    // A writeCountingDiscard is like io.Discard and counts the number of times
    // Write is called on it.
    type writeCountingDiscard int
    
    func (w *writeCountingDiscard) Write(p []byte) (int, error) {
    	*w++
    	return len(p), nil
    }
    
    type negativeReader int
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  5. api/go1.17.txt

    pkg image, type RGBA64Image interface { At, Bounds, ColorModel, RGBA64At }
    pkg image, type RGBA64Image interface, At(int, int) color.Color
    pkg image, type RGBA64Image interface, Bounds() Rectangle
    pkg image, type RGBA64Image interface, ColorModel() color.Model
    pkg image, type RGBA64Image interface, RGBA64At(int, int) color.RGBA64
    pkg image/draw, type RGBA64Image interface { At, Bounds, ColorModel, RGBA64At, Set, SetRGBA64 }
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
  6. src/bytes/bytes.go

    }
    
    // Cut slices s around the first instance of sep,
    // returning the text before and after sep.
    // The found result reports whether sep appears in s.
    // If sep does not appear in s, cut returns s, nil, false.
    //
    // Cut returns slices of the original slice s, not copies.
    func Cut(s, sep []byte) (before, after []byte, found bool) {
    	if i := Index(s, sep); i >= 0 {
    		return s[:i], s[i+len(sep):], true
    	}
    	return s, nil, false
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    	if !ok {
    		if loName == "EOF" {
    			p.errorf("register list: expected ']', found EOF")
    		} else {
    			p.errorf("register list: bad low register in `[%s`", loName)
    		}
    		return
    	}
    	if tok := p.next().ScanToken; tok != '-' {
    		p.errorf("register list: expected '-' after `[%s`, found %s", loName, tok)
    		return
    	}
    	hiName := p.next().String()
    	hi, ok := p.arch.Register[hiName]
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  8. api/go1.6.txt

    pkg image, func NewNYCbCrA(Rectangle, YCbCrSubsampleRatio) *NYCbCrA
    pkg image, method (*NYCbCrA) AOffset(int, int) int
    pkg image, method (*NYCbCrA) At(int, int) color.Color
    pkg image, method (*NYCbCrA) Bounds() Rectangle
    pkg image, method (*NYCbCrA) COffset(int, int) int
    pkg image, method (*NYCbCrA) ColorModel() color.Model
    pkg image, method (*NYCbCrA) NYCbCrAAt(int, int) color.NYCbCrA
    pkg image, method (*NYCbCrA) Opaque() bool
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  9. doc/go_spec.html

    (or even be just another bound type parameter).
    In a process of repeated simplification, the bound type parameters in each type
    argument are substituted with the respective type arguments for those type
    parameters until each type argument is free of bound type parameters.
    </p>
    
    <p>
    If type arguments contain cyclic references to themselves
    through bound type parameters, simplification and thus type
    inference fails.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/lex/input.go

    // The opening parenthesis has been absorbed.
    func (in *Input) argsFor(macro *Macro) map[string][]Token {
    	var args [][]Token
    	// One macro argument per iteration. Collect them all and check counts afterwards.
    	for argNum := 0; ; argNum++ {
    		tokens, tok := in.collectArgument(macro)
    		args = append(args, tokens)
    		if tok == ')' {
    			break
    		}
    	}
    	// Zero-argument macros are tricky.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
Back to top