Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for regI (0.04 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	C_SACON    /* $n(REG) where n <= int16 */
    	C_LACON    /* $n(REG) where n <= int32 */
    	C_DACON    /* $n(REG) where n <= int64 */
    	C_BRA      /* A short offset argument to a branching instruction */
    	C_BRAPIC   /* Like C_BRA, but requires an extra NOP for potential TOC restore by the linker. */
    	C_ZOREG    /* An $0+reg memory op */
    	C_SOREG    /* An $n+reg memory arg where n is a 16 bit signed offset */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    				state.f.Fatalf("at %v: slot %v in register %v with no location entry", v, state.slots[slot], &state.registers[reg])
    				continue
    			}
    			regs := last.Registers &^ (1 << reg)
    			setSlot(slot, VarLoc{regs, last.StackOffset})
    		}
    
    		locs.registers[reg] = locs.registers[reg][:0]
    	}
    
    	switch {
    	case v.Op == OpVarDef:
    		n := v.Aux.(*ir.Name)
    		if ir.IsSynthetic(n) {
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FMOVDfpgp", argLength: 1, reg: fpgp, asm: "FMOVD"}, // move float64 to int64 (no conversion)
    		{name: "FMOVSgpfp", argLength: 1, reg: gpfp, asm: "FMOVS"}, // move 32bits from int to float reg (no conversion)
    		{name: "FMOVSfpgp", argLength: 1, reg: fpgp, asm: "FMOVS"}, // move 32bits from float to int reg, zero extend (no conversion)
    
    		// conversions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "DIV", argLength: 2, reg: gp21, asm: "DIV", typ: "Int64"}, // arg0 / arg1
    		{name: "DIVU", argLength: 2, reg: gp21, asm: "DIVU", typ: "UInt64"},
    		{name: "DIVW", argLength: 2, reg: gp21, asm: "DIVW", typ: "Int32"},
    		{name: "DIVUW", argLength: 2, reg: gp21, asm: "DIVUW", typ: "UInt32"},
    		{name: "REM", argLength: 2, reg: gp21, asm: "REM", typ: "Int64"}, // arg0 % arg1
    		{name: "REMU", argLength: 2, reg: gp21, asm: "REMU", typ: "UInt64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/asm0.go

    	case obj.TYPE_REG:
    		if REG_R0 <= a.Reg && a.Reg <= REG_R31 {
    			return C_REG
    		}
    		if REG_F0 <= a.Reg && a.Reg <= REG_F31 {
    			return C_FREG
    		}
    		if REG_M0 <= a.Reg && a.Reg <= REG_M31 {
    			return C_MREG
    		}
    		if REG_FCR0 <= a.Reg && a.Reg <= REG_FCR31 {
    			return C_FCREG
    		}
    		if REG_W0 <= a.Reg && a.Reg <= REG_W31 {
    			return C_WREG
    		}
    		if a.Reg == REG_LO {
    			return C_LO
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/util.go

    		}
    
    	case NAME_PARAM:
    		reg := "FP"
    		if a.Reg != REG_NONE {
    			reg = Rconv(int(a.Reg))
    		}
    		if a.Sym != nil {
    			fmt.Fprintf(w, "%s%s(%s)", a.Sym.Name, offConv(a.Offset), reg)
    		} else {
    			fmt.Fprintf(w, "%s(%s)", offConv(a.Offset), reg)
    		}
    	case NAME_TOCREF:
    		reg := "SB"
    		if a.Reg != REG_NONE {
    			reg = Rconv(int(a.Reg))
    		}
    		if a.Sym != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    	if reg.checksInstalled {
    		return fmt.Errorf("unable to add because the %s endpoint has already been created", reg.path)
    	}
    	if delay > 0 {
    		for _, check := range checks {
    			reg.checks = append(reg.checks, delayedHealthCheck(check, reg.clock, delay))
    		}
    	} else {
    		reg.checks = append(reg.checks, checks...)
    	}
    	return nil
    }
    
    func (reg *healthCheckRegistry) installHandler(mux healthMux) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    }
    
    func (c *ctxt9) aclassreg(reg int16) int {
    	if REG_R0 <= reg && reg <= REG_R31 {
    		return C_REGP + int(reg&1)
    	}
    	if REG_F0 <= reg && reg <= REG_F31 {
    		return C_FREGP + int(reg&1)
    	}
    	if REG_V0 <= reg && reg <= REG_V31 {
    		return C_VREG
    	}
    	if REG_VS0 <= reg && reg <= REG_VS63 {
    		return C_VSREGP + int(reg&1)
    	}
    	if REG_CR0 <= reg && reg <= REG_CR7 || reg == REG_CR {
    		return C_CREG
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top