Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for funcsyms (0.14 sec)

  1. src/cmd/compile/internal/staticdata/data.go

    		return funcsyms[i].Linksym().Name < funcsyms[j].Linksym().Name
    	})
    	for _, nam := range funcsyms {
    		s := nam.Sym()
    		sf := s.Pkg.Lookup(ir.FuncSymName(s)).Linksym()
    
    		// While compiling package runtime, we might try to create
    		// funcsyms for functions from both types.LocalPkg and
    		// ir.Pkgs.Runtime.
    		if base.Flag.CompilingRuntime && sf.OnList() {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/syscall/js/func.go

    // new goroutine.
    //
    // Func.Release must be called to free up resources when the function will not be invoked any more.
    func FuncOf(fn func(this Value, args []Value) any) Func {
    	funcsMu.Lock()
    	id := nextFuncID
    	nextFuncID++
    	funcs[id] = fn
    	funcsMu.Unlock()
    	return Func{
    		id:    id,
    		Value: jsGo.Call("_makeFuncWrapper", id),
    	}
    }
    
    // Release frees up resources allocated for the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/expr.go

    			// replace arg with temp
    			args[i] = tmp
    		}
    	}
    
    	funSym := n.Fun.Sym()
    	if base.Debug.Libfuzzer != 0 && funSym != nil {
    		if hook, found := hooks[funSym.Pkg.Path+"."+funSym.Name]; found {
    			if len(args) != hook.argsNum {
    				panic(fmt.Sprintf("%s.%s expects %d arguments, but received %d", funSym.Pkg.Path, funSym.Name, hook.argsNum, len(args)))
    			}
    			var hookArgs []ir.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/internal/xcoff/xcoff.go

    // File Header.
    type FileHeader32 struct {
    	Fmagic   uint16 // Target machine
    	Fnscns   uint16 // Number of sections
    	Ftimedat uint32 // Time and date of file creation
    	Fsymptr  uint32 // Byte offset to symbol table start
    	Fnsyms   uint32 // Number of entries in symbol table
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    }
    
    type FileHeader64 struct {
    	Fmagic   uint16 // Target machine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/internal/xcoff/file.go

    		}
    		nscns = fhdr.Fnscns
    		symptr = uint64(fhdr.Fsymptr)
    		nsyms = fhdr.Fnsyms
    		opthdr = fhdr.Fopthdr
    		hdrsz = FILHSZ_32
    	case U64_TOCMAGIC:
    		fhdr := new(FileHeader64)
    		if err := binary.Read(sr, binary.BigEndian, fhdr); err != nil {
    			return nil, err
    		}
    		nscns = fhdr.Fnscns
    		symptr = fhdr.Fsymptr
    		nsyms = fhdr.Fnsyms
    		opthdr = fhdr.Fopthdr
    		hdrsz = FILHSZ_64
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	Fnscns   uint16 // Number of sections
    	Ftimedat int32  // Time and date of file creation
    	Fsymptr  uint64 // Byte offset to symbol table start
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    	Fnsyms   int32  // Number of entries in symbol table
    }
    
    const (
    	U64_TOCMAGIC = 0767 // AIX 64-bit XCOFF
    )
    
    // Flags that describe the type of the object file.
    const (
    	F_RELFLG    = 0x0001
    	F_EXEC      = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                 isa<TF::XlaVariadicReduceV2Op>(op) ||
                 isa<TF::XlaVariadicSortOp>(op)) {
        auto propagate_shape_to = [&](mlir::SymbolRefAttr func_sym) {
          auto func = llvm::cast<mlir::func::FuncOp>(
              mlir::SymbolTable::lookupSymbolIn(module, func_sym));
          mlir::SmallVector<mlir::Type, 2> types;
          for (auto type : func.getFunctionType().getInputs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top