Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for xoffset (0.1 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-FP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset + c.ctxt.Arch.FixedFrameSize
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    			p.From.Reg = ppc64.REG_VS32
    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = v.Args[0].Reg()
    			p.To.Offset = offset
    
    			p = s.Prog(ppc64.ASTXV)
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = ppc64.REG_VS32
    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = v.Args[0].Reg()
    			p.To.Offset = offset + 16
    			offset += 32
    			rem -= 32
    		}
    		// Generate 16 bytes
    		if rem >= 16 {
    			p := s.Prog(ppc64.ASTXV)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/time/time_test.go

    		t.Errorf("sec = %d, nsec = %d, want sec = %d, nsec = 0", t2.Second(), t2.Nanosecond(), sec)
    	}
    }
    
    func equalTimeAndZone(a, b Time) bool {
    	aname, aoffset := a.Zone()
    	bname, boffset := b.Zone()
    	return a.Equal(b) && aoffset == boffset && aname == bname
    }
    
    var gobTests = []Time{
    	Date(0, 1, 2, 3, 4, 5, 6, UTC),
    	Date(7, 8, 9, 10, 11, 12, 13, FixedZone("", 0)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/time/time.go

    	if t.Location() == UTC {
    		offsetMin = -1
    	} else {
    		_, offset := t.Zone()
    		if offset%60 != 0 {
    			version = timeBinaryVersionV2
    			offsetSec = int8(offset % 60)
    		}
    
    		offset /= 60
    		if offset < -32768 || offset == -1 || offset > 32767 {
    			return nil, errors.New("Time.MarshalBinary: unexpected zone offset")
    		}
    		offsetMin = int16(offset)
    	}
    
    	sec := t.sec()
    	nsec := t.nsec()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/time/format.go

    		// Look for local zone with the given offset.
    		// If that zone was in effect at the given time, use it.
    		offset, ok := local.lookupName(zoneName, t.unixSec())
    		if ok {
    			t.addSec(-int64(offset))
    			t.setLoc(local)
    			return t, nil
    		}
    
    		// Otherwise, create fake zone with unknown offset.
    		if len(zoneName) > 3 && zoneName[:3] == "GMT" {
    			offset, _ = atoi(zoneName[3:]) // Guaranteed OK by parseGMT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/reflect/type.go

    // by padding.
    func isPaddedField(t Type, i int) bool {
    	field := t.Field(i)
    	if i+1 < t.NumField() {
    		return field.Offset+field.Type.Size() != t.Field(i+1).Offset
    	}
    	return field.Offset+field.Type.Size() != t.Size()
    }
    
    // StructOf returns the struct type containing fields.
    // The Offset and Index fields are ignored and computed as they would be
    // by the compiler.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-FP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    }
    
    // callOffset parses:
    //
    //	<call-offset> ::= h <nv-offset> _
    //	              ::= v <v-offset> _
    //
    //	<nv-offset> ::= <(offset) number>
    //
    //	<v-offset> ::= <(offset) number> _ <(virtual offset) number>
    //
    // The c parameter, if not 0, is a character we just read which is the
    // start of the <call-offset>.
    //
    // We don't display the offset information anywhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	for i := uint32(0); i < uint32(recHeader.number); i++ {
    		offset := request.header.outputDesc.offset + uint32(unsafe.Sizeof(*recHeader)) + i*uint32(unsafe.Sizeof(*sectionDesc))
    		sectionDesc = (*nwmTriplet)(unsafe.Pointer(&responseBuffer[offset]))
    		for j := uint32(0); j < sectionDesc.number; j++ {
    			offset = request.header.outputDesc.offset + sectionDesc.offset + j*sectionDesc.length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //
    //   (x - mean) * scale / sqrt(variance + epsilon) + offset
    //
    // Let multiplier = scale / sqrt(variance + epsilon),
    // to compute
    //   (x - mean) * scale / sqrt(variance + epsilon) + offset,
    // is then to compute
    //   (x * multiplier) + (offset - mean * multiplier).
    //
    // def : Pattern<
    //     (TF_FusedBatchNormV3Op:$root
    //         $x, $scale, $offset, $mean, $variance,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top