Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,405 for xdefine (0.16 sec)

  1. src/cmd/link/internal/ld/symtab.go

    	ctxt.xdefine("runtime.data", sym.SDATA, 0)
    	ctxt.xdefine("runtime.edata", sym.SDATA, 0)
    	ctxt.xdefine("runtime.bss", sym.SBSS, 0)
    	ctxt.xdefine("runtime.ebss", sym.SBSS, 0)
    	ctxt.xdefine("runtime.noptrbss", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.enoptrbss", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.covctrs", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.ecovctrs", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.end", sym.SBSS, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	ctxt.xdefine("runtime.epclntab", sym.SRODATA, int64(pclntab.Vaddr+pclntab.Length))
    	ctxt.xdefine("runtime.noptrdata", sym.SNOPTRDATA, int64(noptr.Vaddr))
    	ctxt.xdefine("runtime.enoptrdata", sym.SNOPTRDATA, int64(noptr.Vaddr+noptr.Length))
    	ctxt.xdefine("runtime.bss", sym.SBSS, int64(bss.Vaddr))
    	ctxt.xdefine("runtime.ebss", sym.SBSS, int64(bss.Vaddr+bss.Length))
    	ctxt.xdefine("runtime.data", sym.SDATA, int64(data.Vaddr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	DeletedAutoSym = 'x'
    )
    
    // defineInternal defines a symbol used internally by the go runtime.
    func (ctxt *Link) defineInternal(p string, t sym.SymKind) loader.Sym {
    	s := ctxt.loader.CreateSymForUpdate(p, 0)
    	s.SetType(t)
    	s.SetSpecial(true)
    	s.SetLocal(true)
    	return s.Sym()
    }
    
    func (ctxt *Link) xdefine(p string, t sym.SymKind, v int64) loader.Sym {
    	s := ctxt.defineInternal(p, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  endif
    # endif
    #elif defined __linux__
    # define GTEST_OS_LINUX 1
    # if defined __ANDROID__
    #  define GTEST_OS_LINUX_ANDROID 1
    # endif
    #elif defined __MVS__
    # define GTEST_OS_ZOS 1
    #elif defined(__sun) && defined(__SVR4)
    # define GTEST_OS_SOLARIS 1
    #elif defined(_AIX)
    # define GTEST_OS_AIX 1
    #elif defined(__hpux)
    # define GTEST_OS_HPUX 1
    #elif defined __native_client__
    # define GTEST_OS_NACL 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  endif
    # endif
    #elif defined __linux__
    # define GTEST_OS_LINUX 1
    # if defined __ANDROID__
    #  define GTEST_OS_LINUX_ANDROID 1
    # endif
    #elif defined __MVS__
    # define GTEST_OS_ZOS 1
    #elif defined(__sun) && defined(__SVR4)
    # define GTEST_OS_SOLARIS 1
    #elif defined(_AIX)
    # define GTEST_OS_AIX 1
    #elif defined(__hpux)
    # define GTEST_OS_HPUX 1
    #elif defined __native_client__
    # define GTEST_OS_NACL 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      #define CU_FREE(x)              free((x))
      /** Standard realloc() if MEMTRACE not defined. */
      #define CU_REALLOC(x, y)        realloc((x), (y))
      /** No-op if MEMTRACE not defined. */
      #define CU_CREATE_MEMORY_REPORT(x)
      /** No-op if MEMTRACE not defined. */
      #define CU_DUMP_MEMORY_USAGE(x)
    #endif  /* MEMTRACE */
    
    #ifdef CUNIT_BUILD_TESTS
    /** Disable memory allocation for testing purposes. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    	RunIf func(data RunData) (bool, error)
    
    	// InheritFlags defines the list of flags that the cobra command generated for this phase should Inherit
    	// from local flags defined in the parent command / or additional flags defined in the phase runner.
    	// If the values is not set or empty, no flags will be assigned to the command
    	// Nb. global flags are automatically inherited by nested cobra command
    	InheritFlags []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. src/text/template/examplefiles_test.go

    		// T0.tmpl is a plain template file that just invokes T1.
    		{"T0.tmpl", `T0 invokes T1: ({{template "T1"}})`},
    		// T1.tmpl defines a template, T1 that invokes T2.
    		{"T1.tmpl", `{{define "T1"}}T1 invokes T2: ({{template "T2"}}){{end}}`},
    		// T2.tmpl defines a template T2.
    		{"T2.tmpl", `{{define "T2"}}This is T2{{end}}`},
    	})
    	// Clean up after the test; another quirk of running as an example.
    	defer os.RemoveAll(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

     #  define hidden_ver(local, name)	__hidden_ver1(local, __GI_##name, name);
     #  define hidden_data_ver(local, name)	hidden_ver(local, name)
     #  define hidden_def(name)		__hidden_ver1(__GI_##name, name, name);
    @@ -541,7 +550,8 @@ for linking")
     #  define __hidden_nolink1(local, internal, name, version) \
       __hidden_nolink2 (local, internal, name, version)
     #  define __hidden_nolink2(local, internal, name, version) \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/html/template/examplefiles_test.go

    		// T0.tmpl is a plain template file that just invokes T1.
    		{"T0.tmpl", `T0 invokes T1: ({{template "T1"}})`},
    		// T1.tmpl defines a template, T1 that invokes T2.
    		{"T1.tmpl", `{{define "T1"}}T1 invokes T2: ({{template "T2"}}){{end}}`},
    		// T2.tmpl defines a template T2.
    		{"T2.tmpl", `{{define "T2"}}This is T2{{end}}`},
    	})
    	// Clean up after the test; another quirk of running as an example.
    	defer os.RemoveAll(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 7.5K bytes
    - Viewed (0)
Back to top