Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 98 for intp (0.2 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    }
    
    // Loader Symbol
    type XcoffLdSym64 struct {
    	Lvalue  uint64 // Address field
    	Loffset uint32 // Byte offset into string table of symbol name
    	Lscnum  int16  // Section number containing symbol
    	Lsmtype int8   // Symbol type, export, import flags
    	Lsmclas int8   // Symbol storage class
    	Lifile  int32  // Import file ID; ordinal of import file IDs
    	Lparm   uint32 // Parameter type-check field
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/reflect/type.go

    func (t *rtype) Bits() int {
    	if t == nil {
    		panic("reflect: Bits of nil Type")
    	}
    	k := t.Kind()
    	if k < Int || k > Complex128 {
    		panic("reflect: Bits of non-arithmetic Type " + t.String())
    	}
    	return int(t.t.Size_) * 8
    }
    
    func (t *rtype) Align() int { return t.t.Align() }
    
    func (t *rtype) FieldAlign() int { return t.t.FieldAlign() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    					// This relocation should point to a bctrl followed by a ld r2, 24(41)
    					// Convert the bctrl into a bl.
    					su := ldr.MakeSymbolUpdater(s)
    					rewritetoinsn(&ctxt.Target, ldr, su, int64(r.Off()), 0xFFFFFFFF, OP_BCTRL, OP_BL)
    
    					// Turn this reloc into an R_CALLPOWER, and convert the TOC restore into a nop.
    					su.SetRelocType(i, objabi.R_CALLPOWER)
    					localEoffset := int64(ldr.SymLocalentry(r.Sym()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      ASSERT_THAT(status, Eq(kTfLiteOk));
      const auto& subgraph = model_.subgraphs[0];
      auto conv_op = subgraph->operators[0].get();
      const int input_tensor_idx = 0;
      const int weights_tensor_idx = 1;
      const int bias_tensor_index = 2;
      const int output_tensor_idx = 0;
      const auto bias_tensor =
          subgraph->tensors[conv_op->inputs[bias_tensor_index]].get();
      const auto input_tensor =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{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
    		{name: "MOVBreg", argLength: 1, reg: gp11, asm: "MOVB"},   // move from arg0, sign-extended from byte
    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/syscall/syscall_windows.go

    func Chown(path string, uid int, gid int) (err error)  { return EWINDOWS }
    func Lchown(path string, uid int, gid int) (err error) { return EWINDOWS }
    func Fchown(fd Handle, uid int, gid int) (err error)   { return EWINDOWS }
    
    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/time/time.go

    //
    // Date panics if loc is nil.
    func Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time {
    	if loc == nil {
    		panic("time: missing Location in call to Date")
    	}
    
    	// Normalize month, overflowing into year.
    	m := int(month) - 1
    	year, m = norm(year, m, 12)
    	month = Month(m) + 1
    
    	// Normalize nsec, sec, min, hour, overflowing into day.
    	sec, nsec = norm(sec, nsec, 1e9)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    //
    //go:linkname callers
    func callers(skip int, pcbuf []uintptr) int {
    	sp := getcallersp()
    	pc := getcallerpc()
    	gp := getg()
    	var n int
    	systemstack(func() {
    		var u unwinder
    		u.initAt(pc, sp, 0, gp, unwindSilentErrors)
    		n = tracebackPCs(&u, skip, pcbuf)
    	})
    	return n
    }
    
    func gcallers(gp *g, skip int, pcbuf []uintptr) int {
    	var u unwinder
    	u.init(gp, unwindSilentErrors)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    type ocmp []Optab
    
    func (x ocmp) Len() int {
    	return len(x)
    }
    
    func (x ocmp) Swap(i, j int) {
    	x[i], x[j] = x[j], x[i]
    }
    
    func (x ocmp) Less(i, j int) bool {
    	p1 := &x[i]
    	p2 := &x[j]
    	n := int(p1.as) - int(p2.as)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.from1) - int(p2.from1)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.reg) - int(p2.reg)
    	if n != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    var dwarfToName = map[string]string{
    	"long int":               "long",
    	"long unsigned int":      "ulong",
    	"unsigned int":           "uint",
    	"short unsigned int":     "ushort",
    	"unsigned short":         "ushort", // Used by Clang; issue 13129.
    	"short int":              "short",
    	"long long int":          "longlong",
    	"long long unsigned int": "ulonglong",
    	"signed char":            "schar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top