Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ByteOffset (0.23 sec)

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

                this.byteOffset = ( boHigh << 32 ) | boLow;
    
                int lHigh = SMBUtil.readInt4(buffer, bufferIndex + 12);
                int lLow = SMBUtil.readInt4(buffer, bufferIndex + 16);
    
                this.lengthInBytes = ( lHigh << 32 ) | lLow;
                return 20;
            }
            this.pid = SMBUtil.readInt2(buffer, bufferIndex);
            this.byteOffset = SMBUtil.readInt4(buffer, bufferIndex + 2);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			continue
    		}
    
    		// Round off up to talign, assumed to be a power of 2.
    		off = (off + talign - 1) &^ (talign - 1)
    
    		if f.ByteOffset > off {
    			fld, sizes = c.pad(fld, sizes, f.ByteOffset-off)
    			off = f.ByteOffset
    		}
    		if f.ByteOffset < off {
    			// Drop a packed field that we can't represent.
    			continue
    		}
    
    		n := len(fld)
    		fld = fld[0 : n+1]
    		if name == "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg debug/dwarf, type StructField struct
    pkg debug/dwarf, type StructField struct, BitOffset int64
    pkg debug/dwarf, type StructField struct, BitSize int64
    pkg debug/dwarf, type StructField struct, ByteOffset int64
    pkg debug/dwarf, type StructField struct, ByteSize int64
    pkg debug/dwarf, type StructField struct, Name string
    pkg debug/dwarf, type StructField struct, Type Type
    pkg debug/dwarf, type StructType struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top