Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 117 for offsetY (1.67 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/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)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVDaddr", argLength: 1, reg: addr, aux: "SymOff", rematerializeable: true, symEffect: "Addr"}, // arg0 + auxint + offset encoded in aux
    		{name: "MOVDaddridx", argLength: 2, reg: addridx, aux: "SymOff", symEffect: "Addr"},                    // arg0 + arg1 + auxint + aux
    
    		// auxint+aux == add auxint and the offset of the symbol in aux (if any) to the effective address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/encoding/json/decode_test.go

    	{CaseName: Name(""), in: `[2, 3`, err: &SyntaxError{msg: "unexpected end of JSON input", Offset: 5}},
    	{CaseName: Name(""), in: `{"F3": -}`, ptr: new(V), out: V{F3: Number("-")}, err: &SyntaxError{msg: "invalid character '}' in numeric literal", Offset: 9}},
    
    	// raw value errors
    	{CaseName: Name(""), in: "\x01 42", err: &SyntaxError{"invalid character '\\x01' looking for beginning of value", 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            @Override
            public int getOffset() {
                if (offset != -1) {
                    return offset;
                }
    
                final String value = request.getParameter("offset");
                if (StringUtil.isBlank(value)) {
                    offset = 0;
                } else {
                    try {
                        offset = Integer.parseInt(value);
                    } catch (final NumberFormatException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. src/runtime/map.go

    	oldoverflow *[]*bmap       // keeps overflow buckets of hmap.oldbuckets alive
    	startBucket uintptr        // bucket iteration started at
    	offset      uint8          // intra-bucket offset to start from during iteration (should be big enough to hold bucketCnt-1)
    	wrapped     bool           // already wrapped around from end of bucket array to beginning
    	B           uint8
    	i           uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    		s.AddUint16(ctxt.Arch, uint16(j))                        // aux count
    		s.AddUint32(ctxt.Arch, uint32(dynstr.Addstring(l.file))) // file string offset
    		s.AddUint32(ctxt.Arch, 16)                               // offset from header to first aux
    		if l.next != nil {
    			s.AddUint32(ctxt.Arch, 16+uint32(j)*16) // offset from this header to next
    		} else {
    			s.AddUint32(ctxt.Arch, 0)
    		}
    
    		for x := l.aux; x != nil; x = x.next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    func (span *mspan) specialFindSplicePoint(offset uintptr, kind byte) (**special, bool) {
    	// Find splice point, check for existing record.
    	iter := &span.specials
    	found := false
    	for {
    		s := *iter
    		if s == nil {
    			break
    		}
    		if offset == uintptr(s.offset) && kind == s.kind {
    			found = true
    			break
    		}
    		if offset < uintptr(s.offset) || (offset == uintptr(s.offset) && kind < s.kind) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top