Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UNDEF (0.03 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <netinet/ip.h>
    #include <netinet/ip_mroute.h>
    #include <sys/extattr.h>
    
    #if __FreeBSD__ >= 10
    #define IFT_CARP	0xf8	// IFT_CARP is deprecated in FreeBSD 10
    #undef SIOCAIFADDR
    #define SIOCAIFADDR	_IOW(105, 26, struct oifaliasreq)	// ifaliasreq contains if_data
    #undef SIOCSIFPHYADDR
    #define SIOCSIFPHYADDR	_IOW(105, 70, struct oifaliasreq)	// ifaliasreq contains if_data
    #endif
    '
    
    includes_Linux='
    #define _LARGEFILE_SOURCE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.cc

        TF_CALL_qint16(CASE);
        default:
          status->status =
              absl::UnimplementedError(absl::StrCat("Unexpected type ", dtype));
          return;
      }
      TF_SetStatus(status, TF_OK, "");
    }
    #undef CASE
    
    }  // namespace
    }  // namespace tensorflow
    
    namespace {
    const tensorflow::AttrValue* GetAttrValue(TF_OpKernelConstruction* ctx,
                                              const char* attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.cc

      TF_VALIDATE_NOT_NULL(SE_PlatformRegistrationParams, params, destroy_platform);
      TF_VALIDATE_NOT_NULL(SE_PlatformRegistrationParams, params,
                           destroy_platform_fns);
      return absl::OkStatus();
    }
    #undef TF_VALIDATE_NOT_NULL
    
    // Converts DeviceMemoryBase to a C struct.
    SP_DeviceMemoryBase DeviceMemoryBaseToC(const DeviceMemoryBase* mem) {
      SP_DeviceMemoryBase device_memory_base{SP_DEVICE_MEMORY_BASE_STRUCT_SIZE};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top