Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for Int64N (1.44 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    		return 0, err
    	}
    	return int64(encodeCBImmediate(uint32(imm))), nil
    }
    
    func EncodeCJImmediate(imm int64) (int64, error) {
    	if err := immIFits(imm, 12); err != nil {
    		return 0, err
    	}
    	if err := immEven(imm); err != nil {
    		return 0, err
    	}
    	return int64(encodeCJImmediate(uint32(imm))), nil
    }
    
    func EncodeIImmediate(imm int64) (int64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    				var min, max int64
    				var vmin, vmax *Value
    				switch x.Type.Size() {
    				case 8:
    					min = w.AuxInt - delta
    					max = int64(^uint64(0)>>1) - delta
    
    					vmin = parent.NewValue0I(parent.Pos, OpConst64, parent.Func.Config.Types.Int64, min)
    					vmax = parent.NewValue0I(parent.Pos, OpConst64, parent.Func.Config.Types.Int64, max)
    
    				case 4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	stat.Rdev = uint64(statLE.Rdev)
    	stat.Size = statLE.Size
    	stat.Atim.Sec = int64(statLE.Atim)
    	stat.Atim.Nsec = 0 //zos doesn't return nanoseconds
    	stat.Mtim.Sec = int64(statLE.Mtim)
    	stat.Mtim.Nsec = 0 //zos doesn't return nanoseconds
    	stat.Ctim.Sec = int64(statLE.Ctim)
    	stat.Ctim.Nsec = 0 //zos doesn't return nanoseconds
    	stat.Blksize = int64(statLE.Blksize)
    	stat.Blocks = statLE.Blocks
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    func (ctxt *Link) xdefine(p string, t sym.SymKind, v int64) loader.Sym {
    	s := ctxt.defineInternal(p, t)
    	ctxt.loader.SetSymValue(s, v)
    	return s
    }
    
    func datoff(ldr *loader.Loader, s loader.Sym, addr int64) int64 {
    	if uint64(addr) >= Segdata.Vaddr {
    		return int64(uint64(addr) - Segdata.Vaddr + Segdata.Fileoff)
    	}
    	if uint64(addr) >= Segtext.Vaddr {
    		return int64(uint64(addr) - Segtext.Vaddr + Segtext.Fileoff)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	csectVAStart int64
    	csectVAEnd   int64
    }
    
    var (
    	currDwscnoff   = make(map[string]uint64) // Needed to create C_DWARF symbols
    	currSymSrcFile xcoffSymSrcFile
    	outerSymSize   = make(map[string]int64)
    )
    
    // xcoffUpdateOuterSize stores the size of outer symbols in order to have it
    // in the symbol table.
    func xcoffUpdateOuterSize(ctxt *Link, size int64, stype sym.SymKind) {
    	if size == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    func (t *Type) ArgWidth() int64 {
    	t.wantEtype(TFUNC)
    	return t.extra.(*Func).Argwid
    }
    
    func (t *Type) Size() int64 {
    	if t.kind == TSSA {
    		if t == TypeInt128 {
    			return 16
    		}
    		return 0
    	}
    	CalcSize(t)
    	return t.width
    }
    
    func (t *Type) Alignment() int64 {
    	CalcSize(t)
    	return int64(t.align)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. tests/query_test.go

    		t.Fatalf("Build OR condition, but got %v", result.Statement.SQL.String())
    	}
    }
    
    type Int64 int64
    
    func (v Int64) Value() (driver.Value, error) {
    	return v - 1, nil
    }
    
    func (f *Int64) Scan(v interface{}) error {
    	y := v.(int64)
    	*f = Int64(y + 1)
    	return nil
    }
    
    func TestPluck(t *testing.T) {
    	users := []*User{
    		GetUser("pluck-user1", Config{}),
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt0 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    	pc         int64
    }
    
    // Instruction layout.
    
    const (
    	FuncAlign = 4
    	loopAlign = 16
    )
    
    type Optab struct {
    	as    obj.As
    	from1 uint8
    	reg   uint8
    	from3 uint8
    	to1   uint8
    	to2   uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    func (c *typeConv) pad(fld []*ast.Field, sizes []int64, size int64) ([]*ast.Field, []int64) {
    	n := len(fld)
    	fld = fld[0 : n+1]
    	fld[n] = &ast.Field{Names: []*ast.Ident{c.Ident("_")}, Type: c.Opaque(size)}
    	sizes = sizes[0 : n+1]
    	sizes[n] = size
    	return fld, sizes
    }
    
    // Struct conversion: return Go and (gc) C syntax for type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proclseek)), 3, uintptr(fd), uintptr(offset), uintptr(whence), 0, 0, 0)
    	newoffset = int64(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
Back to top