Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 248 for Lydian (0.28 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

                ["English", """
    ELF Header:
     Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
     Class:                             ELF32
     Data:                              2's complement, little endian
     Version:                           1 (current)
     OS/ABI:                            UNIX - System V
     ABI Version:                       0
     Type:                              EXEC (Executable file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    		{Name: "sha512", Feature: &S390X.HasSHA512},
    		{Name: "vx", Feature: &S390X.HasVX},
    		{Name: "vxe", Feature: &S390X.HasVXE},
    	}
    }
    
    // bitIsSet reports whether the bit at index is set. The bit index
    // is in big endian order, so bit index 0 is the leftmost bit.
    func bitIsSet(bits []uint64, index uint) bool {
    	return bits[index/64]&((1<<63)>>(index%64)) != 0
    }
    
    // facility is a bit index for the named facility.
    type facility uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  3. src/internal/abi/abi.go

    // register space otherwise.
    type RegArgs struct {
    	// Values in these slots should be precisely the bit-by-bit
    	// representation of how they would appear in a register.
    	//
    	// This means that on big endian arches, integer values should
    	// be in the top bits of the slot. Floats are usually just
    	// directly represented, but some architectures treat narrow
    	// width floating point values specially (e.g. they're promoted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/encoding/binary/native_endian_little.go

    package binary
    
    type nativeEndian struct {
    	littleEndian
    }
    
    // NativeEndian is the native-endian implementation of [ByteOrder] and [AppendByteOrder].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 504 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/endian_big.go

    //go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64
    
    package cpu
    
    // IsBigEndian records whether the GOARCH's byte order is big endian.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 397 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/endian_little.go

    //go:build 386 || amd64 || amd64p32 || alpha || arm || arm64 || loong64 || mipsle || mips64le || mips64p32le || nios2 || ppc64le || riscv || riscv64 || sh || wasm
    
    package cpu
    
    // IsBigEndian records whether the GOARCH's byte order is big endian.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 433 bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/fiat/p224.go

    	return subtle.ConstantTimeCompare(eBytes, zero)
    }
    
    // Set sets e = t, and returns e.
    func (e *P224Element) Set(t *P224Element) *P224Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 28-byte big-endian encoding of e.
    func (e *P224Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p224ElementLen]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/sort/gen_sort_variants.go

    	if {{Less "data" "b" "a"}} {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median{{.FuncSuffix}} returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median{{.FuncSuffix}}{{.TypeParam}}(data {{.DataType}}, a, b, c int, swaps *int {{.ExtraParam}}) int {
    	a, b = order2{{.FuncSuffix}}(data, a, b, swaps {{.ExtraArg}})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/math/tan.go

    //
    //      tan.c
    //
    //      Circular tangent
    //
    // SYNOPSIS:
    //
    // double x, y, tan();
    // y = tan( x );
    //
    // DESCRIPTION:
    //
    // Returns the circular tangent of the radian argument x.
    //
    // Range reduction is modulo pi/4.  A rational function
    //       x + x**3 P(x**2)/Q(x**2)
    // is employed in the basic interval [0, pi/4].
    //
    // ACCURACY:
    //                      Relative error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. 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)
Back to top