Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,170 for defUse (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/java/customizedLayout/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
    }
    
    // tag::define-main[]
    sourceSets {
        main {
            java {
                setSrcDirs(listOf("src/java"))
            }
            resources {
                setSrcDirs(listOf("src/resources"))
            }
        }
    // end::define-main[]
        test {
            java {
                srcDir("test/java")
            }
            resources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 527 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/customTask/groovy/build.gradle

    // tag::add-action[]
    // tag::define-task[]
    abstract class GreetingTask extends DefaultTask {
    // end::define-task[]
        @TaskAction
        def greet() {
            println 'hello from GreetingTask'
        }
    // tag::define-task[]
    }
    // end::define-task[]
    
    // Create a task using the task type
    tasks.register('hello', GreetingTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      /** c-allocate with memory tracking. */
      #define CU_CALLOC(x, y)         CU_calloc((x), (y), __LINE__, __FILE__)
      /** m-allocate with memory tracking. */
      #define CU_MALLOC(x)            CU_malloc((x), __LINE__, __FILE__)
      /** Free with memory tracking. */
      #define CU_FREE(x)              CU_free((x), __LINE__, __FILE__)
      /** Reallocate with memory tracking. */
      #define CU_REALLOC(x, y)        CU_realloc((x), (y), __LINE__, __FILE__)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h

    // lowered from the quantized graph.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizeIntGraphPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_CONVERTTFQUANTOPSTOMHLO
    #define GEN_PASS_DECL_CONVERTTFQUANTTYPES
    #define GEN_PASS_DECL_VERIFYQUANTLEGALIZATION
    #define GEN_PASS_DECL_OPTIMIZEINTGRAPH
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h.inc"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit_intl.h

     */
    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_CUNIT_INTL_H_SEEN
    #define CUNIT_CUNIT_INTL_H_SEEN
    
    /* activate these when source preparation is complete
    #include <libintl.h>
    #ifndef _
    #  define _(String) gettext (String)
    #endif
    #ifndef gettext_noop
    #  define gettext_noop(String) String
    #endif
    #ifndef N_
    #  define N_(String) gettext_noop (String)
    #endif
    */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top