Home
last modified time | relevance | path

Searched refs:symbols (Results 1 – 25 of 52) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dnm2def.py43 def symbols(lib=PYTHONLIB,types=('T','C','D')): function
47 symbols = {}
57 symbols[name] = address,type
58 return symbols
60 def export_list(symbols): argument
64 for name,(addr,type) in symbols.items():
85 def filter_Python(symbols,specials=SPECIALS): argument
87 for name in symbols.keys():
91 del symbols[name]
95 s = symbols(PYTHONLIB)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_symtable.py171 symbols = symtable.symtable("42", "?", "eval")
174 symbols = symtable.symtable("42", "?", "single")
177 symbols = symtable.symtable("def f(x): return x", "?", "exec")
/device/amlogic/yukawa/gpu/
DREADME12 library symbols was put at
/device/linaro/bootloader/edk2/BeagleBoardPkg/Debugger_scripts/
Dtrace32_load_symbols.cmm15 ;If system is running then stop the execution so we can load symbols.
21 ;Create AREA to display the symbols we are loading.
32 ;Load symbols.
Dtrace32_load_symbols_cygwin.cmm15 ;If system is running then stop the execution so we can load symbols.
/device/google/contexthub/firmware/os/platform/stm32/lkr/
Dapp.lkr26 * list of symbols
33 …After this image is produced a nonoapp_postprocess unitily will process relocs and symbols and com…
35 …bytes per reloc and symbols at 16 bytes per symbol. We remove all symbol infos (as we do not need …
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/
DGdbRun42 # This macro adds a symbols file for gdb
56 # This macro removes a symbols file for gdb
/device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/
Dcommon.mk122 -Wl,--retain-symbols-file,$(SYMFILE) \
124 $(QUIET) $(OBJCOPY) --keep-global-symbols=$(SYMFILE) $@ $(TEMPOBJ)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymtable.py98 return self._table.symbols.keys()
103 flags = self._table.symbols[name]
131 if test_func(self._table.symbols[ident])])
Dpydoc.py1593 symbols = { variable in Helper
1612 topics = symbols.get(symbol, topic)
1615 symbols[symbol] = topics
1769 elif request in self.symbols: self.showsymbol(request)
1821 self.list(self.symbols.keys())
1863 target = self.symbols[symbol]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dalgorithm.txt88 little more than eight bits for 286 symbols and a little less than five bits
89 for 30 symbols.
107 compression in the first place.) For the less frequent long symbols, there
109 symbols, you could have as many levels of lookups as is efficient. For
122 would take too long if you're only decoding several thousand symbols. At the
125 traversing the tree while decoding, even for short symbols.
133 The code being decoded, with 10 symbols, from 1 to 6 bits long:
185 the symbols, it takes on the average 1.25 lookups per symbol. That's compared
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dalgorithm.txt88 little more than eight bits for 286 symbols and a little less than five bits
89 for 30 symbols.
107 compression in the first place.) For the less frequent long symbols, there
109 symbols, you could have as many levels of lookups as is efficient. For
122 would take too long if you're only decoding several thousand symbols. At the
125 traversing the tree while decoding, even for short symbols.
133 The code being decoded, with 10 symbols, from 1 to 6 bits long:
185 the symbols, it takes on the average 1.25 lookups per symbol. That's compared
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dres_debug.c498 const struct res_sym *symbols; in p_section() local
502 symbols = __p_update_section_syms; in p_section()
505 symbols = __p_default_section_syms; in p_section()
508 return (sym_ntos(symbols, section, (int *)0)); in p_section()
/device/linaro/bootloader/edk2/EmbeddedPkg/Scripts/LauterbachT32/
DT32.CMM42 toolitem "List Symbols" ":symbols" "sYmbol.Browse"
/device/google/cuttlefish/tools/
Dtombstone_to_line.py49 os.path.join(args.symbols, object_path), address]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dsymtable.c527 update_symbols(PyObject *symbols, PyObject *scope, in update_symbols() argument
533 while (PyDict_Next(symbols, &pos, &name, &v)) { in update_symbols()
544 if (PyDict_SetItem(symbols, name, u) < 0) { in update_symbols()
558 PyObject *o = PyDict_GetItem(symbols, name); in update_symbols()
573 if (PyDict_SetItem(symbols, name, o) < 0) { in update_symbols()
586 if (PyDict_SetItem(symbols, name, free_value) < 0) { in update_symbols()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dsymtable.c529 update_symbols(PyObject *symbols, PyObject *scope, in update_symbols() argument
535 while (PyDict_Next(symbols, &pos, &name, &v)) { in update_symbols()
546 if (PyDict_SetItem(symbols, name, u) < 0) { in update_symbols()
560 PyObject *o = PyDict_GetItem(symbols, name); in update_symbols()
575 if (PyDict_SetItem(symbols, name, o) < 0) { in update_symbols()
588 if (PyDict_SetItem(symbols, name, free_value) < 0) { in update_symbols()
/device/linaro/bootloader/edk2/EmulatorPkg/
DEmulatorPkg.dec53 ## If TRUE, if symbols only load on breakpoints and gdb entry
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar13 # Start symbols for the grammar:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt25 # Start symbols for the grammar:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
Dpydoc.py1597 symbols = { variable in Helper
1616 topics = symbols.get(symbol, topic)
1619 symbols[symbol] = topics
1773 elif request in self.symbols: self.showsymbol(request)
1825 self.list(self.symbols.keys())
1867 target = self.symbols[symbol]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
Dpydoc.py1677 symbols = { variable in Helper
1696 topics = symbols.get(symbol, topic)
1699 symbols[symbol] = topics
1853 elif request in self.symbols: self.showsymbol(request)
1905 self.list(self.symbols.keys())
1947 target = self.symbols[symbol]
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/
DHisilicon.dsc.inc92 # in the debugger will show load and unload commands for symbols. You can cut and paste this
93 # into the command window to load symbols. We should be able to use a script to do this, but
/device/linaro/bootloader/edk2/ArmVirtPkg/
DArmVirt.dsc.inc113 # in the debugger will show load and unload commands for symbols. You can cut and paste this
114 # into the command window to load symbols. We should be able to use a script to do this, but
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dantlr1.txt47 Use up to _n symbols of lookahead when using compressed
81 Rename file which remaps globally visible symbols,

123