Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for isto (0.65 sec)

  1. doc/next/6-stdlib/3-iter.md

      a slice backward.
    - [Collect](/pkg/slices#Collect) collects values from an iterator into
      a new slice.
    - [AppendSeq](/pkg/slices#AppendSeq) appends values from an iterator to
      an existing slice.
    - [Sorted](/pkg/slices#Sorted) collects values from an iterator into a
      new slice, and then sorts the slice.
    - [SortedFunc](/pkg/slices#SortedFunc) is like `Sorted` but with a
      comparison function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/compiler_internal.go

    // does not have a name and if the result in the signature also does not have a name,
    // then the signature and field are renamed to
    //
    //	fmt.Sprintf("#rv%d", i+1)`
    //
    // the newly named object is inserted into the signature's scope,
    // and the object and new field name are returned.
    //
    // The intended use for RenameResult is to allow rangefunc to assign results within a closure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	}
    }
    
    // HTTPServerArgs contains arguments needed by an HTTP server that
    // is exporting a pprof web interface.
    type HTTPServerArgs plugin.HTTPServerArgs
    
    // Options groups all the optional plugins into pprof.
    type Options struct {
    	Writer        Writer
    	Flagset       FlagSet
    	Fetch         Fetcher
    	Sym           Symbolizer
    	Obj           ObjTool
    	UI            UI
    	HTTPServer    func(*HTTPServerArgs) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/crypto/aes/ctr_s390x.go

    	"internal/byteorder"
    )
    
    // Assert that aesCipherAsm implements the ctrAble interface.
    var _ ctrAble = (*aesCipherAsm)(nil)
    
    // xorBytes xors the contents of a and b and places the resulting values into
    // dst. If a and b are not the same length then the number of bytes processed
    // will be equal to the length of shorter of the two. Returns the number
    // of bytes processed.
    //
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/crypto/aes/block.go

    //	https://csrc.nist.gov/archive/aes/rijndael/Rijndael-ammended.pdf
    
    package aes
    
    import "internal/byteorder"
    
    // Encrypt one block from src into dst, using the expanded key xk.
    func encryptBlockGo(xk []uint32, dst, src []byte) {
    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/crypto/des/block.go

    				// Column is the middle four bits.
    				row := uint8(((i & 2) << 4) | i&1)
    				col := uint8(j << 1)
    				t := row | col
    
    				// The rotation was performed in the feistel rounds, being factored out and now mixed into the feistelBox.
    				f = (f << 1) | (f >> 31)
    
    				feistelBox[s][t] = uint32(f)
    			}
    		}
    	}
    }
    
    // permuteInitialBlock is equivalent to the permutation defined
    // by initialPermutation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.go

    		lens := gcmLengths(0, uint64(len(nonce))*8)
    		g.paddedGHASH(&hash, lens[:])
    		copy(counter[:], hash[:])
    	}
    }
    
    // counterCrypt encrypts in using AES in counter mode and places the result
    // into out. counter is the initial count value and will be updated with the next
    // count value. The length of out must be greater than or equal to the length
    // of in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_ppc64x.s

    // in the public domain.
    
    //go:build (ppc64 || ppc64le) && !purego
    
    #include "textflag.h"
    
    // ENDIAN_MOVE generates the appropriate
    // 4 byte load for big or little endian.
    // The 4 bytes at ptr+off is loaded into dst.
    // The idx reg is only needed for big endian
    // and is clobbered when used.
    #ifdef GOARCH_ppc64le
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVWZ	off(ptr),dst
    #else
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/labels.go

    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Value
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    			code = JumpIntoBlock
    			alt.(*Label).used = true // avoid another error
    		} else {
    			msg = "label %s not declared"
    			code = UndeclaredLabel
    		}
    		check.errorf(jmp.Label, code, msg, name)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/build/relnote/links.go

    			}
    		} else {
    			res = append(res, in)
    		}
    	}
    	return res
    }
    
    // symbolLinkText returns the text of a possible symbol link.
    // It is given a slice of Inline elements and an index into the slice.
    // If the index refers to a sequence of elements
    //
    //	[Plain("["), Plain_or_Code(text), Plain("]")]
    //
    // and the brackets are adjacent to the right kind of runes for a link, then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top