Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 510 for aligned (0.31 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/tabwriter.go

    	tabwriterWidth    = 4
    	tabwriterPadding  = 3
    	tabwriterPadChar  = ' '
    	tabwriterFlags    = tabwriter.RememberWidths
    )
    
    // GetNewTabWriter returns a tabwriter that translates tabbed columns in input into properly aligned text.
    func GetNewTabWriter(output io.Writer) *tabwriter.Writer {
    	return tabwriter.NewWriter(output, tabwriterMinWidth, tabwriterWidth, tabwriterPadding, tabwriterPadChar, tabwriterFlags)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 06:45:08 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go

    		salign = 1
    	case "darwin", "ios", "illumos", "solaris":
    		// NOTE: It seems like 64-bit Darwin, Illumos and Solaris
    		// kernels still require 32-bit aligned access to network
    		// subsystem.
    		if SizeofPtr == 8 {
    			salign = 4
    		}
    	case "netbsd", "openbsd":
    		// NetBSD and OpenBSD armv7 require 64-bit alignment.
    		if runtime.GOARCH == "arm" {
    			salign = 8
    		}
    		// NetBSD aarch64 requires 128-bit alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/runtime/malloc_test.go

    	// nothing else allocates from it.
    	runtime.Acquirem()
    
    	// Make 1-byte allocations until we get a fresh tiny slot.
    	aligned := false
    	for i := 0; i < 16; i++ {
    		x := runtime.Escape(new(byte))
    		if uintptr(unsafe.Pointer(x))&0xf == 0xf {
    			aligned = true
    			break
    		}
    	}
    	if !aligned {
    		runtime.Releasem()
    		t.Fatal("unable to get a fresh tiny slot")
    	}
    
    	// Create a 4-byte object so that the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/math/big/example_rat_test.go

    	for i := 1; i <= 15; i++ {
    		r := recur(0, int64(i))
    
    		// Print r both as a fraction and as a floating-point number.
    		// Since big.Rat implements fmt.Formatter, we can use %-13s to
    		// get a left-aligned string representation of the fraction.
    		fmt.Printf("%-13s = %s\n", r, r.FloatString(8))
    	}
    
    	// Output:
    	// 2/1           = 2.00000000
    	// 3/1           = 3.00000000
    	// 8/3           = 2.66666667
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. test/fixedbugs/issue44739.go

    )
    
    func f(a T, _ byte, b T) bool {
    	// initialization of a,b
    	// tests unaligned store
    	return a.y == b.y
    }
    
    func g(a T) {
    	// test load of unaligned
    	// 8 byte gostring, store
    	// to unaligned static
    	copy(a.y[:], gostring2)
    }
    
    func main() {
    	var t1, t2 T
    
    	// test copy to automatic storage,
    	// load of unaligned gostring.
    	copy(st.y[:], gostring2)
    	copy(t1.y[:], st.y[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 19:33:23 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue24799.go

    package main
    
    import (
            "fmt"
    )
    
    type Level string
    
    // The following are all go.strings. A link time error can
    // occur if an 8 byte load is used to load a go.string that is
    // not aligned to 4 bytes due to the type of relocation that
    // is generated for the instruction. A fix was made to avoid
    // generating an instruction with DS relocation for go.strings
    // since their alignment is not known until link time. 
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 20 16:16:47 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_loong64.s

    entry:
    	ADDV	R4, R14, R12	// R6 start of a, R14 end of a
    	BEQ	R4, R12, samebytes // length is 0
    
    	SRLV	$4, R14		// R14 is number of chunks
    	BEQ	R0, R14, byte_loop
    
    	// make sure both a and b are aligned.
    	OR	R4, R6, R15
    	AND	$7, R15
    	BNE	R0, R15, byte_loop
    
    	PCALIGN	$16
    chunk16_loop:
    	BEQ	R0, R14, byte_loop
    	MOVV	(R4), R8
    	MOVV	(R6), R9
    	BNE	R8, R9, byte_loop
    	MOVV	8(R4), R16
    	MOVV	8(R6), R17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/runtime/memclr_ppc64x.s

    	CMP   R4, $512
    	BLT   under512           // special case for < 512
    	ANDCC $127, R3, R8       // check for 128 alignment of address
    	BEQ   zero512setup
    
    	ANDCC $7, R3, R15
    	BEQ   zero512xsetup // at least 8 byte aligned
    
    	// zero bytes up to 8 byte alignment
    
    	ANDCC $1, R3, R15 // check for byte alignment
    	BEQ   byte2
    	MOVB  R0, 0(R3)   // zero 1 byte
    	ADD   $1, R3      // bump ptr by 1
    	ADD   $-1, R4
    
    byte2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/c/tf_tensor.h

        TF_DataType, const int64_t* dims, int num_dims, void* data, size_t len,
        void (*deallocator)(void* data, size_t len, void* arg),
        void* deallocator_arg);
    
    // Returns the alignment, in bytes, required for allocating aligned tensors.
    //
    // This can be used in combination with TF_NewTensor to manually manage
    // memory while ensuring the resulting tensors satisfy TensorFlow's
    // memory alignment preferences.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/internal/sys/arch.go

    	// Loads or stores smaller than Alignment must be naturally aligned.
    	// Loads or stores larger than Alignment need only be Alignment-aligned.
    	Alignment int8
    
    	// CanMergeLoads reports whether the backend optimization passes
    	// can combine adjacent loads into a single larger, possibly unaligned, load.
    	// Note that currently the optimizations must be able to handle little endian byte order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top