Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fnv128 (0.09 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)
Back to top