Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 527 for Dword2 (0.54 sec)

  1. .idea/dictionaries/max.xml

    <component name="ProjectDictionaryState">
      <dictionary name="max">
        <words>
          <w>classfiles</w>
          <w>codegen</w>
          <w>kotlin</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jan 26 16:27:56 UTC 2012
    - 186 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/wasm/a.out.go

    	// However, it is not allowed to switch goroutines while inside of an ACALLNORESUME call.
    	ACALLNORESUME
    
    	ARETUNWIND
    
    	AMOVB
    	AMOVH
    	AMOVW
    	AMOVD
    
    	AWORD
    	ALAST
    )
    
    const (
    	REG_NONE = 0
    )
    
    const (
    	// globals
    	REG_SP = obj.RBaseWasm + iota // SP is currently 32-bit, until 64-bit memory operations are available
    	REG_CTXT
    	REG_g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. .idea/dictionaries/dzharkov.xml

    <component name="ProjectDictionaryState">
      <dictionary name="dzharkov">
        <words>
          <w>checkcast</w>
          <w>coroutine</w>
          <w>experimentalities</w>
          <w>experimentality</w>
          <w>insn</w>
          <w>liveness</w>
          <w>parameterless</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 12 06:48:13 UTC 2018
    - 300 bytes
    - Viewed (0)
  4. .idea/dictionaries/4u7.xml

    <component name="ProjectDictionaryState">
      <dictionary name="4u7">
        <words>
          <w>aarch</w>
          <w>bintray</w>
          <w>cacheability</w>
          <w>cacheable</w>
          <w>cidr</w>
          <w>fastutil</w>
          <w>foldable</w>
          <w>instrumentator</w>
          <w>jdks</w>
          <w>jsshell</w>
          <w>proguarded</w>
          <w>protobuf</w>
          <w>redirector</w>
          <w>remapper</w>
          <w>sonatype</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 16 12:19:01 UTC 2023
    - 498 bytes
    - Viewed (0)
  5. .idea/dictionaries/valentin.xml

    <component name="ProjectDictionaryState">
      <dictionary name="valentin">
        <words>
          <w>decapitalize</w>
          <w>delegator</w>
          <w>elipsis</w>
          <w>funs</w>
          <w>immediates</w>
          <w>initializers</w>
          <w>inserter</w>
          <w>negatable</w>
          <w>pparent</w>
          <w>precheck</w>
          <w>prioritizer</w>
          <w>processings</w>
          <w>rbrace</w>
          <w>rbracket</w>
          <w>renderers</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 13 14:46:16 UTC 2016
    - 605 bytes
    - Viewed (0)
  6. .idea/dictionaries/svyatoslav_kuzmich.xml

    <component name="ProjectDictionaryState">
      <dictionary name="svyatoslav.kuzmich">
        <words>
          <w>anyfunc</w>
          <w>copysign</w>
          <w>eqref</w>
          <w>exnref</w>
          <w>externref</w>
          <w>funcref</w>
          <w>jetbrains</w>
          <w>kotlinx</w>
          <w>ktor</w>
          <w>optref</w>
          <w>popcnt</w>
          <w>rotl</w>
          <w>rotr</w>
          <w>simd</w>
          <w>sqrt</w>
          <w>testsuite</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 12 05:42:01 UTC 2021
    - 594 bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_windows_amd64.c

    #include <errno.h>
    #include "libcgo.h"
    #include "libcgo_windows.h"
    
    static void threadentry(void*);
    static void (*setg_gcc)(void*);
    static DWORD *tls_g;
    
    void
    x_cgo_init(G *g, void (*setg)(void*), void **tlsg, void **tlsbase)
    {
    	setg_gcc = setg;
    	tls_g = (DWORD *)tlsg;
    }
    
    
    void
    _cgo_sys_thread_start(ThreadStart *ts)
    {
    	_cgo_beginthread(threadentry, ts);
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:28 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/runtime/asm_ppc64x.h

    // is not needed.
    #ifdef GOOS_linux
    #ifdef GOARCH_ppc64
    #define GO_PPC64X_HAS_FUNCDESC
    #define DEFINE_PPC64X_FUNCDESC(funcname, localfuncname)	\
    	TEXT	funcname(SB),NOSPLIT|NOFRAME,$0		\
    		DWORD	$localfuncname(SB)		\
    		DWORD	$0				\
    		DWORD	$0
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/math/big/arith_decl_pure.go

    		fn = subVWlarge
    	}
    	return fn(z, x, y)
    }
    
    func shlVU(z, x []Word, s uint) (c Word) {
    	return shlVU_g(z, x, s)
    }
    
    func shrVU(z, x []Word, s uint) (c Word) {
    	return shrVU_g(z, x, s)
    }
    
    func mulAddVWW(z, x []Word, y, r Word) (c Word) {
    	return mulAddVWW_g(z, x, y, r)
    }
    
    func addMulVVW(z, x []Word, y Word) (c Word) {
    	return addMulVVW_g(z, x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/runtime/syscall_windows.go

    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    		return
    	}
    
    	// In the C ABI, we're already on a word boundary.
    	// Also, sub-word-sized fastcall register arguments
    	// are stored to the least-significant bytes of the
    	// argument word and all supported Windows
    	// architectures are little endian, so srcStackOffset
    	// is already pointing to the right place for smaller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top