Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for L1 (0.02 sec)

  1. src/encoding/xml/marshal_test.go

    type LayerOne struct {
    	XMLName Name `xml:"l1"`
    
    	Value     *float64 `xml:"value,omitempty"`
    	*LayerTwo `xml:",omitempty"`
    }
    
    type LayerTwo struct {
    	ValueTwo *int `xml:"value_two,attr,omitempty"`
    }
    
    func TestMarshalZeroValue(t *testing.T) {
    	proofXml := `<l1><value>1.2345</value></l1>`
    	var l1 LayerOne
    	err := Unmarshal([]byte(proofXml), &l1)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. src/go/types/resolver_test.go

    		}
    		`,
    		`
    		package p
    		type S struct{}
    		func (T) _() {}
    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/vcs.go

    			return []string{"hg", "branches", "-c", "-q"}
    		},
    		branchRE:      re(`(?m)^[^\n]+$`),
    		badLocalRevRE: re(`(?m)^(tip)$`),
    		statLocal: func(rev, remote string) []string {
    			return []string{"hg", "log", "-l1", "-r", rev, "--template", "{node} {date|hgdate} {tags}"}
    		},
    		parseStat: hgParseStat,
    		fetch:     []string{"hg", "pull", "-f"},
    		latest:    "tip",
    		readFile: func(rev, file, remote string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// The number of bits in a heap address, the size of heap
    	// arenas, and the L1 and L2 arena map sizes are related by
    	//
    	//   (1 << addr bits) = arena size * L1 entries * L2 entries
    	//
    	// Currently, we balance these as follows:
    	//
    	//       Platform  Addr bits  Arena size  L1 entries   L2 entries
    	// --------------  ---------  ----------  ----------  -----------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/go/printer/printer_test.go

    			t.Errorf("got ident %s; want %s", i2.Name, i1.Name)
    		}
    
    		// here we care about the relative (line-directive adjusted) positions
    		l1 := fset.Position(i1.Pos()).Line
    		l2 := fset.Position(i2.Pos()).Line
    		if l2 != l1 {
    			t.Errorf("got line %d; want %d for %s", l2, l1, i1.Name)
    		}
    	}
    
    	if t.Failed() {
    		t.Logf("\n%s", buf.Bytes())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -		      }							      \
    -		    __result; }))
    -
    -# define __strcmp_cg(s1, s2, l1) \
    -  (__extension__ ({ const unsigned char *__s2 =				      \
    -		      (const unsigned char *) (const char *) (s2);	      \
    -		    int __result =					      \
    -		      (((const unsigned char *) (const char *) (s1))[0]	      \
    -		       - __s2[0]);					      \
    -		    if (l1 > 0 && __result == 0)			      \
    -		      {							      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top