Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for declOffset (0.35 sec)

  1. src/cmd/internal/obj/dwarf.go

    	svec      []symFixups
    	precursor map[*LSym]fnState // maps fn Lsym to precursor Node, absfn sym
    }
    
    type symFixups struct {
    	fixups   []relFixup
    	doffsets []declOffset
    	inlIndex int32
    	defseen  bool
    }
    
    type declOffset struct {
    	// Index of variable within DCL list of pre-optimization function
    	dclIdx int32
    	// Offset of var's child DIE with respect to containing subprogram DIE
    	offset int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java

                bufferIndex = start + ownerGOffset;
                owner_group = new SID(buffer, bufferIndex);
                bufferIndex += 28; // ???
            }
    
            bufferIndex = start + daclOffset;
    
            if (daclOffset != 0) {
                bufferIndex++; // revision
                bufferIndex++;
                int size = ServerMessageBlock.readInt2(buffer, bufferIndex);
                bufferIndex += 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

                this.ownerGroupSid = new SID(buffer, bufferIndex);
                bufferIndex += 8 + 4 * this.ownerGroupSid.sub_authority_count;
            }
    
            bufferIndex = start + daclOffset;
    
            if ( daclOffset > 0 ) {
                bufferIndex++; // revision
                bufferIndex++;
                SMBUtil.readInt2(buffer, bufferIndex);
                bufferIndex += 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.4K bytes
    - Viewed (0)
Back to top