Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 227 for regI (0.04 sec)

  1. src/runtime/signal_freebsd_amd64.go

    func (c *sigctxt) rbp() uint64 { return c.regs().mc_rbp }
    func (c *sigctxt) rsp() uint64 { return c.regs().mc_rsp }
    func (c *sigctxt) r8() uint64  { return c.regs().mc_r8 }
    func (c *sigctxt) r9() uint64  { return c.regs().mc_r9 }
    func (c *sigctxt) r10() uint64 { return c.regs().mc_r10 }
    func (c *sigctxt) r11() uint64 { return c.regs().mc_r11 }
    func (c *sigctxt) r12() uint64 { return c.regs().mc_r12 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java

            AvgAggregationBuilder builder = AggregationBuilders.avg(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MaxAggregationBuilder regMaxA(String name, String field) {
            MaxAggregationBuilder builder = AggregationBuilders.max(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MinAggregationBuilder regMinA(String name, String field) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionAggregation.java

            AvgAggregationBuilder builder = AggregationBuilders.avg(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MaxAggregationBuilder regMaxA(String name, String field) {
            MaxAggregationBuilder builder = AggregationBuilders.max(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MinAggregationBuilder regMinA(String name, String field) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    }
    
    // PtraceSetRegsMips sets the registers used by mips binaries.
    func PtraceSetRegsMips(pid int, regs *PtraceRegsMips) error {
    	return ptracePtr(PTRACE_SETREGS, pid, 0, unsafe.Pointer(regs))
    }
    
    // PtraceRegsMips64 is the registers used by mips64 binaries.
    type PtraceRegsMips64 struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/runtime/signal_linux_386.go

    func (c *sigctxt) esp() uint32 { return c.regs().esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().eflags }
    func (c *sigctxt) cs() uint32      { return uint32(c.regs().cs) }
    func (c *sigctxt) fs() uint32      { return uint32(c.regs().fs) }
    func (c *sigctxt) gs() uint32      { return uint32(c.regs().gs) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/a.out.go

    	/* compiler allocates register variables R3 up */
    	/* compiler allocates external registers R10 down */
    	REGEXT = REG_R10
    	/* these two registers are declared in runtime.h */
    	REGG = REGEXT - 0
    	REGM = REGEXT - 1
    
    	REGCTXT = REG_R7
    	REGTMP  = REG_R11
    	REGSP   = REG_R13
    	REGLINK = REG_R14
    	REGPC   = REG_R15
    
    	NFREG = 16
    	/* compiler allocates register variables F0 up */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/expand_calls.go

    	}
    	regs := "<none>"
    	if c.regValues != nil {
    		regs = ""
    		for i, x := range *c.regValues {
    			if i > 0 {
    				regs = regs + "; "
    			}
    			regs = regs + x.LongString()
    		}
    	}
    
    	// not printing the config because that has not been useful
    	return fmt.Sprintf("RCSR{storeDest=%v, regsLen=%d, nextSlice=%d, regValues=[%s]}", dest, len(c.regs), c.nextSlice, regs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go

    }
    
    // PtraceSetRegsMipsle sets the registers used by mipsle binaries.
    func PtraceSetRegsMipsle(pid int, regs *PtraceRegsMipsle) error {
    	return ptracePtr(PTRACE_SETREGS, pid, 0, unsafe.Pointer(regs))
    }
    
    // PtraceRegsMips64le is the registers used by mips64le binaries.
    type PtraceRegsMips64le struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go

    }
    
    // PtraceSetRegSetArm64 sets the registers used by arm64 binaries.
    func PtraceSetRegSetArm64(pid, addr int, regs *PtraceRegsArm64) error {
    	iovec := Iovec{(*byte)(unsafe.Pointer(regs)), uint64(unsafe.Sizeof(*regs))}
    	return ptracePtr(PTRACE_SETREGSET, pid, uintptr(addr), unsafe.Pointer(&iovec))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "MULD", argLength: 2, reg: fp21, asm: "MULD", commutative: true},   // arg0 * arg1
    		{name: "NMULF", argLength: 2, reg: fp21, asm: "NMULF", commutative: true}, // -(arg0 * arg1)
    		{name: "NMULD", argLength: 2, reg: fp21, asm: "NMULD", commutative: true}, // -(arg0 * arg1)
    		{name: "DIVF", argLength: 2, reg: fp21, asm: "DIVF"},                      // arg0 / arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
Back to top