Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for reinterprets (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	}
    }
    
    // bufToUTF16 function reinterprets []byte buffer as []uint16
    func bufToUTF16(buf []byte) []uint16 {
    	sl := struct {
    		addr *uint16
    		len  int
    		cap  int
    	}{(*uint16)(unsafe.Pointer(&buf[0])), len(buf) / 2, cap(buf) / 2}
    	return *(*[]uint16)(unsafe.Pointer(&sl))
    }
    
    // utf16ToBuf function reinterprets []uint16 as []byte
    func utf16ToBuf(buf []uint16) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // to be also a NAN.  Therefore, don't expect this constructor to
      // preserve the bits in x when x is a NAN.
      explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
    
      // Static methods
    
      // Reinterprets a bit pattern as a floating-point number.
      //
      // This function is needed to test the AlmostEquals() method.
      static RawType ReinterpretBits(const Bits bits) {
        FloatingPoint fp(0);
        fp.u_.bits_ = bits;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // to be also a NAN.  Therefore, don't expect this constructor to
      // preserve the bits in x when x is a NAN.
      explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
    
      // Static methods
    
      // Reinterprets a bit pattern as a floating-point number.
      //
      // This function is needed to test the AlmostEquals() method.
      static RawType ReinterpretBits(const Bits bits) {
        FloatingPoint fp(0);
        fp.u_.bits_ = bits;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. tensorflow/c/kernels.h

    // Interprets the named kernel construction attribute as bool and
    // places it into *val. *status is set to TF_OK.
    //
    // If the attribute could not be found or could not be interpreted as
    // bool, *status is populated with an error.
    TF_CAPI_EXPORT extern void TF_OpKernelConstruction_GetAttrBool(
        TF_OpKernelConstruction* ctx, const char* attr_name, TF_Bool* val,
        TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. src/cmd/pprof/doc.go

    // Copyright 2014 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.
    
    // Pprof interprets and displays profiles of Go programs.
    //
    // Basic usage:
    //
    //	go tool pprof binary profile
    //
    // For detailed usage information:
    //
    //	go tool pprof -h
    //
    // For an example, see https://blog.golang.org/profiling-go-programs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 419 bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/app/request.go

    		15000,
    		15021,
    		15020,
    		15004,
    	)
    )
    
    // NB: extra standard output in addition to what's returned from envoy
    // must not be added in this command. Otherwise, it'd break istioctl proxy-config,
    // which interprets the output literally as json document.
    var (
    	requestCmd = &cobra.Command{
    		Use:   "request <method> <path> [<body>]",
    		Short: "Makes an HTTP request to the Envoy admin API",
    		Args:  cobra.MinimumNArgs(2),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:05 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/base/flag.go

    package base
    
    import (
    	"flag"
    	"fmt"
    
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/internal/quoted"
    )
    
    // A StringsFlag is a command-line flag that interprets its argument
    // as a space-separated list of possibly-quoted strings.
    type StringsFlag []string
    
    func (v *StringsFlag) Set(s string) error {
    	var err error
    	*v, err = quoted.Split(s)
    	if *v == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/regexp/syntax/compile.go

    // to hold the list. It's kind of sleazy, but works well in practice.
    // See https://swtch.com/~rsc/regexp/regexp1.html for inspiration.
    //
    // These aren't really pointers: they're integers, so we can reinterpret them
    // this way without using package unsafe. A value l.head denotes
    // p.inst[l.head>>1].Out (l.head&1==0) or .Arg (l.head&1==1).
    // head == 0 denotes the empty list, okay because we start every program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    	do
    		echo -E '	'$i,
    	done
    
    	echo -E "
    };
    
    int signals[] = {
    "
    	for i in $signals
    	do
    		echo -E '	'$i,
    	done
    
    	# Use -E because on some systems bash builtin interprets \n itself.
    	echo -E '
    };
    
    static int
    intcmp(const void *a, const void *b)
    {
    	return *(int*)a - *(int*)b;
    }
    
    int
    main(void)
    {
    	int i, j, e;
    	char buf[1024], *p;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. misc/cgo/gmp/gmp.go

    	z.doinit()
    	return int(C.mpz_sizeinbase(&z.i[0], 2))
    }
    
    // Set sets z = x and returns z.
    func (z *Int) Set(x *Int) *Int {
    	z.doinit()
    	C.mpz_set(&z.i[0], &x.i[0])
    	return z
    }
    
    // SetBytes interprets b as the bytes of a big-endian integer
    // and sets z to that value.
    func (z *Int) SetBytes(b []byte) *Int {
    	z.doinit()
    	if len(b) == 0 {
    		z.SetInt64(0)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top