Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 398 for aligned (0.27 sec)

  1. src/runtime/sys_windows_amd64.s

    	MOVQ	SP, AX
    	ANDQ	$~15, SP	// alignment as per Windows requirement
    	SUBQ	$48, SP	// room for SP and 4 args as per Windows requirement
    			// plus one extra word to keep stack 16 bytes aligned
    	MOVQ	AX, 32(SP)
    	MOVQ	runtime·_TlsAlloc(SB), AX
    	CALL	AX
    	MOVQ	32(SP), SP
    
    	MOVQ	AX, CX	// TLS index
    
    	// Assert that slot is less than 64 so we can use _TEB->TlsSlots
    	CMPQ	CX, $64
    	JB	ok
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	"fmt"
    )
    
    // An Inst is a single instruction.
    type Inst struct {
    	Prefix   Prefixes // Prefixes applied to the instruction.
    	Op       Op       // Opcode mnemonic
    	Opcode   uint32   // Encoded opcode bits, left aligned (first byte is Opcode>>24, etc)
    	Args     Args     // Instruction arguments, in Intel order
    	Mode     int      // processor mode in bits: 16, 32, or 64
    	AddrSize int      // address size in bits: 16, 32, or 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/aot/codegen.cc

    //
    // The logical function signature is:
    //   {{PROGRAM_SHAPE}}
    //
    // Memory stats:
    //   arg bytes total:    {{ARG_BYTES_TOTAL}}
    //   arg bytes aligned:  {{ARG_BYTES_ALIGNED}}
    //   temp bytes total:   {{TEMP_BYTES_TOTAL}}
    //   temp bytes aligned: {{TEMP_BYTES_ALIGNED}}
    class {{CLASS}} final : public tensorflow::XlaCompiledCpuFunction {
     public:
      // Number of input arguments for the compiled computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    // bytes with any other objects, allowing the GC program execution to
    // assume an aligned start and not use atomic operations. In the current
    // runtime, this means all malloc size classes larger than the cutoff must
    // be multiples of four words. On 32-bit systems that's 16 bytes, and
    // all size classes >= 16 bytes are 16-byte aligned, so no real constraint.
    // On 64-bit systems, that's 32 bytes, and 32-byte alignment is guaranteed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/asm_mips64x.s

    // 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,$0-16
    	MOVV	fn+0(FP), R25
    	MOVV	arg+8(FP), R4
    	JAL	(R25)
    	RET
    
    // func asmcgocall(fn, arg unsafe.Pointer) int32
    // Call fn(arg) on the scheduler stack,
    // aligned appropriately for the gcc ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/s390x/asm.go

    	default:
    		ldr.Errorf(s, "unexpected relocation variant %d", rv)
    		return t
    
    	case sym.RV_NONE:
    		return t
    
    	case sym.RV_390_DBL:
    		if t&1 != 0 {
    			ldr.Errorf(s, "%s+%v is not 2-byte aligned", ldr.SymName(r.Sym()), ldr.SymValue(r.Sym()))
    		}
    		return t >> 1
    	}
    }
    
    func addpltsym(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loader.Sym) {
    	if ldr.SymPlt(s) >= 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. src/archive/tar/common.go

    		}
    		pre = cur
    	}
    	return true
    }
    
    // alignSparseEntries mutates src and returns dst where each fragment's
    // starting offset is aligned up to the nearest block edge, and each
    // ending offset is aligned down to the nearest block edge.
    //
    // Even though the Go tar Reader and the BSD tar utility can handle entries
    // with arbitrary offsets and lengths, the GNU tar utility can only handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top