Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,057 for defUse (0.12 sec)

  1. src/internal/bytealg/count_s390x.s

    #include "textflag.h"
    
    // condition code masks
    #define EQ 8
    #define NE 7
    
    // register assignments
    #define R_ZERO R0
    #define R_VAL  R1
    #define R_TMP  R2
    #define R_PTR  R3
    #define R_LEN  R4
    #define R_CHAR R5
    #define R_RET  R6
    #define R_ITER R7
    #define R_CNT  R8
    #define R_MPTR R9
    
    // vector register assignments
    #define V_ZERO V0
    #define V_CHAR V1
    #define V_MASK V2
    #define V_VAL  V3
    #define V_CNT  V4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/build.gradle

    // end::source-library[]
            }
        }
    }
    
    // end::executables[]
    
    // tag::all-binaries[]
    model {
        binaries {
            all {
                // Define a preprocessor macro for every binary
                cppCompiler.define "NDEBUG"
    
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cppCompiler.args "-O2", "-fno-access-control"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/basic/kotlin/build.gradle.kts

    tasks.withType(SwiftCompile::class.java).configureEach {
        // Define a preprocessor macro for every binary
        macros.add("NDEBUG")
    
        // Define a compiler options
        compilerArgs.add("-O")
    }
    // end::swift-compiler-options-all-variants[]
    
    // tag::swift-compiler-options-per-variants[]
    application {
        binaries.configureEach(SwiftStaticLibrary::class.java) {
            // Define a preprocessor macro for every binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/runtime/libfuzzer_arm64.s

    //go:build libfuzzer
    
    #include "go_asm.h"
    #include "textflag.h"
    
    // Based on race_arm64.s; see commentary there.
    
    #define RARG0 R0
    #define RARG1 R1
    #define RARG2 R2
    #define RARG3 R3
    
    #define REPEAT_2(a) a a
    #define REPEAT_8(a) REPEAT_2(REPEAT_2(REPEAT_2(a)))
    #define REPEAT_128(a) REPEAT_2(REPEAT_8(REPEAT_8(a)))
    
    // void runtime·libfuzzerCallTraceIntCmp(fn, arg0, arg1, fakePC uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 07 14:47:46 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. src/runtime/asan_amd64.s

    #include "textflag.h"
    
    // This is like race_amd64.s, but for the asan calls.
    // See race_amd64.s for detailed comments.
    
    #ifdef GOOS_windows
    #define RARG0 CX
    #define RARG1 DX
    #define RARG2 R8
    #define RARG3 R9
    #else
    #define RARG0 DI
    #define RARG1 SI
    #define RARG2 DX
    #define RARG3 CX
    #endif
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/html/template/multi_test.go

    }
    
    const (
    	cloneText1 = `{{define "a"}}{{template "b"}}{{template "c"}}{{end}}`
    	cloneText2 = `{{define "b"}}b{{end}}`
    	cloneText3 = `{{define "c"}}root{{end}}`
    	cloneText4 = `{{define "c"}}clone{{end}}`
    )
    
    // Issue 7032
    func TestAddParseTreeToUnparsedTemplate(t *testing.T) {
    	master := "{{define \"master\"}}{{end}}"
    	tmpl := New("master")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/templates/_affinity.tpl

    {{/* affinity - https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ */}}
    
    {{ define "nodeaffinity" }}
    nodeAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
      {{- include "nodeAffinityRequiredDuringScheduling" . }}
      preferredDuringSchedulingIgnoredDuringExecution:
      {{- include "nodeAffinityPreferredDuringScheduling" . }}
    {{- end }}
    
    {{- define "nodeAffinityRequiredDuringScheduling" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/kernels/internal/compatibility_macros.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_KERNELS_INTERNAL_COMPATIBILITY_MACROS_H_
    
    #ifndef TFLITE_ABORT
    #define TFLITE_ABORT abort()
    #endif
    
    #ifndef TFLITE_ASSERT_FALSE
    #if defined(NDEBUG)
    #define TFLITE_ASSERT_FALSE (static_cast<void>(0))
    #else
    #define TFLITE_ASSERT_FALSE TFLITE_ABORT
    #endif
    #endif
    
    #ifndef TFLITE_DCHECK
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUShardingIdentificationPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_MARKOPSFOROUTSIDECOMPILATIONPASS
    #define GEN_PASS_DECL_TPUCLUSTERFORMATIONPASS
    #define GEN_PASS_DECL_TPUEXTRACTHEADTAILOUTSIDECOMPILATIONPASS
    #define GEN_PASS_DECL_TPUEXTRACTOUTSIDECOMPILATIONPASS
    #define GEN_PASS_DECL_TPUSHARDINGIDENTIFICATIONPASS
    #define GEN_PASS_DECL_VERIFYCLUSTERINGPASS
    #define GEN_PASS_DECL_XLACLUSTERFORMATIONPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add '-W3'
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll toolChain.map { toolChain ->
            if (toolChain in [ Gcc, Clang ]) {
    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