Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 286 for aligned2 (0.14 sec)

  1. code_of_conduct.md

    licensing terms applying to the Project developments.
    
    Project maintainers have the right and responsibility to remove, edit, or
    reject comments, commits, code, wiki edits, issues, and other contributions
    that are not aligned to this Code of Conduct, or to ban temporarily or
    permanently any contributor for other behaviors that they deem inappropriate,
    threatening, offensive, or harmful. However, these actions shall respect the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy_options.go

    	// Flag to evenly distribute CPUs across NUMA nodes in cases where more
    	// than one NUMA node is required to satisfy the allocation.
    	DistributeCPUsAcrossNUMA bool
    	// Flag to ensure CPUs are considered aligned at socket boundary rather than
    	// NUMA boundary
    	AlignBySocket bool
    }
    
    // NewStaticPolicyOptions creates a StaticPolicyOptions struct from the user configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/rotate.go

    // will be returned.
    func (r RotateParams) OutMerge(mask uint64) *RotateParams {
    	mask &= r.OutMask()
    	if mask == 0 {
    		return nil
    	}
    
    	// normalize the mask so that the set bits are left aligned
    	o := bits.LeadingZeros64(^mask)
    	mask = bits.RotateLeft64(mask, o)
    	z := bits.LeadingZeros64(mask)
    	mask = bits.RotateLeft64(mask, z)
    
    	// check that the normalized mask is contiguous
    	l := bits.LeadingZeros64(^mask)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 21 19:19:04 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  4. src/runtime/pinner.go

    	return pinState{bytep, byteVal, mask}
    }
    
    func (s *mspan) pinnerBitSize() uintptr {
    	return divRoundUp(uintptr(s.nelems)*2, 8)
    }
    
    // newPinnerBits returns a pointer to 8 byte aligned bytes to be used for this
    // span's pinner bits. newPinnerBits is used to mark objects that are pinned.
    // They are copied when the span is swept.
    func (s *mspan) newPinnerBits() *pinnerBits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/internal/bytealg/compare_arm.s

    	ADD	R2, R6		// R2 is current byte in a, R6 is the end of the range to compare
    	BLT	byte_loop	// length < 4
    	AND	$3, R2, R8
    	CMP	$0, R8
    	BNE	byte_loop	// unaligned a, use byte-wise compare (TODO: try to align a)
    aligned_a:
    	AND	$3, R3, R8
    	CMP	$0, R8
    	BNE	byte_loop	// unaligned b, use byte-wise compare
    	AND	$0xfffffffc, R6, R8
    	// length >= 4
    chunk4_loop:
    	MOVW.P	4(R2), R4
    	MOVW.P	4(R3), R5
    	CMP	R4, R5
    	BNE	cmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 16:09:38 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows.go

    		// passed as two words (little endian); and
    		// structs are pushed on the stack. In
    		// fastcall, arguments larger than the word
    		// size are passed by reference. On arm,
    		// 8-byte aligned arguments round up to the
    		// next even register and can be split across
    		// registers and the stack.
    		panic("compileCallback: argument size is larger than uintptr")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/runtime/memmove_amd64.s

    	//         |
    	//         SI+R11, where R11 = ((DI & -32) + 32) - DI
    	// Algorithm:
    	// 1. Unaligned save of the tail's 128 bytes
    	// 2. Unaligned save of the head's 32  bytes
    	// 3. Destination-aligned copying of body (128 bytes per iteration)
    	// 4. Put head on the new place
    	// 5. Put the tail on the new place
    	// It can be important to satisfy processor's pipeline requirements for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/dfs/Referral.java

            }
    
            return this.size;
        }
    
    
        private static String readString ( byte[] buffer, int bufferIndex, int len ) {
            // this is not absolutely correct, but we assume that the header is aligned
            if ( ( bufferIndex % 2 ) != 0 ) {
                bufferIndex++;
            }
            return Strings.fromUNIBytes(buffer, bufferIndex, Strings.findUNITermination(buffer, bufferIndex, len));
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc_32bit.go

    func (p *pageAlloc) sysGrow(base, limit uintptr) {
    	if base%pallocChunkBytes != 0 || limit%pallocChunkBytes != 0 {
    		print("runtime: base = ", hex(base), ", limit = ", hex(limit), "\n")
    		throw("sysGrow bounds not aligned to pallocChunkBytes")
    	}
    
    	// Walk up the tree and update the summary slices.
    	for l := len(p.summary) - 1; l >= 0; l-- {
    		// Figure out what part of the summary array this new address space needs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/image/internal/imageutil/gen.go

    }
    
    const pre = `// Code generated by go run gen.go; DO NOT EDIT.
    
    package imageutil
    
    import (
    	"image"
    )
    
    // DrawYCbCr draws the YCbCr source image on the RGBA destination image with
    // r.Min in dst aligned with sp in src. It reports whether the draw was
    // successful. If it returns false, no dst pixels were changed.
    //
    // This function assumes that r is entirely within dst's bounds and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.3K bytes
    - Viewed (0)
Back to top