Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 248 for Lydian (0.1 sec)

  1. src/syscall/mksyscall_libc.pl

    my $tags = "";  # build tags
    my $newtags = ""; # new style build tags
    my $aix = 0;
    my $solaris = 0;
    
    binmode STDOUT;
    
    if($ARGV[0] eq "-b32") {
    	$_32bit = "big-endian";
    	shift;
    } elsif($ARGV[0] eq "-l32") {
    	$_32bit = "little-endian";
    	shift;
    }
    if($ARGV[0] eq "-aix") {
    	$aix = 1;
    	shift;
    }
    if($ARGV[0] eq "-solaris") {
    	$solaris = 1;
    	shift;
    }
    if($ARGV[0] eq "-tags") {
    	shift;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p256.go

    	return subtle.ConstantTimeCompare(eBytes, zero)
    }
    
    // Set sets e = t, and returns e.
    func (e *P256Element) Set(t *P256Element) *P256Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 32-byte big-endian encoding of e.
    func (e *P256Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p256ElementLen]byte
    	return e.bytes(&out)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue41780.go

    // license that can be found in the LICENSE file.
    
    // Checks that conversion of CMP(x,-y) -> CMN(x,y) is only applied in correct context.
    
    package main
    
    type decimal struct {
    	d  [8]byte // digits, big-endian representation
    	dp int     // decimal point
    }
    
    var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
    
    //go:noinline
    func foo(d *decimal) int {
    	exp := int(d.d[1])
    	if d.dp < 0 || d.dp == 0 && d.d[0] < '5' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 01:14:39 UTC 2020
    - 845 bytes
    - Viewed (0)
  4. src/runtime/rt0_openbsd_mips64.s

    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    #ifdef GOARCH_mips64
    	MOVW	4(R29), R4 // argc, big-endian ABI places int32 at offset 4
    #else
    	MOVW	0(R29), R4 // argc
    #endif
    	ADDV	$8, R29, R5 // argv
    	JMP	main(SB)
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	// in external linking, glibc jumps to main with argc in R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:07:46 UTC 2020
    - 976 bytes
    - Viewed (0)
  5. src/time/tzdata/tzdata.go

    func init() {
    	registerLoadFromEmbeddedTZData(loadFromEmbeddedTZData)
    }
    
    // get4s returns the little-endian 32-bit value at the start of s.
    func get4s(s string) int {
    	if len(s) < 4 {
    		return 0
    	}
    	return int(s[0]) | int(s[1])<<8 | int(s[2])<<16 | int(s[3])<<24
    }
    
    // get2s returns the little-endian 16-bit value at the start of s.
    func get2s(s string) int {
    	if len(s) < 2 {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcMessage.java

            buf.enc_ndr_small(5); /* RPC version */
            buf.enc_ndr_small(0); /* minor version */
            buf.enc_ndr_small(this.ptype);
            buf.enc_ndr_small(this.flags);
            buf.enc_ndr_long(0x00000010); /* Little-endian / ASCII / IEEE */
            buf.enc_ndr_short(this.length);
            buf.enc_ndr_short(0); /* length of auth_value */
            buf.enc_ndr_long(this.call_id);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/fiat/p384.go

    	return subtle.ConstantTimeCompare(eBytes, zero)
    }
    
    // Set sets e = t, and returns e.
    func (e *P384Element) Set(t *P384Element) *P384Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 48-byte big-endian encoding of e.
    func (e *P384Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p384ElementLen]byte
    	return e.bytes(&out)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/fiat/p521.go

    	return subtle.ConstantTimeCompare(eBytes, zero)
    }
    
    // Set sets e = t, and returns e.
    func (e *P521Element) Set(t *P521Element) *P521Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 66-byte big-endian encoding of e.
    func (e *P521Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p521ElementLen]byte
    	return e.bytes(&out)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/os_linux_be64.go

    // Copyright 2016 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.
    
    // The standard Linux sigset type on big-endian 64-bit machines.
    
    //go:build linux && (ppc64 || s390x)
    
    package runtime
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 65
    	_SIG_BLOCK   = 0
    	_SIG_UNBLOCK = 1
    	_SIG_SETMASK = 2
    )
    
    type sigset uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 01:56:24 UTC 2022
    - 806 bytes
    - Viewed (0)
  10. src/internal/chacha8rand/chacha8_generic.go

    		b[10][i] += b10
    		b[11][i] += b11
    		b[12][i] = b12
    		b[13][i] = b13
    		b[14][i] = b14
    		b[15][i] = b15
    	}
    
    	if goarch.BigEndian {
    		// On a big-endian system, reading the uint32 pairs as uint64s
    		// will word-swap them compared to little-endian, so we word-swap
    		// them here first to make the next swap get the right answer.
    		for i, x := range buf {
    			buf[i] = x>>32 | x<<32
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top