Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 388 for alignment (0.21 sec)

  1. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

        }
        int writeString( String str, byte[] dst, int dstIndex, boolean useUnicode ) {
            int start = dstIndex;
    
            try {
                if( useUnicode ) {
                    // Unicode requires word alignment
                    if((( dstIndex - headerStart ) % 2 ) != 0 ) {
                        dst[dstIndex++] = (byte)'\0';
                    }
                    System.arraycopy( str.getBytes( UNI_ENCODING ), 0,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

                    // == 5*128 = 640
    
                    // . and .. entries = 200 byte (includes alignment)
    
                    // + 64 byte header
                    // + 8 byte query response overhead
                    // + 110 bytes entry
                    // -> 1022 predicted message size <= 1023 maximum buffer size
                    // 112 bytes to alignment
                    // -> aligned to 1024 > 1023 maximum buffer size
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/internal/xcoff/xcoff.go

    type AuxCSect32 struct {
    	Xscnlen   uint32 // Length or symbol table index
    	Xparmhash uint32 // Offset of parameter type-check string
    	Xsnhash   uint16 // .typchk section number
    	Xsmtyp    uint8  // Symbol alignment and type
    	Xsmclas   uint8  // Storage-mapping class
    	Xstab     uint32 // Reserved
    	Xsnstab   uint16 // Reserved
    }
    
    type AuxCSect64 struct {
    	Xscnlenlo uint32 // Lower 4 bytes of length or symbol table index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/internal/abi/type.go

    	Hash        uint32  // hash of type; avoids computation in hash tables
    	TFlag       TFlag   // extra type information flags
    	Align_      uint8   // alignment of variable with this type
    	FieldAlign_ uint8   // alignment of struct field with this type
    	Kind_       Kind    // enumeration for C
    	// function for comparing objects of this type
    	// (ptr to object A, ptr to object B) -> ==?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. src/text/tabwriter/tabwriter.go

    	FilterHTML uint = 1 << iota
    
    	// Strip Escape characters bracketing escaped text segments
    	// instead of passing them through unchanged with the text.
    	StripEscape
    
    	// Force right-alignment of cell content.
    	// Default is left-alignment.
    	AlignRight
    
    	// Handle empty columns as if they were not present in
    	// the input in the first place.
    	DiscardEmptyColumns
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/cmd/link/elf_test.go

    			t.Errorf("section %s should not allocated with addr %x", s.Name, s.Addr)
    		}
    	}
    }
    
    func TestFlagR(t *testing.T) {
    	// Test that using the -R flag to specify a (large) alignment generates
    	// a working binary.
    	// (Test only on ELF for now. The alignment allowed differs from platform
    	// to platform.)
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    	tmpdir := t.TempDir()
    	src := filepath.Join(tmpdir, "x.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. src/runtime/sys_freebsd_arm.s

    	// note the C runtime only passes the 32-bit offset_lo to us
    	MOVW fd+16(FP), R4		// arg 5
    	MOVW R4, 4(R13)
    	MOVW off+20(FP), R5		// arg 6 lower 32-bit
    	// the word at 8(R13) is skipped due to 64-bit argument alignment.
    	MOVW R5, 12(R13)
    	MOVW $0, R6 		// higher 32-bit for arg 6
    	MOVW R6, 16(R13)
    	ADD $4, R13
    	MOVW $SYS_mmap, R7
    	SWI $0
    	SUB $4, R13
    	MOVW $0, R1
    	MOVW.CS R0, R1		// if failed, put in R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        }
    
    
        protected int writeString ( String str, byte[] dst, int dstIndex, boolean unicode ) {
            int start = dstIndex;
            if ( unicode ) {
                // Unicode requires word alignment
                if ( ( ( dstIndex - this.headerStart ) % 2 ) != 0 ) {
                    dst[ dstIndex++ ] = (byte) '\0';
                }
                System.arraycopy(Strings.getUNIBytes(str), 0, dst, dstIndex, str.length() * 2);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.go

    } issue4054a;
    
    // issue 4339
    // We've historically permitted #include <>, so test it here.  Issue 29333.
    // Also see issue 41059.
    #include <issue4339.h>
    
    // issue 4417
    // cmd/cgo: bool alignment/padding issue.
    // bool alignment is wrong and causing wrong arguments when calling functions.
    static int c_bool(bool a, bool b, int c, bool d, bool e)  {
       return c;
    }
    
    // issue 4857
    #cgo CFLAGS: -Werror
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. src/go/printer/printer.go

    	level        int          // level == 0: outside composite literal; level > 0: inside composite literal
    	mode         pmode        // current printer mode
    	endAlignment bool         // if set, terminate alignment immediately
    	impliedSemi  bool         // if set, a linebreak implies a semicolon
    	lastTok      token.Token  // last token printed (token.ILLEGAL if it's whitespace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top