Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,433 for p$ (0.03 sec)

  1. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+208(SB)/8,$0x00000001b5334592
    DATA ·IEEEConst+216(SB)/8,$0x00000001f8cc6582
    
    	/* x^246848 mod p(x), x^246784 mod p(x) */
    DATA ·IEEEConst+224(SB)/8,$0x000000011f8ee1b4
    DATA ·IEEEConst+232(SB)/8,$0x000000008631ddf0
    
    	/* x^245824 mod p(x), x^245760 mod p(x) */
    DATA ·IEEEConst+240(SB)/8,$0x000000006252e632
    DATA ·IEEEConst+248(SB)/8,$0x000000007e5a76d0
    
    	/* x^244800 mod p(x), x^244736 mod p(x) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/obj9.go

    			// assemble into a single addi.
    			is := p.From.Offset>>16 + (p.From.Offset>>15)&1
    			i := int64(int16(p.From.Offset))
    			p.As = AADDIS
    			p.From.Offset = is
    			q := obj.Appendp(p, c.newprog)
    			q.As = AADD
    			q.From.SetConst(i)
    			q.Reg = p.To.Reg
    			q.To = p.To
    			p = q
    		}
    	case AOR:
    		if p.From.Type == obj.TYPE_CONST && uint64(p.From.Offset)&0xFFFFFFFF0000FFFF == 0 && p.From.Offset != 0 {
    			p.As = AORIS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. src/image/image.go

    		return color.Alpha{}
    	}
    	i := p.PixOffset(x, y)
    	return color.Alpha{p.Pix[i]}
    }
    
    // PixOffset returns the index of the first element of Pix that corresponds to
    // the pixel at (x, y).
    func (p *Alpha) PixOffset(x, y int) int {
    	return (y-p.Rect.Min.Y)*p.Stride + (x-p.Rect.Min.X)*1
    }
    
    func (p *Alpha) Set(x, y int, c color.Color) {
    	if !(Point{x, y}.In(p.Rect)) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/parse.go

    		}
    		p.addr = append(p.addr, addr)
    	}
    	if p.isJump {
    		p.asmJump(op, cond, p.addr)
    		return
    	}
    	p.asmInstruction(op, cond, p.addr)
    }
    
    func (p *Parser) pseudo(word string, operands [][]lex.Token) bool {
    	switch word {
    	case "DATA":
    		p.asmData(operands)
    	case "FUNCDATA":
    		p.asmFuncData(operands)
    	case "GLOBL":
    		p.asmGlobl(operands)
    	case "PCDATA":
    		p.asmPCData(operands)
    	case "PCALIGN":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/inference2.go

    // from assigning the functions.
    
    package p
    
    func f1[P any](P)        {}
    func f2[P any]() P       { var x P; return x }
    func f3[P, Q any](P) Q   { var x Q; return x }
    func f4[P any](P, P)     {}
    func f5[P any](P) []P    { return nil }
    func f6[P any](int) P    { var x P; return x }
    func f7[P any](P) string { return "" }
    
    // initialization expressions
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 18:44:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    			p.setPos(x.Rparen)
    			p.print(token.RPAREN)
    		}
    
    	case *ast.SelectorExpr:
    		p.selectorExpr(x, depth, false)
    
    	case *ast.TypeAssertExpr:
    		p.expr1(x.X, token.HighestPrec, depth)
    		p.print(token.PERIOD)
    		p.setPos(x.Lparen)
    		p.print(token.LPAREN)
    		if x.Type != nil {
    			p.expr(x.Type)
    		} else {
    			p.print(token.TYPE)
    		}
    		p.setPos(x.Rparen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/image/ycbcr.go

    }
    
    func (p *YCbCr) YCbCrAt(x, y int) color.YCbCr {
    	if !(Point{x, y}.In(p.Rect)) {
    		return color.YCbCr{}
    	}
    	yi := p.YOffset(x, y)
    	ci := p.COffset(x, y)
    	return color.YCbCr{
    		p.Y[yi],
    		p.Cb[ci],
    		p.Cr[ci],
    	}
    }
    
    // YOffset returns the index of the first element of Y that corresponds to
    // the pixel at (x, y).
    func (p *YCbCr) YOffset(x, y int) int {
    	return (y-p.Rect.Min.Y)*p.YStride + (x - p.Rect.Min.X)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/internal/src/xpos.go

    func (p XPos) After(q XPos) bool {
    	n, m := p.index, q.index
    	return n > m || n == m && p.lico > q.lico
    }
    
    // WithNotStmt returns the same location to be marked with DWARF is_stmt=0
    func (p XPos) WithNotStmt() XPos {
    	p.lico = p.lico.withNotStmt()
    	return p
    }
    
    // WithDefaultStmt returns the same location with undetermined is_stmt
    func (p XPos) WithDefaultStmt() XPos {
    	p.lico = p.lico.withDefaultStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalarmult_test.go

    	var p Point
    	p.ScalarMult(dalekScalar, B)
    	if dalekScalarBasepoint.Equal(&p) != 1 {
    		t.Error("Scalar mul does not match dalek")
    	}
    	checkOnCurve(t, &p)
    }
    
    func TestBaseMultVsDalek(t *testing.T) {
    	var p Point
    	p.ScalarBaseMult(dalekScalar)
    	if dalekScalarBasepoint.Equal(&p) != 1 {
    		t.Error("Scalar mul does not match dalek")
    	}
    	checkOnCurve(t, &p)
    }
    
    func TestVarTimeDoubleBaseMultVsDalek(t *testing.T) {
    	var p Point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/plist.go

    	prevRestart := int64(0)
    	for p := prev.Link; p != nil; p, prev = p.Link, p {
    		if p.As == APCDATA && p.From.Offset == abi.PCDATA_UnsafePoint {
    			prevPcdata = p.To.Offset
    			continue
    		}
    		if prevPcdata == abi.UnsafePointUnsafe {
    			continue // already unsafe
    		}
    		if isUnsafePoint(p) {
    			q := ctxt.StartUnsafePoint(prev, newprog)
    			q.Pc = p.Pc
    			q.Link = p
    			// Advance to the end of unsafe point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top