Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for blek (0.07 sec)

  1. src/go/doc/comment/print.go

    				out.WriteString(" - ")
    			} else {
    				out.WriteString(item.Number)
    				out.WriteString(". ")
    			}
    			for i, blk := range item.Content {
    				const fourSpace = "    "
    				if i > 0 {
    					out.WriteString("\n" + fourSpace)
    				}
    				p.text(out, fourSpace, 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: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/anames.go

    	"ASRW",
    	"AT",
    	"BCC",
    	"BCS",
    	"BEQ",
    	"BFI",
    	"BFIW",
    	"BFM",
    	"BFMW",
    	"BFXIL",
    	"BFXILW",
    	"BGE",
    	"BGT",
    	"BHI",
    	"BHS",
    	"BIC",
    	"BICS",
    	"BICSW",
    	"BICW",
    	"BLE",
    	"BLO",
    	"BLS",
    	"BLT",
    	"BMI",
    	"BNE",
    	"BPL",
    	"BRK",
    	"BVC",
    	"BVS",
    	"CASAD",
    	"CASALB",
    	"CASALD",
    	"CASALH",
    	"CASALW",
    	"CASAW",
    	"CASB",
    	"CASD",
    	"CASH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/internal/bytealg/indexbyte_ppc64x.s

    	PCALIGN	$32
    	BEQ	notfound	// Is tail length 0? CR0 is set before entering loop64.
    
    	CMP	R4,$32		// Tail length >= 32, use cmp32 path.
    	CMP	R4,$16,CR1
    	BGE	cmp32
    
    	ADD	R8,R4,R9
    	ADD	$-16,R9
    	BLE	CR1,cmp64_tail_gt0
    
    cmp64_tail_gt16:	// Tail length 17 - 32
    	LXVD2X	(R0)(R8),V2
    	VCMPEQUBCC	V2,V1,V6
    	BNE	CR6,foundat0
    
    cmp64_tail_gt0:	// Tail length 1 - 16
    	MOVD	R9,R8
    	LXVD2X	(R0)(R9),V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. test/codegen/compare_and_branch.go

    		dummy()
    	}
    }
    
    // Signed 64-bit comparison with 1/-1 to comparison with 0.
    func si64x0(x chan int64) {
    	// riscv64:"BGTZ"
    	for <-x >= 1 {
    		dummy()
    	}
    
    	// riscv64:"BLEZ"
    	for <-x < 1 {
    		dummy()
    	}
    
    	// riscv64:"BLTZ"
    	for <-x <= -1 {
    		dummy()
    	}
    
    	// riscv64:"BGEZ"
    	for <-x > -1 {
    		dummy()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. src/math/pow_s390x.s

    	BR	L1
    L34:
    	FMOVD	8(R9), F4
    L19:
    	LTDBR	F6, F6
    	BLEU	L47
    L18:
    	WFMDB	V4, V5, V1
    	BR	L1
    L5:
    	RISBGZ	$33, $50, $63, R3, R3
    	WORD	$0xC23B4000	//alfi	%r3,1073741824
    	BYTE	$0x00
    	BYTE	$0x00
    	RLL	$24, R3, R3
    	ORW	$0x45000000, R3
    	BR	L2
    L45:
    	WFCEDBS	V0, V0, V4
    	BVS	L35
    	LTDBR	F0, F0
    	BLEU	L48
    	FMOVD	8(R9), F4
    L12:
    	MOVW	R2, R6
    	CMPBLT	R6, $0, L19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/s390x.s

    	BNE	0(PC)                  // a7740000
    	BEQ	0(PC)                  // a7840000
    	BLT	0(PC)                  // a7440000
    	BLE	0(PC)                  // a7c40000
    	BGT	0(PC)                  // a7240000
    	BGE	0(PC)                  // a7a40000
    	BLTU	0(PC)                  // a7540000
    	BLEU	0(PC)                  // a7d40000
    
    	BRCT	R1, 0(PC)              // a7160000
    	BRCTG	R2, 0(PC)              // a7270000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. src/runtime/memclr_arm64.s

    	RET
    
    try_zva:
    	// Try using the ZVA feature to zero entire cache lines
    	// It is not meaningful to use ZVA if the block size is less than 64,
    	// so make sure that n is greater than or equal to 64
    	CMP	$63, R1
    	BLE	tail63
    
    	CMP	$128, R1
    	// Ensure n is at least 128 bytes, so that there is enough to copy after
    	// alignment.
    	BLT	no_zva
    	// Check if ZVA is allowed from user code, and if so get the block size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. src/internal/bytealg/count_ppc64x.s

    	BEQ	tail_0
    
    #ifdef GOPPC64_power10
    	SRD	$3, R18, R18	// Fix the vector loop count before counting the tail on P10.
    
    tail:	// Count the last 0 - 31 bytes.
    	CMP	R4, $16
    	BLE	small_tail_p10
    	LXV	0(R3), V0
    	VCMPEQUB V0, V1, V0
    	VCNTMBB	V0, $1, R14	// Sum the value of bit 0 of each byte of the compare into R14.
    	SRD	$56, R14, R14	// The result of VCNTMBB is shifted. Unshift it.
    	ADD	R14, R18, R18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/anames.go

    	"ADDEVCC",
    	"ADDEV",
    	"ADDZE",
    	"ADDZECC",
    	"ADDZEVCC",
    	"ADDZEV",
    	"ADDEX",
    	"AND",
    	"ANDCC",
    	"ANDN",
    	"ANDNCC",
    	"ANDISCC",
    	"BC",
    	"BCL",
    	"BEQ",
    	"BGE",
    	"BGT",
    	"BLE",
    	"BLT",
    	"BNE",
    	"BVC",
    	"BVS",
    	"BDNZ",
    	"BDZ",
    	"CMP",
    	"CMPU",
    	"CMPEQB",
    	"CNTLZW",
    	"CNTLZWCC",
    	"CRAND",
    	"CRANDN",
    	"CREQV",
    	"CRNAND",
    	"CRNOR",
    	"CROR",
    	"CRORN",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. test/codegen/floats.go

    	return x*y - z
    }
    
    func FusedSub64_b(x, y, z float64) float64 {
    	// arm64:"FMSUBD"
    	// riscv64:"FNMSUBD\t"
    	return z - x*y
    }
    
    func Cmp(f float64) bool {
    	// arm64:"FCMPD","(BGT|BLE|BMI|BPL)",-"CSET\tGT",-"CBZ"
    	return f > 4 || f < -4
    }
    
    func CmpZero64(f float64) bool {
    	// s390x:"LTDBR",-"FCMPU"
    	return f <= 0
    }
    
    func CmpZero32(f float32) bool {
    	// s390x:"LTEBR",-"CEBR"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top