Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 401 for offset_ (0.3 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// Check offset overflow. Must fit in int32.
    	MOVQ 2147483647+1(AX), AX       // ERROR "offset too large"
    	MOVQ 3395469782(R10), R8        // ERROR "offset too large"
    	LEAQ 3395469782(AX), AX         // ERROR "offset too large"
    	ADDQ 3395469782(AX), AX         // ERROR "offset too large"
    	ADDL 3395469782(AX), AX         // ERROR "offset too large"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/debug/dwarf/buf.go

    		b.data = nil
    		b.err = DecodeError{b.name, b.off, s}
    	}
    }
    
    type DecodeError struct {
    	Name   string
    	Offset Offset
    	Err    string
    }
    
    func (e DecodeError) Error() string {
    	return "decoding dwarf section " + e.Name + " at offset 0x" + strconv.FormatInt(int64(e.Offset), 16) + ": " + e.Err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. cmd/erasure-decode.go

    	if offset < 0 || length < 0 {
    		return -1, errInvalidArgument
    	}
    	if offset+length > totalLength {
    		return -1, errInvalidArgument
    	}
    
    	if length == 0 {
    		return 0, nil
    	}
    
    	reader := newParallelReader(readers, e, offset, totalLength)
    	if len(prefer) == len(readers) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

            "a/b"        | ""    | "a/b"
            ""           | ""    | ""
        }
    
        def "'#relativePath / #offset' #verb a prefix of '#childPath'"() {
            expect:
            VfsRelativePath.of(relativePath, offset).isPrefixOf(childPath, CASE_SENSITIVE) == result
    
            where:
            relativePath | offset         | childPath | result
            "a/b"        | "a/".length()  | "a"       | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/compress/flate/token.go

    // Convert a < xlength, xoffset > pair into a match token.
    func matchToken(xlength uint32, xoffset uint32) token {
    	return token(matchType + xlength<<lengthShift + xoffset)
    }
    
    // Returns the literal of a literal token.
    func (t token) literal() uint32 { return uint32(t - literalType) }
    
    // Returns the extra offset of a match token.
    func (t token) offset() uint32 { return uint32(t) & offsetMask }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. src/runtime/vdso_elf32.go

    	vd_ndx     uint16 /* Version Index */
    	vd_cnt     uint16 /* Number of associated aux entries */
    	vd_hash    uint32 /* Version name hash value */
    	vd_aux     uint32 /* Offset in bytes to verdaux array */
    	vd_next    uint32 /* Offset in bytes to next verdef entry */
    }
    
    type elfEhdr struct {
    	e_ident     [_EI_NIDENT]byte /* Magic number and other info */
    	e_type      uint16           /* Object file type */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/offset_buffer_test.cc

    namespace tflite {
    namespace {
    
    TEST(OffsetBufferTest, IsValidBufferOffsetTrueGreaterThan1) {
      EXPECT_TRUE(IsValidBufferOffset(/*offset=*/2));
    }
    
    TEST(OffsetBufferTest, IsValidBufferOffsetFalseForLessThanOrEqualTo1) {
      EXPECT_FALSE(IsValidBufferOffset(/*offset=*/1));
      EXPECT_FALSE(IsValidBufferOffset(/*offset=*/0));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 04 01:07:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/runtime/pprof/vminfo_darwin.go

    		}
    		if isExecutable(info.Protection) {
    			// NOTE: the meaning/value of Offset is unclear. However,
    			// this likely doesn't matter as the text segment's file
    			// offset is usually 0.
    			addMapping(addr,
    				addr+memRegionSize,
    				read64(&info.Offset),
    				regionFilename(addr),
    				"")
    			added = true
    		}
    		addr += memRegionSize
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *
     * ```
     *  0..63 : Length of the UTF-16 sequence that this range maps to. The offset is b2b3.
     * 64..79 : Offset by a fixed negative offset. The bottom 4 bits of b1 are the top 4 bits of the offset.
     * 80..95 : Offset by a fixed positive offset. The bottom 4 bits of b1 are the top 4 bits of the offset.
     *    119 : Ignored.
     *    120 : Valid.
     *    121 : Disallowed
     *    122 : Mapped inline to the sequence: [b2].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/debug/macho/fat.go

    		}
    	}
    	offset := int64(4)
    
    	// Read the number of FatArchHeaders that come after the fat_header.
    	var narch uint32
    	err = binary.Read(sr, binary.BigEndian, &narch)
    	if err != nil {
    		return nil, &FormatError{offset, "invalid fat_header", nil}
    	}
    	offset += 4
    
    	if narch < 1 {
    		return nil, &FormatError{offset, "file contains no images", nil}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top