Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mysa (0.44 sec)

  1. src/cmd/internal/obj/mips/a.out.go

    /*
     * mips 64
     */
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 32 /* number of general registers */
    	NFREG  = 32 /* number of floating point registers */
    	NWREG  = 32 /* number of MSA registers */
    )
    
    const (
    	REG_R0 = obj.RBaseMIPS + iota // must be a multiple of 32
    	REG_R1
    	REG_R2
    	REG_R3
    	REG_R4
    	REG_R5
    	REG_R6
    	REG_R7
    	REG_R8
    	REG_R9
    	REG_R10
    	REG_R11
    	REG_R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_mips64x.go

    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    package cpu
    
    const cacheLineSize = 32
    
    func initOptions() {
    	options = []option{
    		{Name: "msa", Feature: &MIPS64X.HasMSA},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 320 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("ファ", new String[] { "fa" });
            map.put("フィ", new String[] { "fi" });
            map.put("フェ", new String[] { "fe" });
            map.put("フォ", new String[] { "fo" });
    
            map.put("ミャ", new String[] { "mya" });
            map.put("ミュ", new String[] { "myu" });
            map.put("ミョ", new String[] { "myo" });
    
            map.put("リャ", new String[] { "rya" });
            map.put("リュ", new String[] { "ryu" });
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top