Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for mysa (0.11 sec)

  1. src/runtime/memclr_mips64x.s

    // func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr)
    TEXT runtime·memclrNoHeapPointers(SB),NOSPLIT,$0-16
    	MOVV	ptr+0(FP), R1
    	MOVV	n+8(FP), R2
    	ADDV	R1, R2, R4
    
    	// if less than 16 bytes or no MSA, do words check
    	SGTU	$16, R2, R3
    	BNE	R3, no_msa
    	MOVBU	internal∕cpu·MIPS64X+const_offsetMIPS64XHasMSA(SB), R3
    	BEQ	R3, R0, no_msa
    
    	VMOVB	$0, W0
    
    	SGTU	$128, R2, R3
    	BEQ	R3, msa_large
    
    	AND	$15, R2, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. test/copy.go

    var output64 = make([]uint64, N)
    var inputS string
    var outputS = make([]uint8, N)
    
    type my8 []uint8
    type my16 []uint16
    type my32 []uint32
    type my32b []uint32
    type my64 []uint64
    type myS string
    
    func u8(i int) uint8 {
    	i = 'a' + i%26
    	return uint8(i)
    }
    
    func u16(ii int) uint16 {
    	var i = uint16(ii)
    	i = 'a' + i%26
    	i |= i << 8
    	return i
    }
    
    func u32(ii int) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  3. docs/pl/docs/features.md

    * Automatyczna dokumentacja modelu danych za pomocą <a href="https://json-schema.org/" class="external-link" target="_blank"><strong>JSON Schema</strong></a> (ponieważ OpenAPI bazuje na JSON Schema).
    * Zaprojektowane z myślą o zgodności z powyższymi standardami zamiast dodawania ich obsługi po fakcie.
    * Możliwość automatycznego **generowania kodu klienta** w wielu językach.
    
    ### Automatyczna dokumentacja
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/asm/internal/asm/testdata/mips64.s

    	NEGW	R1, R2 // 00011023
    	NEGV	R1, R2 // 0001102f
    
    	WSBH	R1, R2 // 7c0110a0
    	DSBH	R1, R2 // 7c0110a4
    	DSHD	R1, R2 // 7c011164
    
    	SEB	R1, R2 // 7c011420
    	SEH	R1, R2 // 7c011620
    
    	RET
    
    // MSA VMOVI
    	VMOVB	$511, W0   // 7b0ff807
    	VMOVH	$24, W23   // 7b20c5c7
    	VMOVW	$-24, W15  // 7b5f43c7
    	VMOVD	$-511, W31 // 7b700fc7
    
    	VMOVB	(R0), W8       // 78000220
    	VMOVB	511(R3), W0    // 79ff1820
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/asm0.go

    	}
    	return false
    }
    
    // MSA Two-bit Data Format Field Encoding
    func (c *ctxt0) twobitdf(a obj.As) uint32 {
    	switch a {
    	case AVMOVB:
    		return 0
    	case AVMOVH:
    		return 1
    	case AVMOVW:
    		return 2
    	case AVMOVD:
    		return 3
    	default:
    		c.ctxt.Diag("unsupported data format %v", a)
    	}
    	return 0
    }
    
    // MSA Load/Store offset have to be multiple of size of data format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    		gnuattributes.AddUint8(1)                 // 1:file, 2: section, 3: symbol, 1 here
    		gnuattributes.AddUint32(ctxt.Arch, 7)     // tag length, including tag, 7 here
    		gnuattributes.AddUint8(4)                 // 4 for FP, 8 for MSA
    		if buildcfg.GOMIPS == "softfloat" {
    			gnuattributes.AddUint8(MIPS_FPABI_SOFT)
    		} else {
    			// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    			//       It is not for 'ANY'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/_aws/fess.json

    "olarak", "oldu", "olduğu", "olduğunu", "olduklarını", "olmadı", "olmadığı", "olmak", "olması", "olmayan", "olmaz", "olsa", "olsun", "olup", "olur", "olursa", "oluyor", "on", "ona", "ondan", "onlar", "onlardan", "onları", "onların", "onu", "onun", "otuz", "oysa", "öyle", "pek", "rağmen", "sadece", "sanki", "sekiz", "seksen", "sen", "senden", "seni", "senin", "siz", "sizden", "sizi", "sizin", "şey", "şeyden", "şeyi", "şeyler", "şöyle", "şu", "şuna", "şunda", "şundan", "şunları", "şunu", "tarafından", "trilyon",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/_cloud/fess.json

    "olarak", "oldu", "olduğu", "olduğunu", "olduklarını", "olmadı", "olmadığı", "olmak", "olması", "olmayan", "olmaz", "olsa", "olsun", "olup", "olur", "olursa", "oluyor", "on", "ona", "ondan", "onlar", "onlardan", "onları", "onların", "onu", "onun", "otuz", "oysa", "öyle", "pek", "rağmen", "sadece", "sanki", "sekiz", "seksen", "sen", "senden", "seni", "senin", "siz", "sizden", "sizi", "sizin", "şey", "şeyden", "şeyi", "şeyler", "şöyle", "şu", "şuna", "şunda", "şundan", "şunları", "şunu", "tarafından", "trilyon",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    lezajsk.pl
    limanowa.pl
    lomza.pl
    lowicz.pl
    lubin.pl
    lukow.pl
    malbork.pl
    malopolska.pl
    mazowsze.pl
    mazury.pl
    mielec.pl
    mielno.pl
    mragowo.pl
    naklo.pl
    nowaruda.pl
    nysa.pl
    olawa.pl
    olecko.pl
    olkusz.pl
    olsztyn.pl
    opoczno.pl
    opole.pl
    ostroda.pl
    ostroleka.pl
    ostrowiec.pl
    ostrowwlkp.pl
    pila.pl
    pisz.pl
    podhale.pl
    podlasie.pl
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top