Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for fnv128 (0.19 sec)

  1. src/hash/marshal_test.go

    	{"fnv32", func() hash.Hash { return fnv.New32() }, fromHex("666e760171ba3d77")},
    	{"fnv32a", func() hash.Hash { return fnv.New32a() }, fromHex("666e76027439f86f")},
    	{"fnv64", func() hash.Hash { return fnv.New64() }, fromHex("666e7603cc64e0e97692c637")},
    	{"fnv64a", func() hash.Hash { return fnv.New64a() }, fromHex("666e7604c522af9b0dede66f")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 07:45:46 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  2. test/fixedbugs/issue19515.go

    // compile
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 19515: compiler panics on spilling int128 constant.
    
    package x
    
    type VScrollPanel struct {
    	x, y int
    }
    
    type Color struct {
    	R, G, B, A float32
    }
    
    func maxF(a, b float32) float32 {
    	if a > b {
    		return 0
    	}
    	return 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 22:55:52 UTC 2017
    - 931 bytes
    - Viewed (0)
  3. test/codegen/issue22703.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 03 20:20:54 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  4. src/crypto/aes/asm_arm64.s

    	VLD1	(R12), [V0.B16]
    
    	CMP	$12, R9
    	BLT	enc128
    	BEQ	enc196
    enc256:
    	VLD1.P	32(R10), [V1.B16, V2.B16]
    	AESE	V1.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V2.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    enc196:
    	VLD1.P	32(R10), [V3.B16, V4.B16]
    	AESE	V3.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V4.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    enc128:
    	VLD1.P	64(R10), [V5.B16, V6.B16, V7.B16, V8.B16]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	for _, in := range in {
    		t := in.(*rtype)
    		args = append(args, t)
    		hash = fnv1(hash, byte(t.t.Hash>>24), byte(t.t.Hash>>16), byte(t.t.Hash>>8), byte(t.t.Hash))
    	}
    	if variadic {
    		hash = fnv1(hash, 'v')
    	}
    	hash = fnv1(hash, '.')
    	for _, out := range out {
    		t := out.(*rtype)
    		args = append(args, t)
    		hash = fnv1(hash, byte(t.t.Hash>>24), byte(t.t.Hash>>16), byte(t.t.Hash>>8), byte(t.t.Hash))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/tests/decompose.mlir

    // CHECK-DAG: %[[N_128:.*]] = arith.constant -128 : i32
    // CHECK-DAG: %[[N32:.*]] = arith.constant 32 : i32
    // CHECK-DAG: %[[N42:.*]] = arith.constant 42 : i32
    // CHECK-DAG: %[[N52:.*]] = arith.constant 52 : i32
    // CHECK-DAG: %[[N102:.*]] = arith.constant 102 : i32
    // CHECK-DAG: %[[N127:.*]] = arith.constant 127 : i32
    // CHECK-NEXT: %[[none_min:.*]] = "tfr.constant_tensor"(%[[N_128]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/op.go

    	if !x.canAdd64(off) {
    		panic("invalid ValAndOff.addOffset64")
    	}
    	return makeValAndOff(x.Val(), x.Off()+int32(off))
    }
    
    // int128 is a type that stores a 128-bit constant.
    // The only allowed constant right now is 0, so we can cheat quite a bit.
    type int128 int64
    
    type BoundsKind uint8
    
    const (
    	BoundsIndex       BoundsKind = iota // indexing operation, 0 <= idx < len failed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/rulegen.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    }
    func auxIntToValAndOff(i int64) ValAndOff {
    	return ValAndOff(i)
    }
    func auxIntToArm64BitField(i int64) arm64BitField {
    	return arm64BitField(i)
    }
    func auxIntToInt128(x int64) int128 {
    	if x != 0 {
    		panic("nonzero int128 not allowed")
    	}
    	return 0
    }
    func auxIntToFlagConstant(x int64) flagConstant {
    	return flagConstant(x)
    }
    
    func auxIntToOp(cc int64) Op {
    	return Op(cc)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. test/escape2.go

    			px = &i
    		}()
    	}
    	_ = px
    }
    
    var px *int
    
    func foo127() {
    	var i int // ERROR "moved to heap: i$"
    	p := &i
    	q := p
    	px = q
    }
    
    func foo128() {
    	var i int
    	p := &i
    	q := p
    	_ = q
    }
    
    func foo129() {
    	var i int // ERROR "moved to heap: i$"
    	p := &i
    	func() { // ERROR "func literal does not escape$"
    		q := p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top