Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for msanmove (0.16 sec)

  1. src/cmd/internal/goobj/builtinlist.go

    	{"runtime.racefuncexit", 1},
    	{"runtime.raceread", 1},
    	{"runtime.racewrite", 1},
    	{"runtime.racereadrange", 1},
    	{"runtime.racewriterange", 1},
    	{"runtime.msanread", 1},
    	{"runtime.msanwrite", 1},
    	{"runtime.msanmove", 1},
    	{"runtime.asanread", 1},
    	{"runtime.asanwrite", 1},
    	{"runtime.checkptrAlignment", 1},
    	{"runtime.checkptrArithmetic", 1},
    	{"runtime.libfuzzerTraceCmp1", 1},
    	{"runtime.libfuzzerTraceCmp2", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func racewrite(uintptr)
    func racereadrange(addr, size uintptr)
    func racewriterange(addr, size uintptr)
    
    // memory sanitizer
    func msanread(addr, size uintptr)
    func msanwrite(addr, size uintptr)
    func msanmove(dst, src, size uintptr)
    
    // address sanitizer
    func asanread(addr, size uintptr)
    func asanwrite(addr, size uintptr)
    
    func checkptrAlignment(unsafe.Pointer, *byte, uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/builtin.go

    	{"raceread", funcTag, 31},
    	{"racewrite", funcTag, 31},
    	{"racereadrange", funcTag, 144},
    	{"racewriterange", funcTag, 144},
    	{"msanread", funcTag, 144},
    	{"msanwrite", funcTag, 144},
    	{"msanmove", funcTag, 145},
    	{"asanread", funcTag, 144},
    	{"asanwrite", funcTag, 144},
    	{"checkptrAlignment", funcTag, 146},
    	{"checkptrArithmetic", funcTag, 148},
    	{"libfuzzerTraceCmp1", funcTag, 149},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.Memmove = typecheck.LookupRuntimeFunc("memmove")
    	ir.Syms.Msanread = typecheck.LookupRuntimeFunc("msanread")
    	ir.Syms.Msanwrite = typecheck.LookupRuntimeFunc("msanwrite")
    	ir.Syms.Msanmove = typecheck.LookupRuntimeFunc("msanmove")
    	ir.Syms.Asanread = typecheck.LookupRuntimeFunc("asanread")
    	ir.Syms.Asanwrite = typecheck.LookupRuntimeFunc("asanwrite")
    	ir.Syms.Newobject = typecheck.LookupRuntimeFunc("newobject")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. tensorflow/c/tf_tensor.cc

      if (Type() == DT_STRING && NumElements() > 0) {
        TF_TString* data = static_cast<TF_TString*>(Data());
        if (CanMove() && data != nullptr) {
          for (int64_t i = 0; i < NumElements(); ++i) {
            TF_TString_Dealloc(&data[i]);
          }
        }
      }
      delete this;
    }
    
    bool TensorInterface::CanMove() const {
      // It is safe to move the Tensor if and only if we own the unique reference to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/extract_tpu_copy_with_dynamic_shape_op.cc

        return failure();
      }
      return success();
    }
    
    // Check if we can move TPUCopyWithDynamicShapeOp out of a launch. This is the
    // case if its results aren't used by other ops except for the return op.
    bool CanMove(Operation* op) {
      auto launch_op = llvm::dyn_cast<tf_device::LaunchOp>(op->getParentOp());
      if (!launch_op) return false;
      for (Value result : op->getResults()) {
        for (Operation* user : result.getUsers()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	MS_ASYNC                        = 0x2 // asynchronous writes
    	MS_INVALIDATE                   = 0x4 // invalidate mappings
    	MS_BIND                         = 0x00001000
    	MS_MOVE                         = 0x00002000
    	MS_NOSUID                       = 0x00000002
    	MS_PRIVATE                      = 0x00040000
    	MS_REC                          = 0x00004000
    	MS_REMOUNT                      = 0x00008000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	MS_MANDLOCK                                 = 0x40
    	MS_MGC_MSK                                  = 0xffff0000
    	MS_MGC_VAL                                  = 0xc0ed0000
    	MS_MOVE                                     = 0x2000
    	MS_NOATIME                                  = 0x400
    	MS_NODEV                                    = 0x4
    	MS_NODIRATIME                               = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top