Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for setSlot (0.39 sec)

  1. src/cmd/link/internal/mips64/asm.go

    	plt.SetUint32(target.Arch, plt.Size()-4, 0x65f80000) // daddiu $24, $15, %lo(.got.plt entry)
    
    	// Add pointer to plt[0] to got.plt
    	gotplt.AddAddrPlus(target.Arch, plt.Sym(), 0)
    
    	ldr.SetPlt(s, int32(plt.Size()-16))
    
    	// Update dynamic symbol count.
    	dynamic.SetUint(target.Arch, dtOffsets[elf.DT_MIPS_SYMTABNO], dynSymCount)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. src/cmd/link/internal/s390x/asm.go

    		rela.AddAddrPlus(target.Arch, got.Sym(), got.Size()-8)
    
    		sDynid := ldr.SymDynid(s)
    		rela.AddUint64(target.Arch, elf.R_INFO(uint32(sDynid), uint32(elf.R_390_JMP_SLOT)))
    		rela.AddUint64(target.Arch, 0)
    
    		ldr.SetPlt(s, int32(plt.Size()-32))
    
    	} else {
    		ldr.Errorf(s, "addpltsym: unsupported binary format")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/x86/asm.go

    		// rel
    		rel.AddAddrPlus(target.Arch, got.Sym(), got.Size()-4)
    
    		sDynid := ldr.SymDynid(s)
    		rel.AddUint32(target.Arch, elf.R_INFO32(uint32(sDynid), uint32(elf.R_386_JMP_SLOT)))
    
    		ldr.SetPlt(s, int32(plt.Size()-16))
    	} else {
    		ldr.Errorf(s, "addpltsym: unsupported binary format")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/anames.go

    	"SBBB",
    	"SBBL",
    	"SBBQ",
    	"SBBW",
    	"SCASB",
    	"SCASL",
    	"SCASQ",
    	"SCASW",
    	"SETCC",
    	"SETCS",
    	"SETEQ",
    	"SETGE",
    	"SETGT",
    	"SETHI",
    	"SETLE",
    	"SETLS",
    	"SETLT",
    	"SETMI",
    	"SETNE",
    	"SETOC",
    	"SETOS",
    	"SETPC",
    	"SETPL",
    	"SETPS",
    	"SFENCE",
    	"SGDT",
    	"SHA1MSG1",
    	"SHA1MSG2",
    	"SHA1NEXTE",
    	"SHA1RNDS4",
    	"SHA256MSG1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. src/database/sql/convert.go

    		f64, err := strconv.ParseFloat(s, dv.Type().Bits())
    		if err != nil {
    			err = strconvErr(err)
    			return fmt.Errorf("converting driver.Value type %T (%q) to a %s: %v", src, s, dv.Kind(), err)
    		}
    		dv.SetFloat(f64)
    		return nil
    	case reflect.String:
    		if src == nil {
    			return fmt.Errorf("converting NULL to %s is unsupported", dv.Kind())
    		}
    		switch v := src.(type) {
    		case string:
    			dv.SetString(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/math/big/rat.go

    }
    
    // NewRat creates a new [Rat] with numerator a and denominator b.
    func NewRat(a, b int64) *Rat {
    	return new(Rat).SetFrac64(a, b)
    }
    
    // SetFloat64 sets z to exactly f and returns z.
    // If f is not finite, SetFloat returns nil.
    func (z *Rat) SetFloat64(f float64) *Rat {
    	const expMask = 1<<11 - 1
    	bits := math.Float64bits(f)
    	mantissa := bits & (1<<52 - 1)
    	exp := int((bits >> 52) & expMask)
    	switch exp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/encoding/gob/decode.go

    func decFloat32(i *decInstr, state *decoderState, value reflect.Value) {
    	value.SetFloat(float32FromBits(state.decodeUint(), i.ovfl))
    }
    
    // decFloat64 decodes an unsigned integer, treats it as a 64-bit floating-point
    // number, and stores it in value.
    func decFloat64(i *decInstr, state *decoderState, value reflect.Value) {
    	value.SetFloat(float64FromBits(state.decodeUint()))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/arm64/asm.go

    		rela.AddUint64(target.Arch, 0)
    
    		ldr.SetPlt(s, int32(plt.Size()-16))
    	} else if target.IsDarwin() {
    		ld.AddGotSym(target, ldr, syms, s, 0)
    
    		sDynid := ldr.SymDynid(s)
    		lep := ldr.MakeSymbolUpdater(syms.LinkEditPLT)
    		lep.AddUint32(target.Arch, uint32(sDynid))
    
    		plt := ldr.MakeSymbolUpdater(syms.PLT)
    		ldr.SetPlt(s, int32(plt.Size()))
    
    		// adrp x16, GOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                }
            }
    
            if (mojo instanceof Mojo) {
                Logger mojoLogger = LoggerFactory.getLogger(mojoDescriptor.getImplementation());
                ((Mojo) mojo).setLog(new MojoLogWrapper(mojoLogger));
            }
    
            if (mojo instanceof Contextualizable) {
                pluginValidationManager.reportPluginMojoValidationIssue(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/riscv64/asm.go

    	plt.SetUint32(target.Arch, plt.Size()-4, 0x000e3e03) // ld      t3,0(t3)
    	plt.AddUint32(target.Arch, 0x000e0367)               // jalr    t1,t3
    	plt.AddUint32(target.Arch, 0x00000001)               // nop
    
    	ldr.SetPlt(s, int32(plt.Size()-16))
    
    	// add to got.plt: pointer to plt[0]
    	gotplt.AddAddrPlus(target.Arch, plt.Sym(), 0)
    
    	// rela
    	rela.AddAddrPlus(target.Arch, gotplt.Sym(), gotplt.Size()-8)
    	sDynid := ldr.SymDynid(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top