Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fnv128 (0.12 sec)

  1. 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)
  2. 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)
  3. 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