Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for blek (0.04 sec)

  1. src/math/big/rat.go

    		Emin  = 1 - Ebias
    		Emax  = Ebias
    	)
    
    	// TODO(adonovan): specialize common degenerate cases: 1.0, integers.
    	alen := a.bitLen()
    	if alen == 0 {
    		return 0, true
    	}
    	blen := b.bitLen()
    	if blen == 0 {
    		panic("division by zero")
    	}
    
    	// 1. Left-shift A or B such that quotient A/B is in [1<<Msize1, 1<<(Msize2+1)
    	// (Msize2 bits if A < B when they are left-aligned, Msize2+1 bits if A >= B).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/validation/missing-report-version-pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>foo</artifactId>
      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-from-pluginManagement-plugin</artifactId>
              <version>1.0</version>
            </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 20 21:10:31 UTC 2013
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/anames.go

    package loong64
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ABSD",
    	"ABSF",
    	"ADD",
    	"ADDD",
    	"ADDF",
    	"ADDU",
    	"ADDW",
    	"AND",
    	"BEQ",
    	"BGEZ",
    	"BLEZ",
    	"BGTZ",
    	"BLTZ",
    	"BFPF",
    	"BFPT",
    	"BNE",
    	"BREAK",
    	"CLO",
    	"CLZ",
    	"CMPEQD",
    	"CMPEQF",
    	"CMPGED",
    	"CMPGEF",
    	"CMPGTD",
    	"CMPGTF",
    	"LU12IW",
    	"LU32ID",
    	"LU52ID",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/math/log_s390x.s

    	RISBGN	$0, $15, $48, R2, R6
    	RISBGN	$16, $31, $32, R2, R8
    	MOVW	R1, R7
    	CMPBGT	R7, $22, L17
    	LTDBR	F0, F0
    	MOVD	$·logx43f<>+0(SB), R1
    	FMOVD	0(R1), F2
    	BLEU	L3
    	MOVH	$0x8005, R12
    	MOVH	$0x8405, R0
    	BR	L15
    L7:
    	LTDBR	F0, F0
    	BLEU	L3
    L15:
    	FMUL	F2, F0
    	LGDR	F0, R1
    	SRAD	$48, R1, R1
    	SUBW	R1, R0, R2
    	SUBW	R1, R12, R3
    	BYTE	$0x18	//lr	%r4,%r2
    	BYTE	$0x42
    	ANDW	$0xFFFFFFF0, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/loong64.go

    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/loong64"
    )
    
    func jumpLoong64(word string) bool {
    	switch word {
    	case "BEQ", "BFPF", "BFPT", "BLTZ", "BGEZ", "BLEZ", "BGTZ", "BLT", "BLTU", "JIRL", "BNE", "BGE", "BGEU", "JMP", "JAL", "CALL":
    		return true
    	}
    	return false
    }
    
    // IsLoong64CMP reports whether the op (as defined by an loong64.A* constant) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/anames.go

    	"CMP",
    	"CMN",
    	"ORR",
    	"BIC",
    	"MVN",
    	"BEQ",
    	"BNE",
    	"BCS",
    	"BHS",
    	"BCC",
    	"BLO",
    	"BMI",
    	"BPL",
    	"BVS",
    	"BVC",
    	"BHI",
    	"BLS",
    	"BGE",
    	"BLT",
    	"BGT",
    	"BLE",
    	"MOVWD",
    	"MOVWF",
    	"MOVDW",
    	"MOVFW",
    	"MOVFD",
    	"MOVDF",
    	"MOVF",
    	"MOVD",
    	"CMPF",
    	"CMPD",
    	"ADDF",
    	"ADDD",
    	"SUBF",
    	"SUBD",
    	"MULF",
    	"MULD",
    	"NMULF",
    	"NMULD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 16 15:58:33 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arch.go

    	return word[0] == 'J' || word == "CALL" || strings.HasPrefix(word, "LOOP") || word == "XBEGIN"
    }
    
    func jumpRISCV(word string) bool {
    	switch word {
    	case "BEQ", "BEQZ", "BGE", "BGEU", "BGEZ", "BGT", "BGTU", "BGTZ", "BLE", "BLEU", "BLEZ",
    		"BLT", "BLTU", "BLTZ", "BNE", "BNEZ", "CALL", "JAL", "JALR", "JMP":
    		return true
    	}
    	return false
    }
    
    func jumpWasm(word string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  8. src/go/doc/comment/html.go

    					out.WriteString(n)
    					out.WriteString(`"`)
    					next = n
    				}
    				next = inc(next)
    			}
    			out.WriteString(">")
    			p.tight = !x.BlankBetween()
    			for _, blk := range item.Content {
    				p.block(out, blk)
    			}
    			p.tight = false
    		}
    		out.WriteString("</")
    		out.WriteString(kind)
    	}
    }
    
    // inc increments the decimal string s.
    // For example, inc("1199") == "1200".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm_test.go

    	fmt.Fprintln(buf, "BNE R5, R6, label18")
    	fmt.Fprintln(buf, "BGE R5, R6, label18")
    
    	fmt.Fprintln(buf, "BGEU R5, R6, label18")
    	fmt.Fprintln(buf, "BLTU R5, R6, label18")
    
    	fmt.Fprintln(buf, "BLEZ R5, label18")
    	fmt.Fprintln(buf, "BGEZ R5, label18")
    	fmt.Fprintln(buf, "BLTZ R5, label18")
    	fmt.Fprintln(buf, "BGTZ R5, label18")
    
    	fmt.Fprintln(buf, "BFPT label23")
    	fmt.Fprintln(buf, "BFPF label23")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:39:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/parse.go

    		println("closeBlock", len(p.stack)-1)
    	}
    	blk := b.builder.build(p)
    	if list, ok := blk.(*List); ok {
    		p.corner = p.corner || listCorner(list)
    		if p.TaskListItems {
    			p.lists = append(p.lists, list)
    		}
    	}
    	p.stack = p.stack[:len(p.stack)-1]
    	if len(p.stack) > 0 {
    		b := &p.stack[len(p.stack)-1]
    		b.inner = append(b.inner, blk)
    		// _ = b
    	} else {
    		p.root = blk.(*Document)
    	}
    	return blk
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top