Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 892 for rflags (0.23 sec)

  1. src/runtime/defs_windows_amd64.go

    	print("r12     ", hex(r.r12), "\n")
    	print("r13     ", hex(r.r13), "\n")
    	print("r14     ", hex(r.r14), "\n")
    	print("r15     ", hex(r.r15), "\n")
    	print("rip     ", hex(r.rip), "\n")
    	print("rflags  ", hex(r.eflags), "\n")
    	print("cs      ", hex(r.segcs), "\n")
    	print("fs      ", hex(r.segfs), "\n")
    	print("gs      ", hex(r.seggs), "\n")
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/runtime/signal_solaris_amd64.go

    func (c *sigctxt) r15() uint64 { return uint64(c.regs().gregs[_REG_R15]) }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) rip() uint64 { return uint64(c.regs().gregs[_REG_RIP]) }
    
    func (c *sigctxt) rflags() uint64  { return uint64(c.regs().gregs[_REG_RFLAGS]) }
    func (c *sigctxt) cs() uint64      { return uint64(c.regs().gregs[_REG_CS]) }
    func (c *sigctxt) fs() uint64      { return uint64(c.regs().gregs[_REG_FS]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  3. src/runtime/defs_darwin_amd64.go

    	uc_onstack  int32
    	uc_sigmask  uint32
    	uc_stack    stackt
    	uc_link     *ucontext
    	uc_mcsize   uint64
    	uc_mcontext *mcontext64
    }
    
    type keventt struct {
    	ident  uint64
    	filter int16
    	flags  uint16
    	fflags uint32
    	data   int64
    	udata  *byte
    }
    
    type pthread uintptr
    type pthreadattr struct {
    	X__sig    int64
    	X__opaque [56]int8
    }
    type pthreadmutex struct {
    	X__sig    int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	_       [6]byte
    }
    
    type BpfZbufHeader struct {
    	Kernel_gen uint32
    	Kernel_len uint32
    	User_gen   uint32
    	_          [5]uint32
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    	Ispeed uint32
    	Ospeed uint32
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.h

        //
        // Note that this flag can be overridden by device flag like
        // `enabled_for_gpu_` below.
        bool enabled_for_all_;
    
        // If true, enable Device API (PjRt) for TF GPU device. This is a helper
        // flag so that individual tests can turn on PjRt for GPU specifically.
        // Once the rollout to GPU is complete, this flag can be deprecated.
        bool enabled_for_gpu_;
    
       private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/regexp/testdata/testregex.c

    					eflags |= REG_NOTBOL;
    					continue;
    				case 'c':
    					cflags |= REG_COMMENT;
    					continue;
    				case 'd':
    					cflags |= REG_SHELL_DOT;
    					continue;
    				case 'e':
    					eflags |= REG_NOTEOL;
    					continue;
    				case 'f':
    					cflags |= REG_MULTIPLE;
    					continue;
    				case 'g':
    					cflags |= NOTEST;
    					continue;
    				case 'h':
    					cflags |= REG_MULTIREF;
    					continue;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/flags.go

    package echo
    
    import (
    	"flag"
    	"time"
    
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var (
    	callTimeout      = 30 * time.Second
    	callDelay        = 20 * time.Millisecond
    	callConverge     = 3
    	readinessTimeout = 10 * time.Minute
    	callsPerWorkload = 3
    )
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 17:44:00 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/flags.go

    }
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	log.EnableKlogWithGoFlag()
    	flag.StringVar(&settingsFromCommandLine.BaseDir, "istio.test.work_dir", os.TempDir(),
    		"Local working directory for creating logs/temp files. If left empty, os.TempDir() is used.")
    
    	var env string
    	flag.StringVar(&env, "istio.test.env", "", "Deprecated. This flag does nothing")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/goflags.go

    					flags.Usage()
    				}
    			}
    		} else {
    			if !hasValue {
    				fmt.Fprintf(flags.Output(), "go: flag needs an argument: %s (from %s)\n", name, where)
    				flags.Usage()
    			}
    			if err := flags.Set(f.Name, value); err != nil {
    				fmt.Fprintf(flags.Output(), "go: invalid value %q for flag %s (from %s): %v\n", value, name, where, err)
    				flags.Usage()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/flags.go

    package istio
    
    import (
    	"flag"
    )
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	flag.StringVar(&settingsFromCommandline.SystemNamespace, "istio.test.kube.systemNamespace", settingsFromCommandline.SystemNamespace,
    		"Specifies the namespace where the istiod resides in a typical deployment. Defaults to istio-system")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top