Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 515 for iword (0.07 sec)

  1. src/math/big/arith_amd64.s

    	SBBQ CX, CX		// save CF
    
    	ADDQ $1, SI		// i++
    	SUBQ $1, DI		// n--
    	JG L2			// if n > 0 goto L2
    
    E2:	NEGQ CX
    	MOVQ CX, c+72(FP)	// return c
    	RET
    
    
    // func addVW(z, x []Word, y Word) (c Word)
    TEXT ·addVW(SB),NOSPLIT,$0
    	MOVQ z_len+8(FP), DI
    	CMPQ DI, $32
    	JG large
    	MOVQ x+24(FP), R8
    	MOVQ y+48(FP), CX	// c = y
    	MOVQ z+0(FP), R10
    
    	MOVQ $0, SI		// i = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/internal/goarch/goarch.go

    // On PowerPC it is larger, to cover three more reserved words:
    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = _MinFrameSize
    
    // StackAlign is the required alignment of the SP register.
    // The stack must be at least word aligned, but some architectures require more.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_util.h

             word_index++) {
          uint64 word = storage_[word_index];
          while (word != 0) {
            uint64 only_lowest_bit_set = word & -word;
            // The number of trailing zeros in a non-zero word is the index of the
            // least significant 1.
            int bit_index = absl::countr_zero(word);
            if (!func(DeviceId(word_index * kWordSize + bit_index))) {
              return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/runtime/internal/sys/consts.go

    // On PowerPC it is larger, to cover three more reserved words:
    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = goarch.MinFrameSize
    
    // StackAlign is the required alignment of the SP register.
    // The stack must be at least word aligned, but some architectures require more.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_arm.S

    	push {r4, r5, r6, r7, r8, r9, r10, r11, ip, lr}
    	mov r4, r0
    	mov r5, r1
    	mov r0, r2
    
    	// Because the assembler might target an earlier revision of the ISA
    	// by default, we encode BLX as a .word.
    	.word 0xe12fff35 // blx r5 // setg(g)
    	.word 0xe12fff34 // blx r4 // fn()
    
    	pop {r4, r5, r6, r7, r8, r9, r10, r11, ip, pc}
    
    
    #ifdef __ELF__
    .section .note.GNU-stack,"",%progbits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:39:42 UTC 2023
    - 849 bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_windows_386.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:58 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

    class GUtilTest extends Specification {
        static sep = File.pathSeparator
    
        def convertStringToCamelCase() {
            expect:
            toCamelCase(null) == null
            toCamelCase("") == ""
            toCamelCase("word") == "Word"
            toCamelCase("twoWords") == "TwoWords"
            toCamelCase("TwoWords") == "TwoWords"
            toCamelCase("two-words") == "TwoWords"
            toCamelCase("two.words") == "TwoWords"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. src/math/pow_s390x.s

    	WORD	$0xED121000	//mdb	%f1,0(%r2,%r1)
    	BYTE	$0x00
    	BYTE	$0x1C
    	BR	L1
    L42:
    	LTDBR	F0, F0
    	BLTU	L46
    	FMOVD	F0, F4
    L3:
    	MOVD	$·pow_x001a<>+0(SB), R2
    	WORD	$0xED402000	//cdb	%f4,0(%r2)
    	BYTE	$0x00
    	BYTE	$0x19
    	BGE	L2
    	BVS	L2
    	MOVD	$·pow_x43f<>+0(SB), R2
    	WORD	$0xED402000	//mdb	%f4,0(%r2)
    	BYTE	$0x00
    	BYTE	$0x1C
    	WORD	$0xC0298009	//iilf	%r2,2148095317
    	BYTE	$0x55
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top