Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 242 for doffsets (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    // * IFEQ itself is 3 bytes. However, ASM's CodeSizeEvaluator gives an upper bound of 8, because offsets
                    //   that don't fit in SHORT type have to be encoded differently. We're unlikely to encounter such offsets in this
                    //   code, but it is better to be consistent with the CodeSizeEvaluator.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

          assert(index[i] < shape[i]);
          assert(index[i] >= 0);
        }
    #endif  // NDEBUG
        int64_t offset = 0;
        int64_t stride = 1;
        for (int64_t dim = shape.size() - 1; dim >= 0; --dim) {
          offset += index[dim] * stride;
          stride *= shape[dim];
        }
        return offset;
      }
    
      int64_t offset_;
      int64_t stride_;
      int64_t size_;
    };
    
    template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/compress/flate/deflatefast.go

    			prevHash := hash(uint32(x))
    			e.table[prevHash&tableMask] = tableEntry{offset: e.cur + s - 1, val: uint32(x)}
    			x >>= 8
    			currHash := hash(uint32(x))
    			candidate = e.table[currHash&tableMask]
    			e.table[currHash&tableMask] = tableEntry{offset: e.cur + s, val: uint32(x)}
    
    			offset := s - (candidate.offset - e.cur)
    			if offset > maxMatchOffset || uint32(x) != candidate.val {
    				cv = uint32(x >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    			continue
    		}
    		for _, a := range v.Args {
    			if a.Block == b && a.Type.IsMemory() {
    				v = a
    				goto walkloop
    			}
    		}
    	}
    }
    
    // A shadowRange encodes a set of byte offsets [lo():hi()] from
    // a given pointer that will be written to later in the block.
    // A zero shadowRange encodes an empty shadowed range (and so
    // does a -1 shadowRange, which is what sparsemap.get returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/image/jpeg/writer_test.go

    			col := color.RGBA{
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				255,
    			}
    			imgRGBA.SetRGBA(x, y, col)
    			yo := imgYCbCr.YOffset(x, y)
    			co := imgYCbCr.COffset(x, y)
    			cy, ccr, ccb := color.RGBToYCbCr(col.R, col.G, col.B)
    			imgYCbCr.Y[yo] = cy
    			imgYCbCr.Cb[co] = ccr
    			imgYCbCr.Cr[co] = ccb
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/ar.go

    	"fmt"
    	"internal/xcoff"
    	"io"
    	"strconv"
    	"strings"
    )
    
    // Magic strings for different archive file formats.
    const (
    	armag  = "!<arch>\n"
    	armagt = "!<thin>\n"
    	armagb = "<bigaf>\n"
    )
    
    // Offsets and sizes for fields in a standard archive header.
    const (
    	arNameOff  = 0
    	arNameSize = 16
    	arDateOff  = arNameOff + arNameSize
    	arDateSize = 12
    	arUIDOff   = arDateOff + arDateSize
    	arUIDSize  = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/bootstrap.min.js.map

    $(this._element).closest('.navbar').length > 0\n  }\n\n  _getOffset() {\n    const offset = {}\n\n    if (typeof this._config.offset === 'function') {\n      offset.fn = (data) => {\n        data.offsets = {\n          ...data.offsets,\n          ...this._config.offset(data.offsets, this._element) || {}\n        }\n\n        return data\n      }\n    } else {\n      offset.offset = this._config.offset\n    }\n\n    return offset\n  }\n\n  _getPopperConfig() {\n    const popperConfig = {\n      placement:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  8. src/compress/flate/huffman_bit_writer.go

    		}
    		// Write the offset
    		offset := t.offset()
    		offsetCode := offsetCode(offset)
    		w.writeCode(oeCodes[offsetCode])
    		extraOffsetBits := uint(offsetExtraBits[offsetCode])
    		if extraOffsetBits > 0 {
    			extraOffset := int32(offset - offsetBase[offsetCode])
    			w.writeBits(extraOffset, extraOffsetBits)
    		}
    	}
    }
    
    // huffOffset is a static offset encoder used for huffman only encoding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  9. src/os/readfrom_linux_test.go

    			t.Fatalf("wrong source file descriptor: got %d, want %d", hook.srcfd, int(fd))
    		}
    	}); err != nil {
    		t.Fatalf("server Conn Control error: %v", err)
    	}
    
    	// Check that the offsets after the transfer make sense, that the size
    	// of the transfer was reported correctly, and that the destination
    	// file contains exactly the bytes we expect it to contain.
    	dstoff, err := dst.Seek(0, io.SeekCurrent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd_386.s

    	MOVL	12(DX), AX
    	MOVL	16(DX), BX
    	MOVL	20(DX), CX
    	MOVL	AX, 12(SP)		// arg 4 - flags
    	MOVL	BX, 16(SP)		// arg 5 - fid
    	MOVL	$0, 20(SP)		// pad
    	MOVL	CX, 24(SP)		// arg 6 - offset (low 32 bits)
    	MOVL	$0, 28(SP)		// offset (high 32 bits)
    	CALL	libc_mmap(SB)
    	MOVL	$0, BX
    	CMPL	AX, $-1
    	JNE	ok
    	CALL	libc_errno(SB)
    	MOVL	(AX), BX
    	MOVL	$0, AX
    ok:
    	MOVL	40(SP), DX
    	MOVL	AX, 24(DX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top