Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for Alignment (0.24 sec)

  1. src/runtime/mgcscavenge.go

    // note that findScavengeCandidate searches backwards through the pallocData. As
    // a result, it will return the highest scavenge candidate in address order.
    //
    // min indicates a hard minimum size and alignment for runs of pages. That is,
    // findScavengeCandidate will not return a region smaller than min pages in size,
    // or that is min pages or greater in size but not aligned to min. min must be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. cmd/iam.go

    	inheritedPolicyType = "inherited-policy"
    )
    
    const (
    	maxSVCSessionPolicySize = 4096
    )
    
    // IAMSys - config system.
    type IAMSys struct {
    	// Need to keep them here to keep alignment - ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG
    	// metrics
    	LastRefreshTimeUnixNano         uint64
    	LastRefreshDurationMilliseconds uint64
    	TotalRefreshSuccesses           uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    }
    
    func check2ndField(x any, offs uintptr, t *testing.T) {
    	s := ValueOf(x)
    	f := s.Type().Field(1)
    	if f.Offset != offs {
    		t.Error("mismatched offsets in structure alignment:", f.Offset, offs)
    	}
    }
    
    // Check that structure alignment & offsets viewed through reflect agree with those
    // from the compiler itself.
    func TestAlignment(t *testing.T) {
    	type T1inner struct {
    		a int
    	}
    	type T1 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

                    (MOVHstore [4] dst (MOVHZload [4] src mem)
                            (MOVWstore dst (MOVWZload src mem) mem)))
    
    // Large move uses a loop. Since the address is computed and the
    // offset is zero, any alignment can be used.
    (Move [s] dst src mem) && s > 8 && buildcfg.GOPPC64 <= 8 && logLargeCopy(v, s) =>
            (LoweredMove [s] dst src mem)
    (Move [s] dst src mem) && s > 8 && s <= 64 && buildcfg.GOPPC64 >= 9 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    	fn := sym.(*AuxCall).Fn
    	return fn != nil && fn.String() == name
    }
    
    // canLoadUnaligned reports if the architecture supports unaligned load operations.
    func canLoadUnaligned(c *Config) bool {
    	return c.ctxt.Arch.Alignment == 1
    }
    
    // nlzX returns the number of leading zeros.
    func nlz64(x int64) int { return bits.LeadingZeros64(uint64(x)) }
    func nlz32(x int32) int { return bits.LeadingZeros32(uint32(x)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    /** Remove inner padding and border in Firefox 4+. */
    button::-moz-focus-inner,
    input::-moz-focus-inner {
    	border: 0;
    	padding: 0;
    }
    
    /** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */
    textarea {
    	overflow: auto;
    	/* 1 */
    	vertical-align: top;
    	/* 2 */
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    		}
    	}
    
    	// For one reason or another, we couldn't get the
    	// whole job done without the heap lock.
    	lock(&h.lock)
    
    	if needPhysPageAlign {
    		// Overallocate by a physical page to allow for later alignment.
    		extraPages := physPageSize / pageSize
    
    		// Find a big enough region first, but then only allocate the
    		// aligned portion. We can't just allocate and then free the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/runtime/memmove_loong64.s

    TEXT runtime·memmove<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-24
    	BNE	R6, check
    	RET
    
    check:
    	SGTU	R4, R5, R7
    	BNE	R7, backward
    
    	ADDV	R4, R6, R9 // end pointer
    
    	// if the two pointers are not of same alignments, do byte copying
    	SUBVU	R5, R4, R7
    	AND	$7, R7
    	BNE	R7, out
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R6, R7
    	BNE	R7, out
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R4, R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        padding_value                 ; otherwise.
    ```
    where `d = k[1] - m`, `y = max(-d, 0) - offset`, and `x = max(d, 0) - offset`.
    
    `offset` is zero except when the alignment of the diagonal is to the right.
    ```
    offset = max_diag_len - diag_len(d) ; if (`align` in {RIGHT_LEFT, RIGHT_RIGHT}
                                               and `d >= 0`) or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		}
    		lines[i] = line[len(prefix):]
    	}
    
    	joined := string(bytes.Join(lines, []byte{'\n'}))
    
    	// Convert rest of tabs to spaces since yaml doesnt like yabs
    	// (assuming 2 space alignment)
    	return strings.ReplaceAll(joined, "\t", "  ")
    }
    
    // Creates a *spec.Schema Schema by decoding the given YAML. Panics on error
    func mustSchema(source string) *schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top