Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 564 for xoffset (0.77 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComSeek.java

         */
        public final void setMode ( int mode ) {
            this.mode = mode;
        }
    
    
        /**
         * @param offset
         *            the offset to set
         */
        public final void setOffset ( long offset ) {
            this.offset = offset;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb1.ServerMessageBlock#writeParameterWordsWireFormat(byte[], int)
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. test/stringrange.go

    	expect := []rune{0, 0123, 0, 0xFFFD, 0xFFFD, 0x123, 0xbabe, 0xbabe, 0x10FFFF, 'x'}
    	offset := 0
    	var i int
    	var c rune
    	ok := true
    	cnum := 0
    	for i, c = range s {
    		r, size := utf8.DecodeRuneInString(s[i:len(s)]) // check it another way
    		if i != offset {
    			fmt.Printf("unexpected offset %d not %d\n", i, offset)
    			ok = false
    		}
    		if r != expect[cnum] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 08 21:01:23 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java

            super(config);
            this.data = b;
            this.offset = off;
        }
    
    
        void setParam ( byte[] b, int off ) {
            this.data = b;
            this.offset = off;
        }
    
    
        /**
         * 
         * @return the read data
         */
        public final byte[] getData () {
            return this.data;
        }
    
    
        /**
         * @return the offset
         */
        public final int getOffset () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/internal/bio/buf.go

    	return &Reader{f: f, Reader: bufio.NewReader(f)}
    }
    
    func (r *Reader) MustSeek(offset int64, whence int) int64 {
    	if whence == 1 {
    		offset -= int64(r.Buffered())
    	}
    	off, err := r.f.Seek(offset, whence)
    	if err != nil {
    		log.Fatalf("seeking in output: %v", err)
    	}
    	r.Reset(r.f)
    	return off
    }
    
    func (w *Writer) MustSeek(offset int64, whence int) int64 {
    	if err := w.Flush(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 17:15:15 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_arm.go

    }
    
    // Underlying system call writes to newoffset via pointer.
    // Implemented in assembly to avoid allocation.
    func seek(fd int, offset int64, whence int) (newoffset int64, err Errno)
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	newoffset, errno := seek(fd, offset, whence)
    	if errno != 0 {
    		return 0, errno
    	}
    	return newoffset, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top