Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for raddrdef (0.44 sec)

  1. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

          const char* attr_name,
          absl::Span<const AbstractOperation*> values) override;
    
      Status SetOpName(const char* op_name) override;
    
      MLIRContext* GetContext() { return context_; }
    
      Status AddRef(Type type, Type* output_type);
    
      Status Create(ArrayRef<Value> operands, OperationState**);
    
      // For LLVM style RTTI.
      static bool classof(const AbstractOperation* ptr) {
        return ptr->getKind() == kMlir;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/symtab.go

    		// the following symbols. They might not be referenced in the program.
    		addRef := func(name string) {
    			s := ldr.Lookup(name, 0)
    			if s == 0 {
    				return
    			}
    			r, _ := moduledata.AddRel(objabi.R_XCOFFREF)
    			r.SetSym(s)
    			r.SetSiz(uint8(ctxt.Arch.PtrSize))
    		}
    		addRef("runtime.rodata")
    		addRef("runtime.erodata")
    		addRef("runtime.epclntab")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    // is the same as tr1::add_reference<T>::type.
    template <typename T>
    struct AddRef { typedef T& type; };  // NOLINT
    template <typename T>
    struct AddRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for AddRef.
    #define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef<T>::type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    // is the same as tr1::add_reference<T>::type.
    template <typename T>
    struct AddRef { typedef T& type; };  // NOLINT
    template <typename T>
    struct AddRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for AddRef.
    #define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef<T>::type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top