Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 898 for findRef (0.39 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_types.def

    HANDLE_TF_TYPE(Qint16, QINT16, "qint16")
    HANDLE_TF_TYPE(Qint32, QINT32, "qint32")
    HANDLE_TF_TYPE(Quint8, QUINT8, "quint8")
    HANDLE_TF_TYPE(Quint16, QUINT16, "quint16")
    HANDLE_TF_TYPE(String, STRING, "string")
    
    #ifndef HANDLE_CUSTOM_TF_TYPE
    #define HANDLE_CUSTOM_TF_TYPE(class, enumerant, name) \
      HANDLE_TF_TYPE(class, enumerant, name)
    #endif
    HANDLE_CUSTOM_TF_TYPE(Resource, RESOURCE, "resource")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 09 03:12:53 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/runtime/preempt_386.s

    	MOVL DX, 8(SP)
    	MOVL BX, 12(SP)
    	MOVL BP, 16(SP)
    	MOVL SI, 20(SP)
    	MOVL DI, 24(SP)
    	#ifndef GO386_softfloat
    	MOVUPS X0, 28(SP)
    	MOVUPS X1, 44(SP)
    	MOVUPS X2, 60(SP)
    	MOVUPS X3, 76(SP)
    	MOVUPS X4, 92(SP)
    	MOVUPS X5, 108(SP)
    	MOVUPS X6, 124(SP)
    	MOVUPS X7, 140(SP)
    	#endif
    	CALL ·asyncPreempt2(SB)
    	#ifndef GO386_softfloat
    	MOVUPS 140(SP), X7
    	MOVUPS 124(SP), X6
    	MOVUPS 108(SP), X5
    	MOVUPS 92(SP), X4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 824 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    /* Global type Definitions to be used for boolean operators. */
    #ifndef CU_BOOL
      /** Boolean type for CUnit use. */
      #define CU_BOOL int
    #endif
    
    #ifndef CU_TRUE
      /** Boolean TRUE for CUnit use. */
      #define CU_TRUE 1
    #endif
    
    #ifndef CU_FALSE
      /** Boolean FALSE for CUnit use. */
      #define CU_FALSE 0
    #endif
    
    #ifndef CU_UNREFERENCED_PARAMETER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. src/runtime/cgo/asm_mipsx.s

    	 *  first arg.
    	 */
    
    	// Space for 9 caller-saved GPR + LR + 6 caller-saved FPR.
    	// O32 ABI allows us to smash 16 bytes argument area of caller frame.
    #ifndef GOMIPS_softfloat
    	SUBU	$(4*14+8*6-16), R29
    #else
    	SUBU	$(4*14-16), R29	// For soft-float, no FPR.
    #endif
    	MOVW	R4, (4*1)(R29)	// fn unsafe.Pointer
    	MOVW	R5, (4*2)(R29)	// a unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_macros.h

    #endif  // SWIG
    
    // TF_Bool is the C API typedef for unsigned char, while TF_BOOL is
    // the datatype for boolean tensors.
    #ifndef TF_Bool
    #define TF_Bool unsigned char
    #endif  // TF_Bool
    
    // Macro used to calculate struct size for maintaining ABI stability across
    // different struct implementations.
    #ifndef TF_OFFSET_OF_END
    #define TF_OFFSET_OF_END(TYPE, MEMBER) \
      (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
    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/runtime/cgo/asm_mips64x.s

    	/*
    	 * We still need to save all callee save register as before, and then
    	 *  push 3 args for fn (R4, R5, R7), skipping R6.
    	 * Also note that at procedure entry in gc world, 8(R29) will be the
    	 *  first arg.
    	 */
    #ifndef GOMIPS64_softfloat
    	ADDV	$(-8*23), R29
    #else
    	ADDV	$(-8*15), R29
    #endif
    	MOVV	R4, (8*1)(R29) // fn unsafe.Pointer
    	MOVV	R5, (8*2)(R29) // a unsafe.Pointer
    	MOVV	R7, (8*3)(R29) // ctxt uintptr
    	MOVV	R16, (8*4)(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        fname = [x.path for x in fname.files.to_list()][0]
        toks = fname[:-5].split("/")
        findex = -1
        for s in _PREFIXES:
            findex = _SafeIndex(toks, s)
            if findex != -1:
                break
        if findex == -1:
            fail("%s does not contain any of %s" % (fname, _PREFIXES))
        return ".".join(toks[findex:]) + ".class"
    
    def _impl(ctx):
        classes = ",".join(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/RootProjectAccessorSourceGenerator.java

            writeLn();
            writeLn("    @Inject");
            writeLn("    public " + className + "(DefaultProjectDependencyFactory factory, ProjectFinder finder) {");
            writeLn("        super(factory, finder);");
            writeLn("    }");
            writeLn();
            writeProjectAccessor(toJavaName(rootProjectName(current)), current);
            processChildren(current);
    
            writeLn("}");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                    printf("%d", sum(5, 7));
                    return 0;
                }
            """)
        }
    
        @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
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/initialization/CompositeInitScriptFinder.java

            this.finders = Arrays.asList(finders);
        }
    
        @Override
        public void findScripts(Collection<File> scripts) {
            for (InitScriptFinder finder : finders) {
                finder.findScripts(scripts);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.1K bytes
    - Viewed (0)
Back to top