Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for inp (0.02 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    	CMPU LEN, $64
    	BLT tail_vsx
    
    	// Bottom of loop
    	LXVW4X (INP)(R0), VS59
    	LXVW4X (INP)(R8), VS60
    	LXVW4X (INP)(R9), VS61
    	LXVW4X (INP)(R10), VS62
    
    	VXOR V27, V0, V27
    	VXOR V28, V4, V28
    	VXOR V29, V8, V29
    	VXOR V30, V12, V30
    
    	STXVW4X VS59, (OUT)(R0)
    	STXVW4X VS60, (OUT)(R8)
    	ADD     $64, INP
    	STXVW4X VS61, (OUT)(R9)
    	ADD     $-64, LEN
    	STXVW4X VS62, (OUT)(R10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/common.go

    		writeTemplate("pilot/pkg/config/kube/crdclient/types.gen.go", crdclientTemplate, map[string]any{
    			"Entries":     inp.Entries,
    			"Packages":    inp.Packages,
    			"PackageName": "crdclient",
    		}),
    		writeTemplate("pkg/config/schema/kubetypes/resources.gen.go", typesTemplate, map[string]any{
    			"Entries":     inp.Entries,
    			"Packages":    inp.Packages,
    			"PackageName": "kubetypes",
    		}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/archive/tar/fuzz_test.go

    	err := w.WriteHeader(&Header{
    		Name: "lorem.txt",
    		Mode: 0600,
    		Size: int64(len(inp)),
    	})
    	if err != nil {
    		f.Fatalf("failed to create writer: %s", err)
    	}
    	_, err = w.Write(inp)
    	if err != nil {
    		f.Fatalf("failed to write file to archive: %s", err)
    	}
    	if err := w.Close(); err != nil {
    		f.Fatalf("failed to write archive: %s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 18:06:33 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc && !purego
    
    package chacha20
    
    const bufSize = 256
    
    //go:noescape
    func chaCha20_ctr32_vsx(out, inp *byte, len int, key *[8]uint32, counter *uint32)
    
    func (c *Cipher) xorKeyStreamBlocks(dst, src []byte) {
    	chaCha20_ctr32_vsx(&dst[0], &src[0], len(src), &c.key, &c.counter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 447 bytes
    - Viewed (0)
  5. src/compress/gzip/fuzz_test.go

    // license that can be found in the LICENSE file.
    
    package gzip
    
    import (
    	"bytes"
    	"encoding/base64"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func FuzzReader(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 18:06:33 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. cmd/speedtest.go

    						if r.Error != nil {
    							return r.Error.Error()
    						}
    						return ""
    					}(),
    				}
    				results = append(results, result)
    			}
    			for _, inp := range ignoredPaths {
    				results = append(results, madmin.DrivePerf{
    					Path:  inp,
    					Error: errFaultyDisk.Error(),
    				})
    			}
    			return results
    		}(),
    		Error: func() string {
    			if err != nil {
    				return err.Error()
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.go

    	"runtime"
    )
    
    // This file implements GCM using an optimized GHASH function.
    
    //go:noescape
    func gcmInit(productTable *[256]byte, h []byte)
    
    //go:noescape
    func gcmHash(output []byte, productTable *[256]byte, inp []byte, len int)
    
    //go:noescape
    func gcmMul(output []byte, productTable *[256]byte)
    
    const (
    	gcmCounterSize       = 16
    	gcmBlockSize         = 16
    	gcmTagSize           = 16
    	gcmStandardNonceSize = 12
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top