Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for fsbase (0.19 sec)

  1. src/internal/bytealg/index_amd64.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Index(SB),NOSPLIT,$0-56
    	MOVQ a_base+0(FP), DI
    	MOVQ a_len+8(FP), DX
    	MOVQ b_base+24(FP), R8
    	MOVQ b_len+32(FP), AX
    	MOVQ DI, R10
    	LEAQ ret+48(FP), R11
    	JMP  indexbody<>(SB)
    
    TEXT ·IndexString(SB),NOSPLIT,$0-40
    	MOVQ a_base+0(FP), DI
    	MOVQ a_len+8(FP), DX
    	MOVQ b_base+16(FP), R8
    	MOVQ b_len+24(FP), AX
    	MOVQ DI, R10
    	LEAQ ret+32(FP), R11
    	JMP  indexbody<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_s390x.s

    TEXT ·kmaGCM(SB),NOSPLIT,$112-120
    	MOVD	fn+0(FP), R0
    	MOVD	$params-112(SP), R1
    
    	// load ptr/len pairs
    	LMG	dst+32(FP), R2, R3 // R2=base R3=len
    	LMG	src+56(FP), R4, R5 // R4=base R5=len
    	LMG	aad+80(FP), R6, R7 // R6=base R7=len
    
    	// setup parameters
    	MOVD	cnt+112(FP), R8
    	XC	$12, (R1), (R1)     // reserved
    	MVC	$4, 12(R8), 12(R1)  // set chain value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/compress/flate/dict_decoder.go

    // length if the available space in the output buffer is too small.
    //
    // This invariant must be kept: 0 < dist <= histSize()
    func (dd *dictDecoder) writeCopy(dist, length int) int {
    	dstBase := dd.wrPos
    	dstPos := dstBase
    	srcPos := dstPos - dist
    	endPos := dstPos + length
    	if endPos > len(dd.hist) {
    		endPos = len(dd.hist)
    	}
    
    	// Copy non-overlapping section after destination position.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. cluster/gce/windows/testonly/user-profile.psm1

        $user.SetInfo();
     
        $flag=$user.UserFlags.value -bor 0x10000;
        $user.put("userflags",$flag);
        $user.SetInfo();
     
        $group = [ADSI]("WinNT://$env:COMPUTERNAME/Users");
        $group.PSBase.Invoke("Add", $user.PSBase.Path);
    }
    
    #function to register a native method
    function Register-NativeMethod
    {
        [CmdletBinding()]
        [Alias()]
        [OutputType([int])]
        Param
        (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    				qs.qCfg.Name, fsName, descr1, descr2, workEstimate, qs.totSeatsInUse, qs.totRequestsExecuting, qs.dCfg.ConcurrencyLimit)
    			qs.totRequestsRejected++
    			metrics.AddReject(ctx, qs.qCfg.Name, fsName, "concurrency-limit")
    			return nil, qs.isIdleLocked()
    		}
    		req = qs.dispatchSansQueueLocked(ctx, workEstimate, flowDistinguisher, fsName, descr1, descr2)
    		return req, false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  6. src/internal/bytealg/indexbyte_riscv64.s

    #include "textflag.h"
    
    TEXT ·IndexByte<ABIInternal>(SB),NOSPLIT,$0-40
    	// X10 = b_base
    	// X11 = b_len
    	// X12 = b_cap (unused)
    	// X13 = byte to find
    	AND	$0xff, X13
    	MOV	X10, X12		// store base for later
    	ADD	X10, X11		// end
    	SUB	$1, X10
    
    loop:
    	ADD	$1, X10
    	BEQ	X10, X11, notfound
    	MOVBU	(X10), X14
    	BNE	X13, X14, loop
    
    	SUB	X12, X10		// remove base
    	RET
    
    notfound:
    	MOV	$-1, X10
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 919 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			names = append(names, objType.Name())
    		}
    	}
    
    	return names
    }
    
    func newConfiguration(fsName, plName, user string, concurrency int32, queueLength int32) []runtime.Object {
    	fs := &flowcontrol.FlowSchema{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: fsName,
    			UID:  types.UID(fsName),
    		},
    		Spec: flowcontrol.FlowSchemaSpec{
    			MatchingPrecedence: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_s390x.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·IndexByte(SB),NOSPLIT|NOFRAME,$0-40
    	MOVD	b_base+0(FP), R3// b_base => R3
    	MOVD	b_len+8(FP), R4 // b_len => R4
    	MOVBZ	c+24(FP), R5    // c => R5
    	MOVD	$ret+32(FP), R2 // &ret => R9
    	BR	indexbytebody<>(SB)
    
    TEXT ·IndexByteString(SB),NOSPLIT|NOFRAME,$0-32
    	MOVD	s_base+0(FP), R3// s_base => R3
    	MOVD	s_len+8(FP), R4 // s_len => R4
    	MOVBZ	c+16(FP), R5    // c => R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  9. src/image/internal/imageutil/gen.go

    	`,
    	"422": `
    		ciBase := (sy-src.Rect.Min.Y)*src.CStride - src.Rect.Min.X/2
    		for x, sx := x0, sp.X; x != x1; x, sx, yi = x+4, sx+1, yi+1 {
    			ci := ciBase + sx/2
    	`,
    	"420": `
    		ciBase := (sy/2-src.Rect.Min.Y/2)*src.CStride - src.Rect.Min.X/2
    		for x, sx := x0, sp.X; x != x1; x, sx, yi = x+4, sx+1, yi+1 {
    			ci := ciBase + sx/2
    	`,
    	"440": `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Range.groovy

    class Range {
        private final long millis
    
        Range(long millis) {
            this.millis = millis
        }
    
        @Override
        String toString() {
            return "[approx $millis millis]"
        }
    
        boolean isCase(Duration duration) {
            def actualMillis = duration.millis
            return actualMillis > millis - 500 && actualMillis < millis + 2000
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top