Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for INT3 (0.03 sec)

  1. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    type namedBool bool
    
    type bar struct {
    	Float1   float32 `json:"float1"`
    	Float2   float64 `json:"float2"`
    	Int1     int64   `json:"int1,omitempty"`
    	Int2     int32   `json:"int2,omitempty"`
    	Int3     int16   `json:"int3,omitempty"`
    	Str1     string  `json:"str1,omitempty"`
    	Ignored  int
    	Ignored2 string
    }
    
    func (obj *bar) GetObjectKind() schema.ObjectKind { return schema.EmptyObjectKind }
    
    type foo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  2. test/typeparam/issue50417.go

    var _ = f5[*Sf]
    
    type Int2 interface {
    	*Sf | A
    	any
    	*Sf | C
    }
    
    func f6[P Int2](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    var _ = f6[*Sf]
    
    type Int3 interface {
    	Sf
    	~struct{ f int }
    }
    
    func f7[P Int3](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    var _ = f7[Sf]
    
    type Em1 interface {
    	*Sf | A
    }
    
    type Em2 interface {
    	*Sf | B
    }
    
    type Int4 interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/export_debug_test.go

    		println("trap in unknown function", funcname(f))
    		return false
    	}
    	if !sigctxtAtTrapInstruction(ctxt) {
    		println("trap at non-INT3 instruction pc =", hex(ctxt.sigpc()))
    		return false
    	}
    
    	switch status := sigctxtStatus(ctxt); status {
    	case 0:
    		// Frame is ready. Copy the arguments to the frame and to registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    index fcf956a..e2c5d29 100644
    --- a/sysdeps/ieee754/dbl-64/k_rem_pio2.c
    +++ b/sysdeps/ieee754/dbl-64/k_rem_pio2.c
    @@ -172,7 +172,8 @@ int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int3
     
         /* compute q[0],q[1],...q[jk] */
     	for (i=0;i<=jk;i++) {
    -	    for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
    +	    for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
    +	    q[i] = fw;
     	}
     
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	// invoke INT3. The debugger should write the argument
    	// frame for the call at SP, set up argument registers, push
    	// the trapping PC on the stack, set the PC to the function to
    	// call, set RDX to point to the closure (if a closure call),
    	// and resume execution.
    	//
    	// If the function returns, this will set R12 to 1 and invoke
    	// INT3. The debugger can then inspect any return value saved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			} else {
    				args = append(args, "eax")
    			}
    		}
    
    	case BLENDVPD, BLENDVPS, PBLENDVB:
    		args = args[:2]
    
    	case INT:
    		if inst.Opcode>>24 == 0xCC {
    			args = nil
    			op = "int3"
    		}
    
    	case LCALL, LJMP:
    		if len(args) == 2 {
    			args[0], args[1] = args[1], args[0]
    		}
    
    	case FCHS, FABS, FTST, FLDPI, FLDL2E, FLDLG2, F2XM1, FXAM, FLD1, FLDL2T, FSQRT, FRNDINT, FCOS, FSIN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/amd64/versions_test.go

    	a := uint64(0)
    	done := 0
    	for {
    		b, err := r.ReadByte()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			t.Fatal("can't read")
    		}
    		if physicalEdits[a] {
    			b = 0xcc // INT3 opcode
    			done++
    		}
    		err = w.WriteByte(b)
    		if err != nil {
    			t.Fatal("can't write")
    		}
    		a++
    	}
    	if done != len(physicalEdits) {
    		t.Fatal("physical edits remaining")
    	}
    	w.Flush()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
         * gives us the desired result.  computeForWord(0) == 0, so all the others do the right thing.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  9. src/runtime/signal_windows.go

    //
    //go:nosplit
    func isAbort(r *context) bool {
    	pc := r.ip()
    	if GOARCH == "386" || GOARCH == "amd64" || GOARCH == "arm" {
    		// In the case of an abort, the exception IP is one byte after
    		// the INT3 (this differs from UNIX OSes). Note that on ARM,
    		// this means that the exception IP is no longer aligned.
    		pc--
    	}
    	return isAbortPC(pc)
    }
    
    // isgoexception reports whether this exception should be translated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/Crc32cHashFunction.java

         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
         * gives us the desired result.  computeForWord(0) == 0, so all the others do the right thing.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
Back to top