Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for blek (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/go/doc/comment/markdown.go

    				out.WriteString(" ")
    				out.WriteString(n)
    				out.WriteString(". ")
    			} else {
    				out.WriteString("  - ") // SP SP - SP
    			}
    			for i, blk := range item.Content {
    				const fourSpace = "    "
    				if i > 0 {
    					out.WriteString("\n" + fourSpace)
    				}
    				p.text(out, blk.(*Paragraph).Text)
    				out.WriteString("\n")
    			}
    		}
    	}
    }
    
    // text prints the text sequence x to out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata_test.go

    			dumpTo(out, indent, def)
    		}
    
    	case *LinkDef:
    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, blk)
    		}
    
    	case *Heading:
    		fmt.Fprintf(out, "Heading")
    		dumpTo(out, indent+1, x.Text)
    
    	case *List:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_ppc64x.s

    	ADD	$64,R6,R6	// increment to next 64 bytes of B
    	BDNZ	cmp64_loop
    	BC	$12,2,LR	// beqlr
    
    	// Finish out tail with minimal overlapped checking.
    	// Note, 0 tail is handled by beqlr above.
    	BLE	CR1,cmp64_tail_gt0
    	BLE	CR2,cmp64_tail_gt16
    	BLE	CR3,cmp64_tail_gt32
    
    cmp64_tail_gt48: // 49 - 63 B
    	LXVD2X	(R0)(R5),V3
    	LXVD2X	(R0)(R6),V4
    	VCMPEQUDCC	V3,V4,V1
    	BGE	CR6,different
    
    	LXVD2X	(R5)(R10),V3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/archive/tar/reader_test.go

    		// Write the initial GNU header.
    		var blk block
    		gnu := blk.toGNU()
    		sparse := gnu.sparse()
    		copy(gnu.realSize(), size)
    		sps = populateSparseMap(sparse, sps)
    		if format != FormatUnknown {
    			blk.setFormat(format)
    		}
    		out = append(out, blk[:]...)
    
    		// Write extended sparse blocks.
    		for len(sps) > 0 {
    			var blk block
    			sps = populateSparseMap(blk.toSparse(), sps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  9. src/internal/bytealg/index_ppc64x.s

    	BLE        index2to16next_p10        // If at end, then not found
    	BR         notfound  // go to remainder loop
    #else
    	ADD     R3, R4, R9         // End of string
    	SUB     R7, R9, R9         // Number of bytes left
    	ANDCC   $15, R7, R10       // 16 byte offset
    	ADD     R10, R9, R11       // offset + len
    	CMP     R11, $16           // >= 16?
    	BLE     short              // Does not cross 16 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/ppc64.go

    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    )
    
    func jumpPPC64(word string) bool {
    	switch word {
    	case "BC", "BCL", "BEQ", "BGE", "BGT", "BL", "BLE", "BLT", "BNE", "BR", "BVC", "BVS", "BDNZ", "BDZ", "CALL", "JMP":
    		return true
    	}
    	return false
    }
    
    // IsPPC64CMP reports whether the op (as defined by an ppc64.A* constant) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top