Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for reg2 (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(elfNT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regs))
    	iov.SetLen(int(unsafe.Sizeof(*regs)))
    	return ptracePtr(PTRACE_SETREGSET, pid, uintptr(elfNT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetOptions(pid int, options int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    #define RETPOLINE(reg) \
    	/*   CALL setup */     BYTE $0xE8; BYTE $(2+2); BYTE $0; BYTE $0; BYTE $0;	\
    	/* nospec: */									\
    	/*   PAUSE */           BYTE $0xF3; BYTE $0x90;					\
    	/*   JMP nospec */      BYTE $0xEB; BYTE $-(2+2);				\
    	/* setup: */									\
    	/*   MOVQ AX, 0(SP) */  BYTE $0x48|((reg&8)>>1); BYTE $0x89;			\
    	                        BYTE $0x04|((reg&7)<<3); BYTE $0x24;			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    		if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
    			re, im := constant.Real(y.val), constant.Imag(y.val)
    			re2, im2 := constant.BinaryOp(re, token.MUL, re), constant.BinaryOp(im, token.MUL, im)
    			if constant.Sign(re2) == 0 && constant.Sign(im2) == 0 {
    				check.error(&y, DivByZero, invalidOp+"division by zero")
    				x.mode = invalid
    				return
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //   network1:
      //     endpoints:
      //     - fromCidr: "192.168.0.1/24"
      //     gateways:
      //     - address: 1.1.1.1
      //       port: 80
      //   network2:
      //     endpoints:
      //     - fromRegistry: reg1
      //     gateways:
      //     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
      //       port: 443
      //
      google.protobuf.Struct meshNetworks = 19;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	if in == nil || in.MatchType == nil {
    		return true
    	}
    
    	catchall := false
    
    	switch m := in.MatchType.(type) {
    	case *networking.StringMatch_Regex:
    		// `*` is NOT a RE2 style regex, it's a metacharacter.
    		// It will be translated as present_match, rather than matching "any string".
    		// see https://github.com/istio/istio/pull/20629
    		catchall = m.Regex == "*"
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			// still want to remove the tv_ prefix.
    			// The check for "orig_" here handles orig_eax in the
    			// x86 ptrace register sets, which otherwise have all fields
    			// with reg_ prefixes.
    			if strings.HasPrefix(n.Name, "orig_") || strings.HasPrefix(n.Name, "_") {
    				continue
    			}
    			i := strings.Index(n.Name, "_")
    			if i < 0 {
    				continue
    			}
    			if prefix == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    package main
    
    import "lib"
    import . "lib"
    
    const Pi = 3.1415
    type T struct{}
    var Y, _ = lib.X, X
    
    func F[T *U, U any](param1, param2 int) /*param1=undef*/ (res1 /*res1=undef*/, res2 int) /*param1=var:12*/ /*res1=var:12*/ /*U=typename:12*/ {
    	const pi, e = 3.1415, /*pi=undef*/ 2.71828 /*pi=const:13*/ /*e=const:13*/
    	type /*t=undef*/ t /*t=typename:14*/ *t
    	print(Y) /*Y=var:10*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top