Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for symabi (0.63 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

                return Name.identifier(DescriptorUtils.getJvmName(getter) ?: JvmAbi.getterName(descriptor.name.asString()))
            }
    
            val ktPropertyName = (symbol.psi as? KtProperty)?.name ?: return SpecialNames.NO_NAME_PROVIDED
            return Name.identifier(JvmAbi.getterName(ktPropertyName))
        }
    
        override fun getJavaSetterName(symbol: KaPropertySymbol): Name? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    	//   [65293] .note.GNU-stack   PROGBITS        00000000 03fc7b 000000 00      0   0  1
    	//   [65294] .symtab           SYMTAB          00000000 03fc7c 0ff0a0 10     65296   2  4
    	//   [65295] .symtab_shndx     SYMTAB SECTION  00000000 13ed1c 03fc28 04     65294   0  4
    	//   [65296] .strtab           STRTAB          00000000 17e944 08f74d 00      0   0  1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_cluster_formation.cc

      SymbolTableCollection symbol_table_collection;
      SymbolTable symtab = symbol_table_collection.getSymbolTable(module);
      llvm::SmallVector<FuncOp> entry_funcs = GetEntryFunctions(module);
      for (auto &entry_func : entry_funcs) {
        if (EncapsulateFirstXlaCompilablePartitionedCalls(
                entry_func, symbol_table_collection, symtab)
                .failed()) {
          return signalPassFailure();
        }
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadelf/ldelf.go

    		}
    	}
    
    	// load string table for symbols into memory.
    	elfobj.symtab = section(elfobj, ".symtab")
    
    	if elfobj.symtab == nil {
    		// our work is done here - no symbols means nothing can refer to this file
    		return
    	}
    
    	if elfobj.symtab.link <= 0 || elfobj.symtab.link >= uint32(elfobj.nsect) {
    		return errorf("elf object has symbol table with invalid string table link")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.cc

        }
      });
      return entry_funcs;
    }
    
    LogicalResult GetCallees(SymbolUserOpInterface op, SymbolTable &symtab,
                             llvm::SmallVector<func::FuncOp> &callees) {
      for (auto attr : op->getAttrs()) {
        auto sym = mlir::dyn_cast<SymbolRefAttr>(attr.getValue());
        if (!sym) continue;
        auto callee = symtab.lookup<func::FuncOp>(sym.getRootReference());
        if (!callee) {
          // This is not expected to happen in practice.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/debug/plan9obj/file.go

    // returning an in-memory representation.
    func newTable(symtab []byte, ptrsz int) ([]Sym, error) {
    	var n int
    	err := walksymtab(symtab, ptrsz, func(s sym) error {
    		n++
    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	fname := make(map[uint16]string)
    	syms := make([]Sym, 0, n)
    	err = walksymtab(symtab, ptrsz, func(s sym) error {
    		n := len(syms)
    		syms = syms[0 : n+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/sym.go

    	symSiggen // type symbol has been generated
    	symAsm    // on asmlist, for writing to -asmhdr
    	symFunc   // function symbol
    )
    
    func (sym *Sym) OnExportList() bool { return sym.flags&symOnExportList != 0 }
    func (sym *Sym) Uniq() bool         { return sym.flags&symUniq != 0 }
    func (sym *Sym) Siggen() bool       { return sym.flags&symSiggen != 0 }
    func (sym *Sym) Asm() bool          { return sym.flags&symAsm != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            if (jvmNameFromAccessor != null) {
                return jvmNameFromAccessor
            }
    
            val identifier = property.name.identifier
            return if (isSetter) JvmAbi.setterName(identifier) else JvmAbi.getterName(identifier)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/flags/flags.go

    	Linkshared = flag.Bool("linkshared", false, "generate code that will be linked against Go shared libraries")
    	AllErrors  = flag.Bool("e", false, "no limit on number of errors reported")
    	SymABIs    = flag.Bool("gensymabis", false, "write symbol ABI information to output file, don't assemble")
    	Importpath = flag.String("p", obj.UnlinkablePkg, "set expected package import to path")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/dwarf.go

    	ft.mu.Lock()
    	defer ft.mu.Unlock()
    
    	// Create entry for symbol if not already present.
    	idx, found := ft.symtab[tgt]
    	if !found {
    		ft.svec = append(ft.svec, symFixups{inlIndex: int32(inlIndex)})
    		idx = len(ft.svec) - 1
    		ft.symtab[tgt] = idx
    	}
    
    	// Do we have child DIE offsets available? If so, then apply them,
    	// otherwise create a fixup record.
    	sf := &ft.svec[idx]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top