Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for alignof (0.13 sec)

  1. JavadocStyleGuide.md

    Some HTML element types allow authors to omit end tags: `<p>` and `<li>`.
    
    ### 1.1.3 Paragraphs
    
    One blank line—that is, a line containing only the aligned leading asterisk (`*`)—appears between the last paragraph and before the group of block tags if present:
    
    ```java
    /**
     * that draw the image will incrementally paint on the screen.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	// Assert ctxt is zero. See func save.
    	MOVQ	(g_sched+gobuf_ctxt)(R14), R9
    	TESTQ	R9, R9
    	JZ	2(PC)
    	CALL	runtime·abort(SB)
    	RET
    
    // func asmcgocall_no_g(fn, arg unsafe.Pointer)
    // Call fn(arg) aligned appropriately for the gcc ABI.
    // Called on a system stack, and there may be no g yet (during needm).
    TEXT ·asmcgocall_no_g(SB),NOSPLIT,$32-16
    	MOVQ	fn+0(FP), AX
    	MOVQ	arg+8(FP), BX
    	MOVQ	SP, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    	// Peeks returns the word in *data, not as the return value.
    
    	var buf [sizeofPtr]byte
    
    	// Leading edge. PEEKTEXT/PEEKDATA don't require aligned
    	// access (PEEKUSER warns that it might), but if we don't
    	// align our reads, we might straddle an unmapped page
    	// boundary and not get the bytes leading up to the page
    	// boundary.
    	n := 0
    	if addr%sizeofPtr != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

    import java.util.stream.Collectors;
    
    /**
     * A utility class used by {@link ResolutionFailureHandler} to assess and classify
     * how the attributes of candidate variants during a single attempt at dependency resolution
     * align with the requested attributes.
     */
    public final class ResolutionCandidateAssessor {
        private final ImmutableAttributes requestedAttributes;
        private final AttributeMatcher attributeMatcher;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.s

    	MOVD	g, R3			// arg 0: G
    	// C functions expect 32 (48 for AIX) bytes of space on caller
    	// stack frame and a 16-byte aligned R1
    	MOVD	R1, R14			// save current stack
    	SUB	$cgoCalleeStackSize, R1	// reserve the callee area
    	RLDCR	$0, R1, $~15, R1	// 16-byte align
    	BL	(CTR)			// may clobber R0, R3-R12
    	MOVD	R14, R1			// restore stack
    #ifndef GOOS_aix
    	MOVD	24(R1), R2
    #endif
    	XOR	R0, R0			// fix R0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func closechan(hchan chan<- any)
    func chanlen(hchan any) int
    func chancap(hchan any) int
    
    var writeBarrier struct {
    	enabled bool
    	pad     [3]byte
    	cgo     bool
    	alignme uint64
    }
    
    // *byte is really *runtime.Type
    func typedmemmove(typ *byte, dst *any, src *any)
    func typedmemclr(typ *byte, dst *any)
    func typedslicecopy(typ *byte, dstPtr *any, dstLen int, srcPtr *any, srcLen int) int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/syscall/mksyscall.pl

    			$n++;
    		} elsif($type eq "int64" && ($openbsd || $netbsd)) {
    			if (!$libc) {
    				push @args, "0";
    			}
    			if($libc && $arm && @args % 2) {
    				# arm abi specifies 64 bit argument must be 64 bit aligned.
    				push @args, "0"
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} elsif($_32bit eq "little-endian") {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/html/template/doc.go

    	<a href='{{.}}'>                     left
    	<a href='/{{.}}'>                    left
    	<a href='?dir={{.}}'>                left
    	<a style="border-{{.}}: 4px">        left
    	<a style="align: {{.}}">             left
    	<a style="background: '{{.}}'>       left
    	<a style="background: url('{{.}}')>  left
    	<style>p.{{.}} {color:red}</style>   left
    
    Non-string values can be used in JavaScript contexts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/common/extensions.kt

        """-PcommitId=%dep.$dependencyBuildId.build.vcs.number% $extraParameters "-PgitUserName=$gitUserName" "-PgitUserEmail=$gitUserEmail" $pluginPortalUrlOverride %additional.gradle.parameters%"""
    
    /**
     * Align with build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
     */
    enum class KillProcessMode {
        KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS,
        KILL_PROCESSES_STARTED_BY_GRADLE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  10. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	compressedSects, compressedBytes, err := machoCompressSections(ctxt, dwarfm)
    	if err != nil {
    		return err
    	}
    
    	// Now copy the dwarf data into the output.
    	// Kernel requires all loaded segments to be page-aligned in the file,
    	// even though we mark this one as being 0 bytes of virtual address space.
    	dwarfstart := Rnd(int64(linkseg.Offset), *FlagRound)
    	if _, err := outf.Seek(dwarfstart, 0); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top