Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 183 for qword (0.11 sec)

  1. src/cmd/asm/internal/arch/loong64.go

    // Loong64 (LoongArch64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/loong64"
    )
    
    func jumpLoong64(word string) bool {
    	switch word {
    	case "BEQ", "BFPF", "BFPT", "BLTZ", "BGEZ", "BLEZ", "BGTZ", "BLT", "BLTU", "JIRL", "BNE", "BGE", "BGEU", "JMP", "JAL", "CALL":
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/reflect/asm_amd64.s

    #include "go_asm.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    // whether the stack-allocated return space contains valid values for stack
    // scanning.
    //
    // The second local is an abi.RegArgs value whose offset is also known to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 01 22:33:29 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. src/math/log_s390x.s

    	WFMADB	V6, V2, V1, V2
    	FMOVD	0(R9), F1
    	WFMADB	V6, V4, V1, V4
    	FMOVD	8(R4), F1
    	WFMADB	V0, V2, V4, V2
    	LDGR	R8, F4
    	WFMADB	V6, V2, V0, V2
    	WORD	$0xED401000	//msdb	%f1,%f4,0(%r1)
    	BYTE	$0x10
    	BYTE	$0x1F
    	MOVD	·logxl2<>+0(SB), R1
    	WORD	$0xB3130001	//lcdbr	%f0,%f1
    	LDGR	R1, F4
    	WFMADB	V0, V4, V2, V0
    L1:
    	FMOVD	F0, ret+8(FP)
    	RET
    L3:
    	LTDBR	F0, F0
    	BEQ	L20
    	BGE	L1
    	BVS	L1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. src/math/sinh_s390x.s

    	FCMPU   F1, F0
    	BGT             sinhIsInf
    
    	MOVD    $sinhrodataL21<>+0(SB), R5
    	LTDBR	F0, F0
    	MOVD    sinhxinit<>+0(SB), R1
    	FMOVD   F0, F4
    	MOVD    R1, R3
    	BLTU    L19
    	FMOVD   F0, F2
    L2:
    	WORD    $0xED205010     //cdb %f2,.L22-.L21(%r5)
    	BYTE    $0x00
    	BYTE    $0x19
    	BGE     L15     //jnl   .L15
    	BVS     L15
    	WFCEDBS V2, V2, V0
    	BEQ     L20
    L12:
    	FMOVD   F4, F0
    	FMOVD   F0, ret+8(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  5. src/runtime/mcheckmark.go

    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A checkmarksMap stores the GC marks in "checkmarks" mode. It is a
    // per-arena bitmap with a bit for every word in the arena. The mark
    // is stored on the bit corresponding to the first word of the marked
    // allocation.
    type checkmarksMap struct {
    	_ sys.NotInHeap
    	b [heapArenaBytes / goarch.PtrSize / 8]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/bigstack_windows.c

    	// Windows doesn't like huge frames, so we grow the stack 64k at a time.
    	char x[64<<10];
    	if (bytes < sizeof x) {
    		bigStackCallback(x);
    	} else {
    		useStack(bytes - sizeof x);
    	}
    }
    
    static DWORD WINAPI threadEntry(LPVOID lpParam) {
    	useStack(STACK_SIZE - (128<<10));
    	return 0;
    }
    
    void bigStack(callback *cb) {
    	bigStackCallback = cb;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 15:18:26 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. src/runtime/testdata/testwinlibsignal/main.c

    #include <windows.h>
    #include <stdio.h>
    
    HANDLE waitForCtrlBreakEvent;
    
    BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
    {
        switch (fdwCtrlType)
        {
        case CTRL_BREAK_EVENT:
            SetEvent(waitForCtrlBreakEvent);
            return TRUE;
        default:
            return FALSE;
        }
    }
    
    int main(void)
    {
        waitForCtrlBreakEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
        if (!waitForCtrlBreakEvent) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. src/math/fma.go

    	xs, xe, xm := split(bx)
    	ys, ye, ym := split(by)
    	zs, ze, zm := split(bz)
    
    	// Compute product p = x*y as sign, exponent, two-word mantissa.
    	// Start with exponent. "is normal" bit isn't subtracted yet.
    	pe := xe + ye - bias + 1
    
    	// pm1:pm2 is the double-word mantissa for the product p.
    	// Shift left to leave top bit in product. Effectively
    	// shifts the 106-bit product to the left by 21.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/testdata/generate_saved_models.py

            -1)
    
      @def_function.function(
          input_signature=[tensor_spec.TensorSpec(shape=None, dtype=dtypes.string)])
      def lookup(self, word):
        return self.table.lookup(word)
    
    
    def get_simple_session():
      ops.disable_eager_execution()
      sess = session_lib.Session()
      variables.Variable(1.)
      sess.run(variables.global_variables_initializer())
      return sess
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/reflect/asm_riscv64.s

    #include "funcdata.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    // whether the stack-allocated return space contains valid values for stack
    // scanning.
    //
    // The second local is an abi.RegArgs value whose offset is also known to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 01:41:42 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top