Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testBLEU (0.16 sec)

  1. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

    		{"BLE", -1, 0, testBLE, testGoBLE, true},
    		{"BLE", 1, 0, testBLE, testGoBLE, false},
    		{"BLEU", 0, 1, testBLEU, testGoBLEU, true},
    		{"BLEU", 0, 0, testBLEU, testGoBLEU, true},
    		{"BLEU", 0, -1, testBLEU, testGoBLEU, true},
    		{"BLEU", -1, 0, testBLEU, testGoBLEU, false},
    		{"BLEU", 1, 0, testBLEU, testGoBLEU, false},
    		{"BLT", 0, 1, testBLT, testGoBLT, true},
    		{"BLT", 0, 0, testBLT, testGoBLT, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.s

    // func testBLE(a, b int64) (r bool)
    TEXT ·testBLE(SB),NOSPLIT,$0-17
    	MOV	a+0(FP), X5
    	MOV	b+8(FP), X6
    	MOV	$1, X7
    	BLE	X5, X6, b
    	MOV	$0, X7
    b:
    	MOV	X7, r+16(FP)
    	RET
    
    // func testBLEU(a, b int64) (r bool)
    TEXT ·testBLEU(SB),NOSPLIT,$0-17
    	MOV	a+0(FP), X5
    	MOV	b+8(FP), X6
    	MOV	$1, X7
    	BLEU	X5, X6, b
    	MOV	$0, X7
    b:
    	MOV	X7, r+16(FP)
    	RET
    
    // func testBLEZ(a int64) (r bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top