Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for BLE (0.17 sec)

  1. src/main/resources/fess_indices/fess/no/stopwords.txt

    vi
    min
    mitt
    ha
    hadde
    hun
    nå
    over
    da
    ved
    fra
    du
    ut
    sin
    dem
    oss
    opp
    man
    kan
    hans
    hvor
    eller
    hva
    skal
    selv
    sjøl
    her
    alle
    vil
    bli
    ble
    blei
    blitt
    kunne
    inn
    når
    være
    kom
    noen
    noe
    ville
    dere
    som
    deres
    kun
    ja
    etter
    ned
    skulle
    denne
    for
    deg
    si
    sine
    sitt
    mot
    å
    meget
    hvorfor
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 994 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/s390x.go

    package arch
    
    import (
    	"cmd/internal/obj/s390x"
    )
    
    func jumpS390x(word string) bool {
    	switch word {
    	case "BRC",
    		"BC",
    		"BCL",
    		"BEQ",
    		"BGE",
    		"BGT",
    		"BL",
    		"BLE",
    		"BLEU",
    		"BLT",
    		"BLTU",
    		"BNE",
    		"BR",
    		"BVC",
    		"BVS",
    		"BRCT",
    		"BRCTG",
    		"CMPBEQ",
    		"CMPBGE",
    		"CMPBGT",
    		"CMPBLE",
    		"CMPBLT",
    		"CMPBNE",
    		"CMPUBEQ",
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 17 14:55:25 GMT 2019
    - 1.2K bytes
    - Viewed (0)
  3. 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
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Sep 07 20:53:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/arch/arm.go

    	"BHS":  true,
    	"BCC":  true,
    	"BLO":  true,
    	"BMI":  true,
    	"BPL":  true,
    	"BVS":  true,
    	"BVC":  true,
    	"BHI":  true,
    	"BLS":  true,
    	"BGE":  true,
    	"BLT":  true,
    	"BGT":  true,
    	"BLE":  true,
    	"CALL": true,
    	"JMP":  true,
    }
    
    func jumpArm(word string) bool {
    	return armJump[word]
    }
    
    // IsARMCMP reports whether the op (as defined by an arm.A* constant) is
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/arm64.go

    	"BHS":   true,
    	"BCC":   true,
    	"BLO":   true,
    	"BMI":   true,
    	"BPL":   true,
    	"BVS":   true,
    	"BVC":   true,
    	"BHI":   true,
    	"BLS":   true,
    	"BGE":   true,
    	"BLT":   true,
    	"BGT":   true,
    	"BLE":   true,
    	"CALL":  true,
    	"CBZ":   true,
    	"CBZW":  true,
    	"CBNZ":  true,
    	"CBNZW": true,
    	"JMP":   true,
    	"TBNZ":  true,
    	"TBZ":   true,
    
    	// ADR isn't really a jump, but it takes a PC or label reference,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/riscv64.s

    	// Branch pseudo-instructions
    	BEQZ	X5, 2(PC)				// 63840200
    	BGEZ	X5, 2(PC)				// 63d40200
    	BGT	X5, X6, 2(PC)				// 63445300
    	BGTU	X5, X6, 2(PC)				// 63645300
    	BGTZ	X5, 2(PC)				// 63445000
    	BLE	X5, X6, 2(PC)				// 63545300
    	BLEU	X5, X6, 2(PC)				// 63745300
    	BLEZ	X5, 2(PC)				// 63545000
    	BLTZ	X5, 2(PC)				// 63c40200
    	BNEZ	X5, 2(PC)				// 63940200
    
    	// Set pseudo-instructions
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	BGE 0(PC)                       // 40800000
    	BGE CR2,0(PC)                   // 40880000
    	BGT 4(PC)                       // 41810010
    	BGT CR3,4(PC)                   // 418d0010
    	BLE 0(PC)                       // 40810000
    	BLE CR4,0(PC)                   // 40910000
    	BLT 0(PC)                       // 41800000
    	BLT CR5,0(PC)                   // 41940000
    	BNE 0(PC)                       // 40820000
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/arm.s

    	BHI	6(PC)  // BHI 6(PC)    // 0400008a
    	BLS	5(PC)  // BLS 5(PC)    // 0300009a
    	BGE	4(PC)  // BGE 4(PC)    // 020000aa
    	BLT	3(PC)  // BLT 3(PC)    // 010000ba
    	BGT	2(PC)  // BGT 2(PC)    // 000000ca
    	BLE	1(PC)  // BLE 1(PC)    // ffffffda
    	ADD	$0, R0, R0
    	B	-1(PC) // JMP -1(PC)   // fdffffea
    	B	-2(PC) // JMP -2(PC)   // fcffffea
    	B	-3(PC) // JMP -3(PC)   // fbffffea
    	B	-4(PC) // JMP -4(PC)   // faffffea
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/s390x.s

    	SPM	R10                    // 04a0
    
    	BRC	$7, 0(PC)              // a7740000
    	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
    
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  10. 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 {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
Back to top