Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for setSlot (0.2 sec)

  1. src/encoding/binary/binary.go

    		v.SetUint(uint64(d.uint16()))
    	case reflect.Uint32:
    		v.SetUint(uint64(d.uint32()))
    	case reflect.Uint64:
    		v.SetUint(d.uint64())
    
    	case reflect.Float32:
    		v.SetFloat(float64(math.Float32frombits(d.uint32())))
    	case reflect.Float64:
    		v.SetFloat(math.Float64frombits(d.uint64()))
    
    	case reflect.Complex64:
    		v.SetComplex(complex(
    			float64(math.Float32frombits(d.uint32())),
    			float64(math.Float32frombits(d.uint32())),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/v1reflect.gox

     func (v <type 1>) Set (x <type 1>);
     func (v <type 1>) SetBool (x <type -15>);
     func (v <type 1>) SetBytes (x <type 56 [] <type -20>>);
     func (v <type 1>) SetComplex (x <type -18>);
     func (v <type 1>) SetFloat (x <type -10>);
     func (v <type 1>) SetInt (x <type -4>);
     func (v <type 1>) SetLen (n <type -11>);
     func (v <type 1>) SetMapIndex (key <type 1>, val <type 1>);
     func (v <type 1>) SetUint (x <type -8>);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/sys_freebsd_386.s

    		0x0F=4 more bits of limit
    	1 byte: 8 more bits of base
    
    int i386_get_ldt(int, union ldt_entry *, int);
    int i386_set_ldt(int, const union ldt_entry *, int);
    
    */
    
    // setldt(int entry, int address, int limit)
    TEXT runtime·setldt(SB),NOSPLIT,$32
    	MOVL	base+4(FP), BX
    	// see comment in sys_linux_386.s; freebsd is similar
    	ADDL	$0x4, BX
    
    	// set up data_desc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    func (l *Loader) SymPlt(s Sym) int32 {
    	if v, ok := l.plt[s]; ok {
    		return v
    	}
    	return -1
    }
    
    // SetPlt sets the PLT offset of symbol i.
    func (l *Loader) SetPlt(i Sym, v int32) {
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol for SetPlt")
    	}
    	if v == -1 {
    		delete(l.plt, i)
    	} else {
    		l.plt[i] = v
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/time/format.go

    		name, offset, _, _, _ := local.lookup(t.unixSec())
    		if offset == zoneOffset && (zoneName == "" || name == zoneName) {
    			t.setLoc(local)
    			return t, nil
    		}
    
    		// Otherwise create fake zone to record offset.
    		zoneNameCopy := stringslite.Clone(zoneName) // avoid leaking the input value
    		t.setLoc(FixedZone(zoneNameCopy, zoneOffset))
    		return t, nil
    	}
    
    	if zoneName != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top