Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for cgoOff (0.19 sec)

  1. src/cmd/link/internal/x86/asm.go

    	var v uint32
    
    	rs := r.Xsym
    	rt := r.Type
    
    	if ldr.SymDynid(rs) < 0 {
    		ldr.Errorf(s, "reloc %d (%s) to non-coff symbol %s type=%d (%s)", rt, sym.RelocName(arch, rt), ldr.SymName(rs), ldr.SymType(rs), ldr.SymType(rs))
    		return false
    	}
    
    	out.Write32(uint32(sectoff))
    	out.Write32(uint32(ldr.SymDynid(rs)))
    
    	switch rt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/amd64/asm.go

    	var v uint32
    
    	rs := r.Xsym
    	rt := r.Type
    
    	if ldr.SymDynid(rs) < 0 {
    		ldr.Errorf(s, "reloc %d (%s) to non-coff symbol %s type=%d (%s)", rt, sym.RelocName(arch, rt), ldr.SymName(rs), ldr.SymType(rs), ldr.SymType(rs))
    		return false
    	}
    
    	out.Write32(uint32(sectoff))
    	out.Write32(uint32(ldr.SymDynid(rs)))
    
    	switch rt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/asm.go

    func pereloc1(arch *sys.Arch, out *ld.OutBuf, ldr *loader.Loader, s loader.Sym, r loader.ExtReloc, sectoff int64) bool {
    	rs := r.Xsym
    	rt := r.Type
    
    	if ldr.SymDynid(rs) < 0 {
    		ldr.Errorf(s, "reloc %d (%s) to non-coff symbol %s type=%d (%s)", rt, sym.RelocName(arch, rt), ldr.SymName(rs), ldr.SymType(rs), ldr.SymType(rs))
    		return false
    	}
    
    	out.Write32(uint32(sectoff))
    	out.Write32(uint32(ldr.SymDynid(rs)))
    
    	var v uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	"cmd/link/internal/sym"
    )
    
    // This file handles all algorithms related to XCOFF files generation.
    // Most of them are adaptations of the ones in  cmd/link/internal/pe.go
    // as PE and XCOFF are based on COFF files.
    // XCOFF files generated are 64 bits.
    
    const (
    	// Total amount of space to reserve at the start of the file
    	// for File Header, Auxiliary Header, and Section Headers.
    	// May waste some.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // All concat operands must be defined by ops.
      Operation* first_arg_op = op.getValues().front().getDefiningOp();
      if (first_arg_op == nullptr) return failure();
    
      // All concat operands must be produced by the coeff-wise unary operation.
      if (!first_arg_op->hasTrait<OpTrait::TF::CwiseUnary>()) return failure();
    
      // All concat operands must be defined by the op of same kind.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/asm.go

    			ldr.Errorf(s, "invalid relocation: %v %s+0x%x", rt, ldr.SymName(rs), r.Xadd)
    			return false
    		}
    		rs = label
    	}
    	symdynid := ldr.SymDynid(rs)
    	if symdynid < 0 {
    		ldr.Errorf(s, "reloc %d (%s) to non-coff symbol %s type=%d (%s)", rt, sym.RelocName(arch, rt), ldr.SymName(rs), ldr.SymType(rs), ldr.SymType(rs))
    		return false
    	}
    
    	switch rt {
    	default:
    		return false
    
    	case objabi.R_DWARFSECREF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    //
    // The world must be stopped.
    //
    //go:systemstack
    func gcSweep(mode gcMode) bool {
    	assertWorldStopped()
    
    	if gcphase != _GCoff {
    		throw("gcSweep being done but phase is not GCoff")
    	}
    
    	lock(&mheap_.lock)
    	mheap_.sweepgen += 2
    	sweep.active.reset()
    	mheap_.pagesSwept.Store(0)
    	mheap_.sweepArenas = mheap_.allArenas
    	mheap_.reclaimIndex.Store(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    };
    
    LogicalResult HoistCwiseUnaryOutOfUnpack::matchAndRewrite(
        UnpackOp op, PatternRewriter &rewriter) const {
      auto loc = op.getLoc();
    
      // First unpack user must be coeff-wise unary operation.
      Operation *first_user = *op->getUsers().begin();
      if (!first_user->hasTrait<OpTrait::TF::CwiseUnary>()) return failure();
    
      // All unpack users must be defined by the op of same kind.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*PrivateKey).Size", Method, 11},
    		{"(*PrivateKey).Validate", Method, 0},
    		{"(*PublicKey).Equal", Method, 15},
    		{"(*PublicKey).Size", Method, 11},
    		{"CRTValue", Type, 0},
    		{"CRTValue.Coeff", Field, 0},
    		{"CRTValue.Exp", Field, 0},
    		{"CRTValue.R", Field, 0},
    		{"DecryptOAEP", Func, 0},
    		{"DecryptPKCS1v15", Func, 0},
    		{"DecryptPKCS1v15SessionKey", Func, 0},
    		{"EncryptOAEP", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg crypto/rsa, method (*PrivateKey) Precompute()
    pkg crypto/rsa, method (*PrivateKey) Validate() error
    pkg crypto/rsa, type CRTValue struct
    pkg crypto/rsa, type CRTValue struct, Coeff *big.Int
    pkg crypto/rsa, type CRTValue struct, Exp *big.Int
    pkg crypto/rsa, type CRTValue struct, R *big.Int
    pkg crypto/rsa, type PrecomputedValues struct
    pkg crypto/rsa, type PrecomputedValues struct, CRTValues []CRTValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top