Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,553 for defUse (0.27 sec)

  1. src/runtime/sys_freebsd_riscv64.s

    #include "go_tls.h"
    #include "textflag.h"
    
    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		4
    
    #define SYS_exit		1
    #define SYS_read		3
    #define SYS_write		4
    #define SYS_open		5
    #define SYS_close		6
    #define SYS_getpid		20
    #define SYS_kill		37
    #define SYS_sigaltstack		53
    #define SYS_munmap		73
    #define SYS_madvise		75
    #define SYS_setitimer		83
    #define SYS_fcntl		92
    #define SYS___sysctl		202
    #define SYS_nanosleep		240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block_arm.s

    // Register definitions
    #define Rdata	R0	// Pointer to incoming data
    #define Rconst	R1	// Current constant for SHA round
    #define Ra	R2		// SHA-1 accumulator
    #define Rb	R3		// SHA-1 accumulator
    #define Rc	R4		// SHA-1 accumulator
    #define Rd	R5		// SHA-1 accumulator
    #define Re	R6		// SHA-1 accumulator
    #define Rt0	R7		// Temporary
    #define Rt1	R8		// Temporary
    // r9, r10 are forbidden
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    +# define __attribute_copy__(arg)
    +#endif
    +
     #ifndef __ASSEMBLER__
     /* GCC understands weak symbols and aliases; use its interface where
        possible, instead of embedded assembly language.  */
    @@ -114,7 +119,8 @@
     /* Define ALIASNAME as a strong alias for NAME.  */
     # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
     # define _strong_alias(name, aliasname) \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/crypto/md5/md5block_ppc64x.s

    #ifdef GOARCH_ppc64le
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVWZ	off(ptr),dst
    #else
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVD	$off,idx; \
    	MOVWBR	(idx)(ptr), dst
    #endif
    
    #define M00 R18
    #define M01 R19
    #define M02 R20
    #define M03 R24
    #define M04 R25
    #define M05 R26
    #define M06 R27
    #define M07 R28
    #define M08 R29
    #define M09 R21
    #define M10 R11
    #define M11 R8
    #define M12 R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_mipsx.s

    #include "go_tls.h"
    #include "textflag.h"
    
    #define SYS_exit		4001
    #define SYS_read		4003
    #define SYS_write		4004
    #define SYS_open		4005
    #define SYS_close		4006
    #define SYS_getpid		4020
    #define SYS_kill		4037
    #define SYS_brk			4045
    #define SYS_mmap		4090
    #define SYS_munmap		4091
    #define SYS_setitimer		4104
    #define SYS_clone		4120
    #define SYS_sched_yield		4162
    #define SYS_nanosleep		4166
    #define SYS_rt_sigreturn	4193
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    DATA ·constants<>+0x1c(SB)/4, $0x6b206574
    
    #define BSWAP V5
    #define J0    V6
    #define KEY0  V7
    #define KEY1  V8
    #define NONCE V9
    #define CTR   V10
    #define M0    V11
    #define M1    V12
    #define M2    V13
    #define M3    V14
    #define INC   V15
    #define X0    V16
    #define X1    V17
    #define X2    V18
    #define X3    V19
    #define X4    V20
    #define X5    V21
    #define X6    V22
    #define X7    V23
    #define X8    V24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. src/math/log_amd64.s

    #include "textflag.h"
    
    #define HSqrt2 7.07106781186547524401e-01 // sqrt(2)/2
    #define Ln2Hi  6.93147180369123816490e-01 // 0x3fe62e42fee00000
    #define Ln2Lo  1.90821492927058770002e-10 // 0x3dea39ef35793c76
    #define L1     6.666666666666735130e-01   // 0x3FE5555555555593
    #define L2     3.999999999940941908e-01   // 0x3FD999999997FA04
    #define L3     2.857142874366239149e-01   // 0x3FD2492494229359
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/runtime/funcdata.h

    //
    // These must agree with internal/abi/symtab.go.
    
    #define PCDATA_UnsafePoint 0
    #define PCDATA_StackMapIndex 1
    #define PCDATA_InlTreeIndex 2
    #define PCDATA_ArgLiveIndex 3
    
    #define FUNCDATA_ArgsPointerMaps 0 /* garbage collector blocks */
    #define FUNCDATA_LocalsPointerMaps 1
    #define FUNCDATA_StackObjects 2
    #define FUNCDATA_InlTree 3
    #define FUNCDATA_OpenCodedDeferInfo 4 /* info for func with open-coded defers */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:28:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    CreateAddFunctionsForExportedNamesPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_DEDUPBOUNDINPUTBINDINGPASS
    #define GEN_PASS_DECL_FREEZEASSETSPASS
    #define GEN_PASS_DECL_FREEZEGLOBALTENSORSPASS
    #define GEN_PASS_DECL_LOWERGLOBALSTOMLPROGRAMPASS
    #define GEN_PASS_DECL_LOWERVARIABLEOPSTOMLPROGRAMPASS
    #define GEN_PASS_DECL_OPTIMIZEGLOBALTENSORSPASS
    #define GEN_PASS_DECL_REMOVEVARIABLESINSESSIONINITIALIZERPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_arm64.s

    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		4
    
    #define SYS_exit		1
    #define SYS_read		3
    #define SYS_write		4
    #define SYS_open		5
    #define SYS_close		6
    #define SYS_getpid		20
    #define SYS_kill		37
    #define SYS_sigaltstack		53
    #define SYS_munmap		73
    #define SYS_madvise		75
    #define SYS_setitimer		83
    #define SYS_fcntl		92
    #define SYS___sysctl		202
    #define SYS_nanosleep		240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top