Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for Extender (0.14 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Smart pointers:
    //   scoped_ptr     - as in TR2.
    //
    // Regular expressions:
    //   RE             - a simple regular expression class using the POSIX
    //                    Extended Regular Expression syntax on UNIX-like
    //                    platforms, or a reduced regular exception syntax on
    //                    other platforms, including Windows.
    //
    // Logging:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		return
    	}
    	ptr, err := LockResource(resData)
    	if err != nil {
    		return
    	}
    	data = unsafe.Slice((*byte)(unsafe.Pointer(ptr)), size)
    	return
    }
    
    // PSAPI_WORKING_SET_EX_BLOCK contains extended working set information for a page.
    type PSAPI_WORKING_SET_EX_BLOCK uint64
    
    // Valid returns the validity of this page.
    // If this bit is 1, the subsequent members are valid; otherwise they should be ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    		OpARM64MADDW, OpARM64MSUBW, OpARM64RORW, OpARM64RORWconst:
    		return true
    	case OpArg: // note: but not ArgIntReg
    		// amd64 always loads args from the stack unsigned.
    		// most other architectures load them sign/zero extended based on the type.
    		return x.Type.Size() == 4 && (x.Type.IsUnsigned() || x.Block.Func.Config.arch == "amd64")
    	case OpPhi, OpSelect0, OpSelect1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// code but does not override it.
    	// +optional
    	Reason StatusReason `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason,casttype=StatusReason"`
    	// Extended data associated with the reason.  Each reason may define its
    	// own extended details. This field is optional and the data returned
    	// is not guaranteed to conform to any schema except that defined by
    	// the reason type.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // 8-bit value to 64-bits.
    //
    // This is a hazard when folding sign- and zero-extensions since we need to
    // ensure not only that the value in the argument register is correctly
    // extended but also that it will still be correctly extended if it is
    // spilled and restored.
    //
    // In general this means we need type checks when the RHS of a rule is an
    // OpCopy (i.e. "(... x:(...) ...) -> x").
    
    // Merge double extensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    	b := new(Int).SetBytes(bBytes)
    
    	d := new(Int).GCD(x, y, a, b)
    	x.Mul(x, a)
    	y.Mul(y, b)
    	x.Add(x, y)
    
    	return x.Cmp(d) == 0
    }
    
    // euclidExtGCD is a reference implementation of Euclid's
    // extended GCD algorithm for testing against optimized algorithms.
    // Requirements: a, b > 0
    func euclidExtGCD(a, b *Int) (g, x, y *Int) {
    	A := new(Int).Set(a)
    	B := new(Int).Set(b)
    
    	// A = Ua*a + Va*b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		if pp != nil {
    			pp.data = nil
    		}
    	}
    }
    
    // SymAlign returns the alignment for a symbol.
    func (l *Loader) SymAlign(i Sym) int32 {
    	if int(i) >= len(l.align) {
    		// align is extended lazily -- it the sym in question is
    		// outside the range of the existing slice, then we assume its
    		// alignment has not yet been set.
    		return 0
    	}
    	// TODO: would it make sense to return an arch-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    	XMC_DB     = 2  // Debug dictionary table
    	XMC_TC     = 3  // TOC entry
    	XMC_UA     = 4  // Unclassified
    	XMC_RW     = 5  // Read/Write data
    	XMC_GL     = 6  // Global linkage
    	XMC_XO     = 7  // Extended operation
    	XMC_SV     = 8  // 32-bit supervisor call descriptor
    	XMC_BS     = 9  // BSS class
    	XMC_DS     = 10 // Function descriptor
    	XMC_UC     = 11 // Unnamed FORTRAN common
    	XMC_TC0    = 15 // TOC anchor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    			return nil, 0, alertBadRecordMAC
    		}
    
    		plaintext = payload[:n]
    	}
    
    	hc.incSeq()
    	return plaintext, typ, nil
    }
    
    // sliceForAppend extends the input slice by n bytes. head is the full extended
    // slice, while tail is the appended part. If the original slice has sufficient
    // capacity no allocation is performed.
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/time/format.go

    	} else {
    		b = make([]byte, 0, max)
    	}
    	b = t.AppendFormat(b, layout)
    	return string(b)
    }
    
    // AppendFormat is like [Time.Format] but appends the textual
    // representation to b and returns the extended buffer.
    func (t Time) AppendFormat(b []byte, layout string) []byte {
    	// Optimize for RFC3339 as it accounts for over half of all representations.
    	switch layout {
    	case RFC3339:
    		return t.appendFormatRFC3339(b, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top