Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 227 for aligned (0.24 sec)

  1. src/runtime/asm_s390x.s

    	MOVD	g, R2			// arg 0: G
    	// C functions expect 160 bytes of space on caller stack frame
    	// and an 8-byte aligned stack pointer
    	MOVD	R15, R9			// save current stack (R9 is preserved in the Linux ABI)
    	SUB	$160, R15		// reserve 160 bytes
    	MOVD    $~7, R6
    	AND 	R6, R15			// 8-byte align
    	BL	R11			// this call clobbers volatile registers according to Linux ABI (R0-R5, R14)
    	MOVD	R9, R15			// restore stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/internal/archive/archive.go

    		// We only care about name, size, and magic, unless in verbose mode.
    		// The fields are space-padded on the right.
    		// The size is in decimal.
    		// The file data - size bytes - follows the header.
    		// Headers are 2-byte aligned, so if size is odd, an extra padding
    		// byte sits between the file data and the next header.
    		// The file data that follows is padded to an even number of bytes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/go/printer/testdata/expressions.golden

    	})(nil)
    }
    
    func _() {
    	// do not modify literals
    	_ = "tab1	tab2	tab3	end"	// string contains 3 tabs
    	_ = "tab1 tab2 tab3 end"	// same string with 3 blanks - may be unaligned because editors see tabs in strings
    	_ = ""				// this comment should be aligned with the one on the previous line
    	_ = ``
    	_ = `
    `
    	_ = `foo
    		bar`
    	_ = `three spaces before the end of the line starting here:   
    they must not be removed`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.raw

    	})(nil)
    }
    
    func _() {
    	// do not modify literals
    	_ = "tab1	tab2	tab3	end"	// string contains 3 tabs
    	_ = "tab1 tab2 tab3 end"	// same string with 3 blanks - may be unaligned because editors see tabs in strings
    	_ = ""	// this comment should be aligned with the one on the previous line
    	_ = ``
    	_ = `
    `
    	_ = `foo
    		bar`
    	_ = `three spaces before the end of the line starting here:   
    they must not be removed`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  5. src/runtime/signal_windows.go

    		// In the case of an abort, the exception IP is one byte after
    		// the INT3 (this differs from UNIX OSes). Note that on ARM,
    		// this means that the exception IP is no longer aligned.
    		pc--
    	}
    	return isAbortPC(pc)
    }
    
    // isgoexception reports whether this exception should be translated
    // into a Go panic or throw.
    //
    // It is nosplit to avoid growing the stack in case we're aborting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/UnsignedBytes.java

          static final int BYTE_ARRAY_BASE_OFFSET = theUnsafe.arrayBaseOffset(byte[].class);
    
          static {
            // fall back to the safer pure java implementation unless we're in
            // a 64-bit JVM with an 8-byte aligned field offset.
            if (!("64".equals(System.getProperty("sun.arch.data.model"))
                && (BYTE_ARRAY_BASE_OFFSET % 8) == 0
                // sanity check - this should never fail
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. test/nosplit.go

    # The linker should accept the test case on systems not explicitly rejected.
    #
    # 64-bit systems do not attempt to execute test cases with frame sizes
    # that are only 32-bit aligned.
    
    # Ordinary function should work
    start 0
    
    # Large frame marked nosplit is always wrong.
    # Frame is so large it overflows cmd/link's int16.
    start 100000 nosplit
    REJECT
    
    # Calling a large frame is okay.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            return len;
        }
    
    
        protected static final int size8 ( int size ) {
            return size8(size, 0);
        }
    
    
        protected static final int size8 ( int size, int align ) {
    
            int rem = size % 8 - align;
            if ( rem == 0 ) {
                return size;
            }
            if ( rem < 0 ) {
                rem = 8 + rem;
            }
            return size + 8 - rem;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/a.out.go

    	C_S16CON   /* 16 bit signed constant */
    	C_U16CON   /* 16 bit unsigned constant */
    	C_16CON    /* Any constant which fits into 16 bits. Can be signed or unsigned */
    	C_U31CON   /* 31 bit unsigned constant */
    	C_S32CON   /* 32 bit signed constant */
    	C_U32CON   /* 32 bit unsigned constant */
    	C_32CON    /* Any constant which fits into 32 bits. Can be signed or unsigned */
    	C_S34CON   /* 34 bit signed constant */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/obj7.go

    					extrasize = 8
    				} else if c.autosize&(16-1) == 0 {
    					// Allocate extra 16 bytes to save FP for the old frame whose size is 8 mod 16
    					extrasize = 16
    				} else {
    					c.ctxt.Diag("%v: unaligned frame size %d - must be 16 aligned", p, c.autosize-8)
    				}
    				c.autosize += extrasize
    				c.cursym.Func().Locals += extrasize
    
    				// low 32 bits for autosize
    				// high 32 bits for extrasize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
Back to top