Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for L1 (0.04 sec)

  1. src/math/big/arith_amd64.s

    L1:	// n > 0
    	ADDQ CX, CX		// restore CF
    	MOVQ 0(R8)(SI*8), R11
    	ADCQ 0(R9)(SI*8), R11
    	MOVQ R11, 0(R10)(SI*8)
    	SBBQ CX, CX		// save CF
    
    	ADDQ $1, SI		// i++
    	SUBQ $1, DI		// n--
    	JG L1			// if n > 0 goto L1
    
    E1:	NEGQ CX
    	MOVQ CX, c+72(FP)	// return c
    	RET
    
    
    // func subVV(z, x, y []Word) (c Word)
    // (same as addVV except for SBBQ instead of ADCQ and label names)
    TEXT ·subVV(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/math/big/arith_386.s

    	MOVL $0, DX		// c = 0
    	JMP E1
    
    L1:	MOVL (SI)(BX*4), AX
    	ADDL DX, DX		// restore CF
    	ADCL (CX)(BX*4), AX
    	SBBL DX, DX		// save CF
    	MOVL AX, (DI)(BX*4)
    	ADDL $1, BX		// i++
    
    E1:	CMPL BX, BP		// i < n
    	JL L1
    
    	NEGL DX
    	MOVL DX, c+36(FP)
    	RET
    
    
    // func subVV(z, x, y []Word) (c Word)
    // (same as addVV except for SBBL instead of ADCL and label names)
    TEXT ·subVV(SB),NOSPLIT,$0
    	MOVL z+0(FP), DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/math/big/arith_arm.s

    	MOVW	z+0(FP), R1
    	MOVW	z_len+4(FP), R4
    	MOVW	x+12(FP), R2
    	MOVW	y+24(FP), R3
    	ADD	R4<<2, R1, R4
    	B E1
    L1:
    	MOVW.P	4(R2), R5
    	MOVW.P	4(R3), R6
    	ADC.S	R6, R5
    	MOVW.P	R5, 4(R1)
    E1:
    	TEQ	R1, R4
    	BNE L1
    
    	MOVW	$0, R0
    	MOVW.CS	$1, R0
    	MOVW	R0, c+36(FP)
    	RET
    
    
    // func subVV(z, x, y []Word) (c Word)
    // (same as addVV except for SBC instead of ADC and label names)
    TEXT ·subVV(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_ppc64le.s

    #ifdef BYTESWAP_DATA
    	MOVD    $·byteswapcons(SB),R3
    	LVX	(R3),byteswap
    #endif
    
    	CMPU	R5,$256		// length of bytes
    	BLT	short
    
    	RLDICR	$0,R5,$56,R6 // chunk to process
    
    	// First step for larger sizes
    l1:	MOVD	$32768,R7
    	MOVD	R7,R9
    	CMP	R6,R7   // compare R6, R7 (MAX SIZE)
    	BGT	top	// less than MAX, just do remainder
    	MOVD	R6,R7
    top:
    	SUB	R7,R6,R6
    
    	// mainloop does 128 bytes at a time
    	SRD	$7,R7
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/strconv/ftoaryu.go

    	if q < 0 {
    		// Inverse powers of ten must be rounded up.
    		pow[0] += 1
    	}
    	e2 += mulByLog10Log2(q) - 127 + 119
    
    	// long multiplication
    	l1, l0 := bits.Mul64(m, pow[0])
    	h1, h0 := bits.Mul64(m, pow[1])
    	mid, carry := bits.Add64(l1, h0, 0)
    	h1 += carry
    	return h1<<9 | mid>>55, e2, mid<<9 == 0 && l0 == 0
    }
    
    func divisibleByPower5(m uint64, k int) bool {
    	if m == 0 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc_64bit.go

    )
    
    const (
    	// The number of levels in the radix tree.
    	summaryLevels = 5
    
    	// Constants for testing.
    	pageAlloc32Bit = 0
    	pageAlloc64Bit = 1
    
    	// Number of bits needed to represent all indices into the L1 of the
    	// chunks map.
    	//
    	// See (*pageAlloc).chunks for more details. Update the documentation
    	// there should this number change.
    	pallocChunksL1Bits = 13
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"'%b %b %b'.format([7, 8, 9]) == '111 1000 1001'": 3,
    			},
    		},
    		{name: "escaped strings",
    			obj:    objs("l1\nl2", "l1\nl2"),
    			schema: schemas(stringType, stringType),
    			expectCost: map[string]int64{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "'l1\\nl2'"): 11,
    				"self.val1 == '''l1\nl2'''": 3,
    			},
    		},
    		{name: "bytes",
    			obj:    objs("QUI=", "QUI="),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  8. src/log/slog/logger_test.go

    func TestAttrs(t *testing.T) {
    	check := func(got []Attr, want ...Attr) {
    		t.Helper()
    		if !attrsEqual(got, want) {
    			t.Errorf("got %v, want %v", got, want)
    		}
    	}
    
    	l1 := New(&captureHandler{}).With("a", 1)
    	l2 := New(l1.Handler()).With("b", 2)
    	l2.Info("m", "c", 3)
    	h := l2.Handler().(*captureHandler)
    	check(h.attrs, Int("a", 1), Int("b", 2))
    	check(attrsSlice(h.r), Int("c", 3))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  10. test/escape2.go

    }
    
    // a harmless forward jump
    func foo122() {
    	var i *int
    
    	goto L1
    L1:
    	i = new(int) // ERROR "new\(int\) does not escape$"
    	_ = i
    }
    
    // a backward jump, increases loopdepth
    func foo123() {
    	var i *int
    
    L1:
    	i = new(int) // ERROR "new\(int\) escapes to heap$"
    
    	goto L1
    	_ = i
    }
    
    func foo124(x **int) { // ERROR "x does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top