Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,008 for xdefine (0.12 sec)

  1. src/runtime/textflag.h

    #define DUPOK	2
    // Don't insert stack check preamble.
    #define NOSPLIT	4
    // Put this data in a read-only section.
    #define RODATA	8
    // This data contains no pointers.
    #define NOPTR	16
    // This is a wrapper function and should not count as disabling 'recover'.
    #define WRAPPER 32
    // This function uses its incoming context register.
    #define NEEDCTXT 64
    // Allocate a word of thread local storage and store the offset from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/stackswitch.c

    // non-glibc linux is using musl.
    //
    // Note that bionic does not provide getcontext either, but that is skipped via
    // the android build tag.
    #if defined(__linux__) && !defined(__GLIBC__)
    #define MUSL 1
    #endif
    #if defined(MUSL)
    void callStackSwitchCallbackFromThread(void) {
    	printf("SKIP\n");
    	exit(0);
    }
    #else
    
    // Use a stack size larger than the 32kb estimate in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pkg/test/framework/features/README.md

    ## Adding New Feature Constants
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/build-goboring.sh

    #include <cassert>
    #include "goboringcrypto0.h"
    #include "goboringcrypto1.h"
    #define check_size(t) if(sizeof(t) != sizeof(GO_ ## t)) {printf("sizeof(" #t ")=%d, but sizeof(GO_" #t ")=%d\n", (int)sizeof(t), (int)sizeof(GO_ ## t)); ret=1;}
    #define check_func(f) { auto x = f; x = _goboringcrypto_ ## f ; }
    #define check_value(n, v) if(n != v) {printf(#n "=%d, but goboringcrypto.h defines it as %d\n", (int)n, (int)v); ret=1;}
    int main() {
    int ret = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_macros.h

    #ifndef TENSORFLOW_C_C_API_MACROS_H_
    #define TENSORFLOW_C_C_API_MACROS_H_
    
    #ifdef SWIG
    #define TF_CAPI_EXPORT
    #else
    #if defined(_WIN32)
    #ifdef TF_COMPILE_LIBRARY
    #define TF_CAPI_EXPORT __declspec(dllexport)
    #else
    #define TF_CAPI_EXPORT __declspec(dllimport)
    #endif  // TF_COMPILE_LIBRARY
    #else
    #ifdef TF_CAPI_WEAK
    #define TF_CAPI_EXPORT \
      __attribute__((visibility("default"))) __attribute((weak))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/sigaltstack.go

    	ss.ss_flags = 0;
    	ss.ss_size = CSIGSTKSZ;
    	if (sigaltstack(&ss, &oss) < 0) {
    		perror("sigaltstack");
    		abort();
    	}
    }
    
    static void restoreSignalStack(void) {
    #if (defined(__x86_64__) || defined(__i386__)) && defined(__APPLE__)
    	// The Darwin C library enforces a minimum that the kernel does not.
    	// This is OK since we allocated this much space in mpreinit,
    	// it was just removed from the buffer by stackalloc.
    	oss.ss_size = MINSIGSTKSZ;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_amd64.S

    // license that can be found in the LICENSE file.
    
    .file "gcc_amd64.S"
    
    /*
     * Apple still insists on underscore prefixes for C function names.
     */
    #if defined(__APPLE__)
    #define EXT(s) _##s
    #else
    #define EXT(s) s
    #endif
    
    /*
     * void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g)
     *
     * Calling into the gc tool chain, where all registers are caller save.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/RunTasksBeforeRunActionCrossVersion.groovy

            noExceptionThrown()
            assertHasConfigureSuccessfulLogging()
    
            where:
            description                                        | configuration
            "build logic does not define any additional tasks" | ""
            "build logic defines default tasks"                | "defaultTasks = ['broken']"
            "build logic injects tasks into start param"       | "gradle.startParameter.taskNames = ['broken']"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/test_passes.h

    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_FREEZEVARIABLESTESTPASS
    #define GEN_PASS_DECL_INITTEXTFILETOIMPORTSAVEDMODELTESTPASS
    #define GEN_PASS_DECL_INITTEXTFILETOIMPORTTESTPASS
    #define GEN_PASS_DECL_INITIALIZEVARIABLESINSESSIONINITIALIZERPASS
    #define GEN_PASS_DECL_LIFTVARIABLESINVALIDSESSIONTESTPASS
    #define GEN_PASS_DECL_LIFTVARIABLESTESTPASS
    #define GEN_PASS_DECL_RESOURCEANALYZERTESTPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

        }
    
        @Override
        SourceFile getLibraryHeader() {
            sourceFile("headers", "hello.h", """
                #ifndef HELLO_H
                #define HELLO_H
                #ifdef _WIN32
                #define DLL_FUNC __declspec(dllexport)
                #else
                #define DLL_FUNC
                #endif
    
                void DLL_FUNC sayHello();
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top