Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for fnv128 (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/escape2n.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)
  9. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    f02f"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-random:before{c...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    	// TSSA types. HasPointers assumes these are pointer-free.
    	TypeInvalid   = newSSA("invalid")
    	TypeMem       = newSSA("mem")
    	TypeFlags     = newSSA("flags")
    	TypeVoid      = newSSA("void")
    	TypeInt128    = newSSA("int128")
    	TypeResultMem = newResults([]*Type{TypeMem})
    )
    
    func init() {
    	TypeInt128.width = 16
    	TypeInt128.align = 8
    }
    
    // NewNamed returns a new named type for the given type name. obj should be an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top