├── .github └── workflows │ ├── AssignReviewers.yaml │ ├── build-app-uefi-gcc.yaml │ ├── build-python-uefi-gcc.yaml │ ├── build-python-uefi-ia32-vs.yaml │ ├── build-python-uefi-vs.yaml │ └── build-python-uefi-vs2022.yaml ├── AppPkg ├── AppPkg.dec ├── AppPkg.dsc ├── Applications │ ├── ArithChk │ │ ├── ArithChk.inf │ │ └── arithchk.c │ ├── Enquire │ │ ├── Enquire.c │ │ └── Enquire.inf │ ├── Hello │ │ ├── Hello.c │ │ └── Hello.inf │ ├── Lua │ │ ├── Copyright.txt │ │ ├── Lua.inf │ │ ├── LuaLib.inf │ │ ├── ReadMe.txt │ │ ├── doc │ │ │ ├── contents.html │ │ │ ├── logo.gif │ │ │ ├── lua.1 │ │ │ ├── lua.css │ │ │ ├── luac.1 │ │ │ ├── manual.css │ │ │ ├── manual.html │ │ │ ├── osi-certified-72x60.png │ │ │ └── readme.html │ │ ├── scripts │ │ │ ├── Fact.lua │ │ │ └── Hello.lua │ │ └── src │ │ │ ├── Makefile │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lbitlib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── lcorolib.c │ │ │ ├── lctype.c │ │ │ ├── lctype.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.c │ │ │ ├── lua.h │ │ │ ├── lua.hpp │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ └── lzio.h │ ├── Main │ │ ├── Main.c │ │ └── Main.inf │ ├── OrderedCollectionTest │ │ ├── OrderedCollectionTest.c │ │ ├── OrderedCollectionTest.inf │ │ └── gentest.sh │ ├── Python │ │ └── Python-3.6.8 │ │ │ ├── .azure-pipelines │ │ │ ├── ci.yml │ │ │ ├── docker-steps.yml │ │ │ ├── docs-steps.yml │ │ │ ├── macos-steps.yml │ │ │ ├── posix-deps.sh │ │ │ ├── posix-steps.yml │ │ │ ├── pr.yml │ │ │ ├── prebuild-checks.yml │ │ │ └── windows-steps.yml │ │ │ ├── .bzrignore │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── appveyor.yml │ │ │ └── codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .hgignore │ │ │ ├── .travis.yml │ │ │ ├── Doc │ │ │ ├── README.rst │ │ │ ├── about.rst │ │ │ ├── bugs.rst │ │ │ ├── c-api │ │ │ │ ├── abstract.rst │ │ │ │ ├── allocation.rst │ │ │ │ ├── apiabiversion.rst │ │ │ │ ├── arg.rst │ │ │ │ ├── bool.rst │ │ │ │ ├── buffer.rst │ │ │ │ ├── bytearray.rst │ │ │ │ ├── bytes.rst │ │ │ │ ├── capsule.rst │ │ │ │ ├── cell.rst │ │ │ │ ├── code.rst │ │ │ │ ├── codec.rst │ │ │ │ ├── complex.rst │ │ │ │ ├── concrete.rst │ │ │ │ ├── conversion.rst │ │ │ │ ├── coro.rst │ │ │ │ ├── datetime.rst │ │ │ │ ├── descriptor.rst │ │ │ │ ├── dict.rst │ │ │ │ ├── exceptions.rst │ │ │ │ ├── file.rst │ │ │ │ ├── float.rst │ │ │ │ ├── function.rst │ │ │ │ ├── gcsupport.rst │ │ │ │ ├── gen.rst │ │ │ │ ├── import.rst │ │ │ │ ├── index.rst │ │ │ │ ├── init.rst │ │ │ │ ├── intro.rst │ │ │ │ ├── iter.rst │ │ │ │ ├── iterator.rst │ │ │ │ ├── list.rst │ │ │ │ ├── long.rst │ │ │ │ ├── mapping.rst │ │ │ │ ├── marshal.rst │ │ │ │ ├── memory.rst │ │ │ │ ├── memoryview.rst │ │ │ │ ├── method.rst │ │ │ │ ├── module.rst │ │ │ │ ├── none.rst │ │ │ │ ├── number.rst │ │ │ │ ├── objbuffer.rst │ │ │ │ ├── object.rst │ │ │ │ ├── objimpl.rst │ │ │ │ ├── refcounting.rst │ │ │ │ ├── reflection.rst │ │ │ │ ├── sequence.rst │ │ │ │ ├── set.rst │ │ │ │ ├── slice.rst │ │ │ │ ├── stable.rst │ │ │ │ ├── structures.rst │ │ │ │ ├── sys.rst │ │ │ │ ├── tuple.rst │ │ │ │ ├── type.rst │ │ │ │ ├── typeobj.rst │ │ │ │ ├── unicode.rst │ │ │ │ ├── utilities.rst │ │ │ │ ├── veryhigh.rst │ │ │ │ └── weakref.rst │ │ │ ├── conf.py │ │ │ ├── contents.rst │ │ │ ├── copyright.rst │ │ │ ├── data │ │ │ │ └── refcounts.dat │ │ │ ├── distributing │ │ │ │ └── index.rst │ │ │ ├── distutils │ │ │ │ ├── apiref.rst │ │ │ │ ├── builtdist.rst │ │ │ │ ├── commandref.rst │ │ │ │ ├── configfile.rst │ │ │ │ ├── examples.rst │ │ │ │ ├── extending.rst │ │ │ │ ├── index.rst │ │ │ │ ├── introduction.rst │ │ │ │ ├── packageindex.rst │ │ │ │ ├── setupscript.rst │ │ │ │ ├── sourcedist.rst │ │ │ │ └── uploading.rst │ │ │ ├── docutils.conf │ │ │ ├── extending │ │ │ │ ├── building.rst │ │ │ │ ├── embedding.rst │ │ │ │ ├── extending.rst │ │ │ │ ├── index.rst │ │ │ │ ├── newtypes.rst │ │ │ │ ├── newtypes_tutorial.rst │ │ │ │ └── windows.rst │ │ │ ├── faq │ │ │ │ ├── design.rst │ │ │ │ ├── extending.rst │ │ │ │ ├── general.rst │ │ │ │ ├── gui.rst │ │ │ │ ├── index.rst │ │ │ │ ├── installed.rst │ │ │ │ ├── library.rst │ │ │ │ ├── programming.rst │ │ │ │ ├── python-video-icon.png │ │ │ │ └── windows.rst │ │ │ ├── glossary.rst │ │ │ ├── howto │ │ │ │ ├── argparse.rst │ │ │ │ ├── clinic.rst │ │ │ │ ├── cporting.rst │ │ │ │ ├── curses.rst │ │ │ │ ├── descriptor.rst │ │ │ │ ├── functional.rst │ │ │ │ ├── index.rst │ │ │ │ ├── instrumentation.rst │ │ │ │ ├── ipaddress.rst │ │ │ │ ├── logging-cookbook.rst │ │ │ │ ├── logging.rst │ │ │ │ ├── logging_flow.png │ │ │ │ ├── pyporting.rst │ │ │ │ ├── regex.rst │ │ │ │ ├── sockets.rst │ │ │ │ ├── sorting.rst │ │ │ │ ├── unicode.rst │ │ │ │ └── urllib2.rst │ │ │ ├── includes │ │ │ │ ├── capsulethunk.h │ │ │ │ ├── custom.c │ │ │ │ ├── custom2.c │ │ │ │ ├── custom3.c │ │ │ │ ├── custom4.c │ │ │ │ ├── dbpickle.py │ │ │ │ ├── email-alternative.py │ │ │ │ ├── email-dir.py │ │ │ │ ├── email-headers.py │ │ │ │ ├── email-mime.py │ │ │ │ ├── email-read-alternative.py │ │ │ │ ├── email-simple.py │ │ │ │ ├── email-unpack.py │ │ │ │ ├── minidom-example.py │ │ │ │ ├── mp_newtype.py │ │ │ │ ├── mp_pool.py │ │ │ │ ├── mp_workers.py │ │ │ │ ├── run-func.c │ │ │ │ ├── setup.py │ │ │ │ ├── sqlite3 │ │ │ │ │ ├── adapter_datetime.py │ │ │ │ │ ├── adapter_point_1.py │ │ │ │ │ ├── adapter_point_2.py │ │ │ │ │ ├── collation_reverse.py │ │ │ │ │ ├── complete_statement.py │ │ │ │ │ ├── connect_db_1.py │ │ │ │ │ ├── connect_db_2.py │ │ │ │ │ ├── converter_point.py │ │ │ │ │ ├── countcursors.py │ │ │ │ │ ├── createdb.py │ │ │ │ │ ├── ctx_manager.py │ │ │ │ │ ├── execsql_fetchonerow.py │ │ │ │ │ ├── execsql_printall_1.py │ │ │ │ │ ├── execute_1.py │ │ │ │ │ ├── execute_3.py │ │ │ │ │ ├── executemany_1.py │ │ │ │ │ ├── executemany_2.py │ │ │ │ │ ├── executescript.py │ │ │ │ │ ├── insert_more_people.py │ │ │ │ │ ├── load_extension.py │ │ │ │ │ ├── md5func.py │ │ │ │ │ ├── mysumaggr.py │ │ │ │ │ ├── parse_colnames.py │ │ │ │ │ ├── pysqlite_datetime.py │ │ │ │ │ ├── row_factory.py │ │ │ │ │ ├── rowclass.py │ │ │ │ │ ├── shared_cache.py │ │ │ │ │ ├── shortcut_methods.py │ │ │ │ │ ├── simple_tableprinter.py │ │ │ │ │ └── text_factory.py │ │ │ │ ├── sublist.c │ │ │ │ ├── test.py │ │ │ │ ├── turtle-star.py │ │ │ │ ├── typestruct.h │ │ │ │ └── tzinfo-examples.py │ │ │ ├── install │ │ │ │ └── index.rst │ │ │ ├── installing │ │ │ │ └── index.rst │ │ │ ├── library │ │ │ │ ├── 2to3.rst │ │ │ │ ├── __future__.rst │ │ │ │ ├── __main__.rst │ │ │ │ ├── _dummy_thread.rst │ │ │ │ ├── _thread.rst │ │ │ │ ├── abc.rst │ │ │ │ ├── aifc.rst │ │ │ │ ├── allos.rst │ │ │ │ ├── archiving.rst │ │ │ │ ├── argparse.rst │ │ │ │ ├── array.rst │ │ │ │ ├── ast.rst │ │ │ │ ├── asynchat.rst │ │ │ │ ├── asyncio-dev.rst │ │ │ │ ├── asyncio-eventloop.rst │ │ │ │ ├── asyncio-eventloops.rst │ │ │ │ ├── asyncio-protocol.rst │ │ │ │ ├── asyncio-queue.rst │ │ │ │ ├── asyncio-stream.rst │ │ │ │ ├── asyncio-subprocess.rst │ │ │ │ ├── asyncio-sync.rst │ │ │ │ ├── asyncio-task.rst │ │ │ │ ├── asyncio.rst │ │ │ │ ├── asyncore.rst │ │ │ │ ├── atexit.rst │ │ │ │ ├── audioop.rst │ │ │ │ ├── base64.rst │ │ │ │ ├── bdb.rst │ │ │ │ ├── binary.rst │ │ │ │ ├── binascii.rst │ │ │ │ ├── binhex.rst │ │ │ │ ├── bisect.rst │ │ │ │ ├── builtins.rst │ │ │ │ ├── bz2.rst │ │ │ │ ├── calendar.rst │ │ │ │ ├── cgi.rst │ │ │ │ ├── cgitb.rst │ │ │ │ ├── chunk.rst │ │ │ │ ├── cmath.rst │ │ │ │ ├── cmd.rst │ │ │ │ ├── code.rst │ │ │ │ ├── codecs.rst │ │ │ │ ├── codeop.rst │ │ │ │ ├── collections.abc.rst │ │ │ │ ├── collections.rst │ │ │ │ ├── colorsys.rst │ │ │ │ ├── compileall.rst │ │ │ │ ├── concurrency.rst │ │ │ │ ├── concurrent.futures.rst │ │ │ │ ├── concurrent.rst │ │ │ │ ├── configparser.rst │ │ │ │ ├── constants.rst │ │ │ │ ├── contextlib.rst │ │ │ │ ├── copy.rst │ │ │ │ ├── copyreg.rst │ │ │ │ ├── crypt.rst │ │ │ │ ├── crypto.rst │ │ │ │ ├── csv.rst │ │ │ │ ├── ctypes.rst │ │ │ │ ├── curses.ascii.rst │ │ │ │ ├── curses.panel.rst │ │ │ │ ├── curses.rst │ │ │ │ ├── custominterp.rst │ │ │ │ ├── datatypes.rst │ │ │ │ ├── datetime.rst │ │ │ │ ├── dbm.rst │ │ │ │ ├── debug.rst │ │ │ │ ├── decimal.rst │ │ │ │ ├── development.rst │ │ │ │ ├── difflib.rst │ │ │ │ ├── dis.rst │ │ │ │ ├── distribution.rst │ │ │ │ ├── distutils.rst │ │ │ │ ├── doctest.rst │ │ │ │ ├── dummy_threading.rst │ │ │ │ ├── email.charset.rst │ │ │ │ ├── email.compat32-message.rst │ │ │ │ ├── email.contentmanager.rst │ │ │ │ ├── email.encoders.rst │ │ │ │ ├── email.errors.rst │ │ │ │ ├── email.examples.rst │ │ │ │ ├── email.generator.rst │ │ │ │ ├── email.header.rst │ │ │ │ ├── email.headerregistry.rst │ │ │ │ ├── email.iterators.rst │ │ │ │ ├── email.message.rst │ │ │ │ ├── email.mime.rst │ │ │ │ ├── email.parser.rst │ │ │ │ ├── email.policy.rst │ │ │ │ ├── email.rst │ │ │ │ ├── email.utils.rst │ │ │ │ ├── ensurepip.rst │ │ │ │ ├── enum.rst │ │ │ │ ├── errno.rst │ │ │ │ ├── exceptions.rst │ │ │ │ ├── faulthandler.rst │ │ │ │ ├── fcntl.rst │ │ │ │ ├── filecmp.rst │ │ │ │ ├── fileformats.rst │ │ │ │ ├── fileinput.rst │ │ │ │ ├── filesys.rst │ │ │ │ ├── fnmatch.rst │ │ │ │ ├── formatter.rst │ │ │ │ ├── fpectl.rst │ │ │ │ ├── fractions.rst │ │ │ │ ├── frameworks.rst │ │ │ │ ├── ftplib.rst │ │ │ │ ├── functional.rst │ │ │ │ ├── functions.rst │ │ │ │ ├── functools.rst │ │ │ │ ├── gc.rst │ │ │ │ ├── getopt.rst │ │ │ │ ├── getpass.rst │ │ │ │ ├── gettext.rst │ │ │ │ ├── glob.rst │ │ │ │ ├── grp.rst │ │ │ │ ├── gzip.rst │ │ │ │ ├── hashlib-blake2-tree.png │ │ │ │ ├── hashlib.rst │ │ │ │ ├── heapq.rst │ │ │ │ ├── hmac.rst │ │ │ │ ├── html.entities.rst │ │ │ │ ├── html.parser.rst │ │ │ │ ├── html.rst │ │ │ │ ├── http.client.rst │ │ │ │ ├── http.cookiejar.rst │ │ │ │ ├── http.cookies.rst │ │ │ │ ├── http.rst │ │ │ │ ├── http.server.rst │ │ │ │ ├── i18n.rst │ │ │ │ ├── idle.rst │ │ │ │ ├── imaplib.rst │ │ │ │ ├── imghdr.rst │ │ │ │ ├── imp.rst │ │ │ │ ├── importlib.rst │ │ │ │ ├── index.rst │ │ │ │ ├── inspect.rst │ │ │ │ ├── internet.rst │ │ │ │ ├── intro.rst │ │ │ │ ├── io.rst │ │ │ │ ├── ipaddress.rst │ │ │ │ ├── ipc.rst │ │ │ │ ├── itertools.rst │ │ │ │ ├── json.rst │ │ │ │ ├── keyword.rst │ │ │ │ ├── language.rst │ │ │ │ ├── linecache.rst │ │ │ │ ├── locale.rst │ │ │ │ ├── logging.config.rst │ │ │ │ ├── logging.handlers.rst │ │ │ │ ├── logging.rst │ │ │ │ ├── lzma.rst │ │ │ │ ├── macpath.rst │ │ │ │ ├── mailbox.rst │ │ │ │ ├── mailcap.rst │ │ │ │ ├── markup.rst │ │ │ │ ├── marshal.rst │ │ │ │ ├── math.rst │ │ │ │ ├── mimetypes.rst │ │ │ │ ├── misc.rst │ │ │ │ ├── mm.rst │ │ │ │ ├── mmap.rst │ │ │ │ ├── modulefinder.rst │ │ │ │ ├── modules.rst │ │ │ │ ├── msilib.rst │ │ │ │ ├── msvcrt.rst │ │ │ │ ├── multiprocessing.rst │ │ │ │ ├── netdata.rst │ │ │ │ ├── netrc.rst │ │ │ │ ├── nis.rst │ │ │ │ ├── nntplib.rst │ │ │ │ ├── numbers.rst │ │ │ │ ├── numeric.rst │ │ │ │ ├── operator.rst │ │ │ │ ├── optparse.rst │ │ │ │ ├── os.path.rst │ │ │ │ ├── os.rst │ │ │ │ ├── ossaudiodev.rst │ │ │ │ ├── othergui.rst │ │ │ │ ├── parser.rst │ │ │ │ ├── pathlib-inheritance.png │ │ │ │ ├── pathlib-inheritance.svg │ │ │ │ ├── pathlib.rst │ │ │ │ ├── pdb.rst │ │ │ │ ├── persistence.rst │ │ │ │ ├── pickle.rst │ │ │ │ ├── pickletools.rst │ │ │ │ ├── pipes.rst │ │ │ │ ├── pkgutil.rst │ │ │ │ ├── platform.rst │ │ │ │ ├── plistlib.rst │ │ │ │ ├── poplib.rst │ │ │ │ ├── posix.rst │ │ │ │ ├── pprint.rst │ │ │ │ ├── profile.rst │ │ │ │ ├── pty.rst │ │ │ │ ├── pwd.rst │ │ │ │ ├── py_compile.rst │ │ │ │ ├── pyclbr.rst │ │ │ │ ├── pydoc.rst │ │ │ │ ├── pyexpat.rst │ │ │ │ ├── python.rst │ │ │ │ ├── queue.rst │ │ │ │ ├── quopri.rst │ │ │ │ ├── random.rst │ │ │ │ ├── re.rst │ │ │ │ ├── readline.rst │ │ │ │ ├── reprlib.rst │ │ │ │ ├── resource.rst │ │ │ │ ├── rlcompleter.rst │ │ │ │ ├── runpy.rst │ │ │ │ ├── sched.rst │ │ │ │ ├── secrets.rst │ │ │ │ ├── select.rst │ │ │ │ ├── selectors.rst │ │ │ │ ├── shelve.rst │ │ │ │ ├── shlex.rst │ │ │ │ ├── shutil.rst │ │ │ │ ├── signal.rst │ │ │ │ ├── site.rst │ │ │ │ ├── smtpd.rst │ │ │ │ ├── smtplib.rst │ │ │ │ ├── sndhdr.rst │ │ │ │ ├── socket.rst │ │ │ │ ├── socketserver.rst │ │ │ │ ├── spwd.rst │ │ │ │ ├── sqlite3.rst │ │ │ │ ├── ssl.rst │ │ │ │ ├── stat.rst │ │ │ │ ├── statistics.rst │ │ │ │ ├── stdtypes.rst │ │ │ │ ├── string.rst │ │ │ │ ├── stringprep.rst │ │ │ │ ├── struct.rst │ │ │ │ ├── subprocess.rst │ │ │ │ ├── sunau.rst │ │ │ │ ├── superseded.rst │ │ │ │ ├── symbol.rst │ │ │ │ ├── symtable.rst │ │ │ │ ├── sys.rst │ │ │ │ ├── sysconfig.rst │ │ │ │ ├── syslog.rst │ │ │ │ ├── tabnanny.rst │ │ │ │ ├── tarfile.rst │ │ │ │ ├── telnetlib.rst │ │ │ │ ├── tempfile.rst │ │ │ │ ├── termios.rst │ │ │ │ ├── test.rst │ │ │ │ ├── text.rst │ │ │ │ ├── textwrap.rst │ │ │ │ ├── threading.rst │ │ │ │ ├── time.rst │ │ │ │ ├── timeit.rst │ │ │ │ ├── tk.rst │ │ │ │ ├── tkinter.rst │ │ │ │ ├── tkinter.scrolledtext.rst │ │ │ │ ├── tkinter.tix.rst │ │ │ │ ├── tkinter.ttk.rst │ │ │ │ ├── token.rst │ │ │ │ ├── tokenize.rst │ │ │ │ ├── trace.rst │ │ │ │ ├── traceback.rst │ │ │ │ ├── tracemalloc.rst │ │ │ │ ├── tty.rst │ │ │ │ ├── tulip_coro.dia │ │ │ │ ├── tulip_coro.png │ │ │ │ ├── turtle-star.pdf │ │ │ │ ├── turtle-star.png │ │ │ │ ├── turtle-star.ps │ │ │ │ ├── turtle.rst │ │ │ │ ├── types.rst │ │ │ │ ├── typing.rst │ │ │ │ ├── undoc.rst │ │ │ │ ├── unicodedata.rst │ │ │ │ ├── unittest.mock-examples.rst │ │ │ │ ├── unittest.mock.rst │ │ │ │ ├── unittest.rst │ │ │ │ ├── unix.rst │ │ │ │ ├── urllib.error.rst │ │ │ │ ├── urllib.parse.rst │ │ │ │ ├── urllib.request.rst │ │ │ │ ├── urllib.robotparser.rst │ │ │ │ ├── urllib.rst │ │ │ │ ├── uu.rst │ │ │ │ ├── uuid.rst │ │ │ │ ├── venv.rst │ │ │ │ ├── warnings.rst │ │ │ │ ├── wave.rst │ │ │ │ ├── weakref.rst │ │ │ │ ├── webbrowser.rst │ │ │ │ ├── windows.rst │ │ │ │ ├── winreg.rst │ │ │ │ ├── winsound.rst │ │ │ │ ├── wsgiref.rst │ │ │ │ ├── xdrlib.rst │ │ │ │ ├── xml.dom.minidom.rst │ │ │ │ ├── xml.dom.pulldom.rst │ │ │ │ ├── xml.dom.rst │ │ │ │ ├── xml.etree.elementtree.rst │ │ │ │ ├── xml.rst │ │ │ │ ├── xml.sax.handler.rst │ │ │ │ ├── xml.sax.reader.rst │ │ │ │ ├── xml.sax.rst │ │ │ │ ├── xml.sax.utils.rst │ │ │ │ ├── xmlrpc.client.rst │ │ │ │ ├── xmlrpc.rst │ │ │ │ ├── xmlrpc.server.rst │ │ │ │ ├── zipapp.rst │ │ │ │ ├── zipfile.rst │ │ │ │ ├── zipimport.rst │ │ │ │ └── zlib.rst │ │ │ ├── license.rst │ │ │ ├── make.bat │ │ │ ├── reference │ │ │ │ ├── compound_stmts.rst │ │ │ │ ├── datamodel.rst │ │ │ │ ├── executionmodel.rst │ │ │ │ ├── expressions.rst │ │ │ │ ├── grammar.rst │ │ │ │ ├── import.rst │ │ │ │ ├── index.rst │ │ │ │ ├── introduction.rst │ │ │ │ ├── lexical_analysis.rst │ │ │ │ ├── simple_stmts.rst │ │ │ │ └── toplevel_components.rst │ │ │ ├── tools │ │ │ │ ├── extensions │ │ │ │ │ ├── c_annotations.py │ │ │ │ │ ├── escape4chm.py │ │ │ │ │ ├── patchlevel.py │ │ │ │ │ ├── pyspecific.py │ │ │ │ │ └── suspicious.py │ │ │ │ ├── pydoctheme │ │ │ │ │ ├── static │ │ │ │ │ │ └── pydoctheme.css │ │ │ │ │ └── theme.conf │ │ │ │ ├── rstlint.py │ │ │ │ ├── static │ │ │ │ │ ├── copybutton.js │ │ │ │ │ ├── py.png │ │ │ │ │ ├── sidebar.js │ │ │ │ │ └── switchers.js │ │ │ │ ├── susp-ignored.csv │ │ │ │ └── templates │ │ │ │ │ ├── customsourcelink.html │ │ │ │ │ ├── download.html │ │ │ │ │ ├── dummy.html │ │ │ │ │ ├── indexcontent.html │ │ │ │ │ ├── indexsidebar.html │ │ │ │ │ ├── layout.html │ │ │ │ │ └── opensearch.xml │ │ │ ├── tutorial │ │ │ │ ├── appendix.rst │ │ │ │ ├── appetite.rst │ │ │ │ ├── classes.rst │ │ │ │ ├── controlflow.rst │ │ │ │ ├── datastructures.rst │ │ │ │ ├── errors.rst │ │ │ │ ├── floatingpoint.rst │ │ │ │ ├── index.rst │ │ │ │ ├── inputoutput.rst │ │ │ │ ├── interactive.rst │ │ │ │ ├── interpreter.rst │ │ │ │ ├── introduction.rst │ │ │ │ ├── modules.rst │ │ │ │ ├── stdlib.rst │ │ │ │ ├── stdlib2.rst │ │ │ │ ├── venv.rst │ │ │ │ └── whatnow.rst │ │ │ ├── using │ │ │ │ ├── cmdline.rst │ │ │ │ ├── index.rst │ │ │ │ ├── mac.rst │ │ │ │ ├── unix.rst │ │ │ │ ├── venv-create.inc │ │ │ │ ├── win_installer.png │ │ │ │ └── windows.rst │ │ │ └── whatsnew │ │ │ │ ├── 2.0.rst │ │ │ │ ├── 2.1.rst │ │ │ │ ├── 2.2.rst │ │ │ │ ├── 2.3.rst │ │ │ │ ├── 2.4.rst │ │ │ │ ├── 2.5.rst │ │ │ │ ├── 2.6.rst │ │ │ │ ├── 2.7.rst │ │ │ │ ├── 3.0.rst │ │ │ │ ├── 3.1.rst │ │ │ │ ├── 3.2.rst │ │ │ │ ├── 3.3.rst │ │ │ │ ├── 3.4.rst │ │ │ │ ├── 3.5.rst │ │ │ │ ├── 3.6.rst │ │ │ │ ├── changelog.rst │ │ │ │ └── index.rst │ │ │ ├── GCCCompilationBKMs.rst │ │ │ ├── Grammar │ │ │ └── Grammar │ │ │ ├── Include │ │ │ ├── Python-ast.h │ │ │ ├── Python.h │ │ │ ├── abstract.h │ │ │ ├── accu.h │ │ │ ├── asdl.h │ │ │ ├── ast.h │ │ │ ├── bitset.h │ │ │ ├── bltinmodule.h │ │ │ ├── boolobject.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytes_methods.h │ │ │ ├── bytesobject.h │ │ │ ├── cellobject.h │ │ │ ├── ceval.h │ │ │ ├── classobject.h │ │ │ ├── code.h │ │ │ ├── codecs.h │ │ │ ├── compile.h │ │ │ ├── complexobject.h │ │ │ ├── datetime.h │ │ │ ├── descrobject.h │ │ │ ├── dictobject.h │ │ │ ├── dtoa.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── enumobject.h │ │ │ ├── errcode.h │ │ │ ├── eval.h │ │ │ ├── fileobject.h │ │ │ ├── fileutils.h │ │ │ ├── floatobject.h │ │ │ ├── frameobject.h │ │ │ ├── funcobject.h │ │ │ ├── genobject.h │ │ │ ├── graminit.h │ │ │ ├── grammar.h │ │ │ ├── import.h │ │ │ ├── intrcheck.h │ │ │ ├── iterobject.h │ │ │ ├── listobject.h │ │ │ ├── longintrepr.h │ │ │ ├── longobject.h │ │ │ ├── marshal.h │ │ │ ├── memoryobject.h │ │ │ ├── metagrammar.h │ │ │ ├── methodobject.h │ │ │ ├── modsupport.h │ │ │ ├── moduleobject.h │ │ │ ├── namespaceobject.h │ │ │ ├── node.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── odictobject.h │ │ │ ├── opcode.h │ │ │ ├── osdefs.h │ │ │ ├── osmodule.h │ │ │ ├── parsetok.h │ │ │ ├── patchlevel.h │ │ │ ├── pgen.h │ │ │ ├── pgenheaders.h │ │ │ ├── py_curses.h │ │ │ ├── pyarena.h │ │ │ ├── pyatomic.h │ │ │ ├── pycapsule.h │ │ │ ├── pyctype.h │ │ │ ├── pydebug.h │ │ │ ├── pydtrace.d │ │ │ ├── pydtrace.h │ │ │ ├── pyerrors.h │ │ │ ├── pyexpat.h │ │ │ ├── pyfpe.h │ │ │ ├── pygetopt.h │ │ │ ├── pyhash.h │ │ │ ├── pylifecycle.h │ │ │ ├── pymacconfig.h │ │ │ ├── pymacro.h │ │ │ ├── pymath.h │ │ │ ├── pymem.h │ │ │ ├── pyport.h │ │ │ ├── pystate.h │ │ │ ├── pystrcmp.h │ │ │ ├── pystrhex.h │ │ │ ├── pystrtod.h │ │ │ ├── pythonrun.h │ │ │ ├── pythread.h │ │ │ ├── pytime.h │ │ │ ├── rangeobject.h │ │ │ ├── setobject.h │ │ │ ├── sliceobject.h │ │ │ ├── structmember.h │ │ │ ├── structseq.h │ │ │ ├── symtable.h │ │ │ ├── sysmodule.h │ │ │ ├── token.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ ├── typeslots.h │ │ │ ├── ucnhash.h │ │ │ ├── unicodeobject.h │ │ │ ├── warnings.h │ │ │ └── weakrefobject.h │ │ │ ├── LICENSE │ │ │ ├── Lib │ │ │ ├── __future__.py │ │ │ ├── __phello__.foo.py │ │ │ ├── _bootlocale.py │ │ │ ├── _collections_abc.py │ │ │ ├── _compat_pickle.py │ │ │ ├── _compression.py │ │ │ ├── _dummy_thread.py │ │ │ ├── _markupbase.py │ │ │ ├── _osx_support.py │ │ │ ├── _pydecimal.py │ │ │ ├── _pyio.py │ │ │ ├── _sitebuiltins.py │ │ │ ├── _strptime.py │ │ │ ├── _threading_local.py │ │ │ ├── _weakrefset.py │ │ │ ├── abc.py │ │ │ ├── aifc.py │ │ │ ├── antigravity.py │ │ │ ├── argparse.py │ │ │ ├── ast.py │ │ │ ├── asynchat.py │ │ │ ├── asyncio │ │ │ │ ├── __init__.py │ │ │ │ ├── base_events.py │ │ │ │ ├── base_futures.py │ │ │ │ ├── base_subprocess.py │ │ │ │ ├── base_tasks.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── coroutines.py │ │ │ │ ├── events.py │ │ │ │ ├── futures.py │ │ │ │ ├── locks.py │ │ │ │ ├── log.py │ │ │ │ ├── proactor_events.py │ │ │ │ ├── protocols.py │ │ │ │ ├── queues.py │ │ │ │ ├── selector_events.py │ │ │ │ ├── sslproto.py │ │ │ │ ├── streams.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── tasks.py │ │ │ │ ├── test_utils.py │ │ │ │ ├── transports.py │ │ │ │ ├── unix_events.py │ │ │ │ ├── windows_events.py │ │ │ │ └── windows_utils.py │ │ │ ├── asyncore.py │ │ │ ├── base64.py │ │ │ ├── bdb.py │ │ │ ├── binhex.py │ │ │ ├── bisect.py │ │ │ ├── bz2.py │ │ │ ├── cProfile.py │ │ │ ├── calendar.py │ │ │ ├── cgi.py │ │ │ ├── cgitb.py │ │ │ ├── chunk.py │ │ │ ├── cmd.py │ │ │ ├── code.py │ │ │ ├── codecs.py │ │ │ ├── codeop.py │ │ │ ├── collections │ │ │ │ ├── __init__.py │ │ │ │ └── abc.py │ │ │ ├── colorsys.py │ │ │ ├── compileall.py │ │ │ ├── concurrent │ │ │ │ ├── __init__.py │ │ │ │ └── futures │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── process.py │ │ │ │ │ └── thread.py │ │ │ ├── configparser.py │ │ │ ├── contextlib.py │ │ │ ├── copy.py │ │ │ ├── copyreg.py │ │ │ ├── crypt.py │ │ │ ├── csv.py │ │ │ ├── ctypes │ │ │ │ ├── __init__.py │ │ │ │ ├── _endian.py │ │ │ │ ├── macholib │ │ │ │ │ ├── README.ctypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dyld.py │ │ │ │ │ ├── dylib.py │ │ │ │ │ ├── fetch_macholib │ │ │ │ │ ├── fetch_macholib.bat │ │ │ │ │ └── framework.py │ │ │ │ ├── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_anon.py │ │ │ │ │ ├── test_array_in_pointer.py │ │ │ │ │ ├── test_arrays.py │ │ │ │ │ ├── test_as_parameter.py │ │ │ │ │ ├── test_bitfields.py │ │ │ │ │ ├── test_buffers.py │ │ │ │ │ ├── test_bytes.py │ │ │ │ │ ├── test_byteswap.py │ │ │ │ │ ├── test_callbacks.py │ │ │ │ │ ├── test_cast.py │ │ │ │ │ ├── test_cfuncs.py │ │ │ │ │ ├── test_checkretval.py │ │ │ │ │ ├── test_delattr.py │ │ │ │ │ ├── test_errno.py │ │ │ │ │ ├── test_find.py │ │ │ │ │ ├── test_frombuffer.py │ │ │ │ │ ├── test_funcptr.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_incomplete.py │ │ │ │ │ ├── test_init.py │ │ │ │ │ ├── test_internals.py │ │ │ │ │ ├── test_keeprefs.py │ │ │ │ │ ├── test_libc.py │ │ │ │ │ ├── test_loading.py │ │ │ │ │ ├── test_macholib.py │ │ │ │ │ ├── test_memfunctions.py │ │ │ │ │ ├── test_numbers.py │ │ │ │ │ ├── test_objects.py │ │ │ │ │ ├── test_parameters.py │ │ │ │ │ ├── test_pep3118.py │ │ │ │ │ ├── test_pickling.py │ │ │ │ │ ├── test_pointers.py │ │ │ │ │ ├── test_prototypes.py │ │ │ │ │ ├── test_python_api.py │ │ │ │ │ ├── test_random_things.py │ │ │ │ │ ├── test_refcounts.py │ │ │ │ │ ├── test_repr.py │ │ │ │ │ ├── test_returnfuncptrs.py │ │ │ │ │ ├── test_simplesubclasses.py │ │ │ │ │ ├── test_sizes.py │ │ │ │ │ ├── test_slicing.py │ │ │ │ │ ├── test_stringptr.py │ │ │ │ │ ├── test_strings.py │ │ │ │ │ ├── test_struct_fields.py │ │ │ │ │ ├── test_structures.py │ │ │ │ │ ├── test_unaligned_structures.py │ │ │ │ │ ├── test_unicode.py │ │ │ │ │ ├── test_values.py │ │ │ │ │ ├── test_varsize_struct.py │ │ │ │ │ ├── test_win32.py │ │ │ │ │ └── test_wintypes.py │ │ │ │ ├── util.py │ │ │ │ └── wintypes.py │ │ │ ├── curses │ │ │ │ ├── __init__.py │ │ │ │ ├── ascii.py │ │ │ │ ├── has_key.py │ │ │ │ ├── panel.py │ │ │ │ └── textpad.py │ │ │ ├── datetime.py │ │ │ ├── dbm │ │ │ │ ├── __init__.py │ │ │ │ ├── dumb.py │ │ │ │ ├── gnu.py │ │ │ │ └── ndbm.py │ │ │ ├── decimal.py │ │ │ ├── difflib.py │ │ │ ├── dis.py │ │ │ ├── distutils │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── _msvccompiler.py │ │ │ │ ├── archive_util.py │ │ │ │ ├── bcppcompiler.py │ │ │ │ ├── ccompiler.py │ │ │ │ ├── cmd.py │ │ │ │ ├── command │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bdist.py │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── build_clib.py │ │ │ │ │ ├── build_ext.py │ │ │ │ │ ├── build_py.py │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── clean.py │ │ │ │ │ ├── command_template │ │ │ │ │ ├── config.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── install_data.py │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ ├── install_headers.py │ │ │ │ │ ├── install_lib.py │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ ├── register.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ ├── upload.py │ │ │ │ │ ├── wininst-10.0-amd64.exe │ │ │ │ │ ├── wininst-10.0.exe │ │ │ │ │ ├── wininst-14.0-amd64.exe │ │ │ │ │ ├── wininst-14.0.exe │ │ │ │ │ ├── wininst-6.0.exe │ │ │ │ │ ├── wininst-7.1.exe │ │ │ │ │ ├── wininst-8.0.exe │ │ │ │ │ ├── wininst-9.0-amd64.exe │ │ │ │ │ └── wininst-9.0.exe │ │ │ │ ├── config.py │ │ │ │ ├── core.py │ │ │ │ ├── cygwinccompiler.py │ │ │ │ ├── debug.py │ │ │ │ ├── dep_util.py │ │ │ │ ├── dir_util.py │ │ │ │ ├── dist.py │ │ │ │ ├── errors.py │ │ │ │ ├── extension.py │ │ │ │ ├── fancy_getopt.py │ │ │ │ ├── file_util.py │ │ │ │ ├── filelist.py │ │ │ │ ├── log.py │ │ │ │ ├── msvc9compiler.py │ │ │ │ ├── msvccompiler.py │ │ │ │ ├── spawn.py │ │ │ │ ├── sysconfig.py │ │ │ │ ├── tests │ │ │ │ │ ├── Setup.sample │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── support.py │ │ │ │ │ ├── test_archive_util.py │ │ │ │ │ ├── test_bdist.py │ │ │ │ │ ├── test_bdist_dumb.py │ │ │ │ │ ├── test_bdist_msi.py │ │ │ │ │ ├── test_bdist_rpm.py │ │ │ │ │ ├── test_bdist_wininst.py │ │ │ │ │ ├── test_build.py │ │ │ │ │ ├── test_build_clib.py │ │ │ │ │ ├── test_build_ext.py │ │ │ │ │ ├── test_build_py.py │ │ │ │ │ ├── test_build_scripts.py │ │ │ │ │ ├── test_check.py │ │ │ │ │ ├── test_clean.py │ │ │ │ │ ├── test_cmd.py │ │ │ │ │ ├── test_config.py │ │ │ │ │ ├── test_config_cmd.py │ │ │ │ │ ├── test_core.py │ │ │ │ │ ├── test_cygwinccompiler.py │ │ │ │ │ ├── test_dep_util.py │ │ │ │ │ ├── test_dir_util.py │ │ │ │ │ ├── test_dist.py │ │ │ │ │ ├── test_extension.py │ │ │ │ │ ├── test_file_util.py │ │ │ │ │ ├── test_filelist.py │ │ │ │ │ ├── test_install.py │ │ │ │ │ ├── test_install_data.py │ │ │ │ │ ├── test_install_headers.py │ │ │ │ │ ├── test_install_lib.py │ │ │ │ │ ├── test_install_scripts.py │ │ │ │ │ ├── test_log.py │ │ │ │ │ ├── test_msvc9compiler.py │ │ │ │ │ ├── test_msvccompiler.py │ │ │ │ │ ├── test_register.py │ │ │ │ │ ├── test_sdist.py │ │ │ │ │ ├── test_spawn.py │ │ │ │ │ ├── test_sysconfig.py │ │ │ │ │ ├── test_text_file.py │ │ │ │ │ ├── test_unixccompiler.py │ │ │ │ │ ├── test_upload.py │ │ │ │ │ ├── test_util.py │ │ │ │ │ ├── test_version.py │ │ │ │ │ └── test_versionpredicate.py │ │ │ │ ├── text_file.py │ │ │ │ ├── unixccompiler.py │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ └── versionpredicate.py │ │ │ ├── doctest.py │ │ │ ├── dummy_threading.py │ │ │ ├── email │ │ │ │ ├── __init__.py │ │ │ │ ├── _encoded_words.py │ │ │ │ ├── _header_value_parser.py │ │ │ │ ├── _parseaddr.py │ │ │ │ ├── _policybase.py │ │ │ │ ├── architecture.rst │ │ │ │ ├── base64mime.py │ │ │ │ ├── charset.py │ │ │ │ ├── contentmanager.py │ │ │ │ ├── encoders.py │ │ │ │ ├── errors.py │ │ │ │ ├── feedparser.py │ │ │ │ ├── generator.py │ │ │ │ ├── header.py │ │ │ │ ├── headerregistry.py │ │ │ │ ├── iterators.py │ │ │ │ ├── message.py │ │ │ │ ├── mime │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── application.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── image.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── multipart.py │ │ │ │ │ ├── nonmultipart.py │ │ │ │ │ └── text.py │ │ │ │ ├── parser.py │ │ │ │ ├── policy.py │ │ │ │ ├── quoprimime.py │ │ │ │ └── utils.py │ │ │ ├── encodings │ │ │ │ ├── __init__.py │ │ │ │ ├── aliases.py │ │ │ │ ├── ascii.py │ │ │ │ ├── base64_codec.py │ │ │ │ ├── big5.py │ │ │ │ ├── big5hkscs.py │ │ │ │ ├── bz2_codec.py │ │ │ │ ├── charmap.py │ │ │ │ ├── cp037.py │ │ │ │ ├── cp1006.py │ │ │ │ ├── cp1026.py │ │ │ │ ├── cp1125.py │ │ │ │ ├── cp1140.py │ │ │ │ ├── cp1250.py │ │ │ │ ├── cp1251.py │ │ │ │ ├── cp1252.py │ │ │ │ ├── cp1253.py │ │ │ │ ├── cp1254.py │ │ │ │ ├── cp1255.py │ │ │ │ ├── cp1256.py │ │ │ │ ├── cp1257.py │ │ │ │ ├── cp1258.py │ │ │ │ ├── cp273.py │ │ │ │ ├── cp424.py │ │ │ │ ├── cp437.py │ │ │ │ ├── cp500.py │ │ │ │ ├── cp65001.py │ │ │ │ ├── cp720.py │ │ │ │ ├── cp737.py │ │ │ │ ├── cp775.py │ │ │ │ ├── cp850.py │ │ │ │ ├── cp852.py │ │ │ │ ├── cp855.py │ │ │ │ ├── cp856.py │ │ │ │ ├── cp857.py │ │ │ │ ├── cp858.py │ │ │ │ ├── cp860.py │ │ │ │ ├── cp861.py │ │ │ │ ├── cp862.py │ │ │ │ ├── cp863.py │ │ │ │ ├── cp864.py │ │ │ │ ├── cp865.py │ │ │ │ ├── cp866.py │ │ │ │ ├── cp869.py │ │ │ │ ├── cp874.py │ │ │ │ ├── cp875.py │ │ │ │ ├── cp932.py │ │ │ │ ├── cp949.py │ │ │ │ ├── cp950.py │ │ │ │ ├── euc_jis_2004.py │ │ │ │ ├── euc_jisx0213.py │ │ │ │ ├── euc_jp.py │ │ │ │ ├── euc_kr.py │ │ │ │ ├── gb18030.py │ │ │ │ ├── gb2312.py │ │ │ │ ├── gbk.py │ │ │ │ ├── hex_codec.py │ │ │ │ ├── hp_roman8.py │ │ │ │ ├── hz.py │ │ │ │ ├── idna.py │ │ │ │ ├── iso2022_jp.py │ │ │ │ ├── iso2022_jp_1.py │ │ │ │ ├── iso2022_jp_2.py │ │ │ │ ├── iso2022_jp_2004.py │ │ │ │ ├── iso2022_jp_3.py │ │ │ │ ├── iso2022_jp_ext.py │ │ │ │ ├── iso2022_kr.py │ │ │ │ ├── iso8859_1.py │ │ │ │ ├── iso8859_10.py │ │ │ │ ├── iso8859_11.py │ │ │ │ ├── iso8859_13.py │ │ │ │ ├── iso8859_14.py │ │ │ │ ├── iso8859_15.py │ │ │ │ ├── iso8859_16.py │ │ │ │ ├── iso8859_2.py │ │ │ │ ├── iso8859_3.py │ │ │ │ ├── iso8859_4.py │ │ │ │ ├── iso8859_5.py │ │ │ │ ├── iso8859_6.py │ │ │ │ ├── iso8859_7.py │ │ │ │ ├── iso8859_8.py │ │ │ │ ├── iso8859_9.py │ │ │ │ ├── johab.py │ │ │ │ ├── koi8_r.py │ │ │ │ ├── koi8_t.py │ │ │ │ ├── koi8_u.py │ │ │ │ ├── kz1048.py │ │ │ │ ├── latin_1.py │ │ │ │ ├── mac_arabic.py │ │ │ │ ├── mac_centeuro.py │ │ │ │ ├── mac_croatian.py │ │ │ │ ├── mac_cyrillic.py │ │ │ │ ├── mac_farsi.py │ │ │ │ ├── mac_greek.py │ │ │ │ ├── mac_iceland.py │ │ │ │ ├── mac_latin2.py │ │ │ │ ├── mac_roman.py │ │ │ │ ├── mac_romanian.py │ │ │ │ ├── mac_turkish.py │ │ │ │ ├── mbcs.py │ │ │ │ ├── oem.py │ │ │ │ ├── palmos.py │ │ │ │ ├── ptcp154.py │ │ │ │ ├── punycode.py │ │ │ │ ├── quopri_codec.py │ │ │ │ ├── raw_unicode_escape.py │ │ │ │ ├── rot_13.py │ │ │ │ ├── shift_jis.py │ │ │ │ ├── shift_jis_2004.py │ │ │ │ ├── shift_jisx0213.py │ │ │ │ ├── tis_620.py │ │ │ │ ├── undefined.py │ │ │ │ ├── unicode_escape.py │ │ │ │ ├── unicode_internal.py │ │ │ │ ├── utf_16.py │ │ │ │ ├── utf_16_be.py │ │ │ │ ├── utf_16_le.py │ │ │ │ ├── utf_32.py │ │ │ │ ├── utf_32_be.py │ │ │ │ ├── utf_32_le.py │ │ │ │ ├── utf_7.py │ │ │ │ ├── utf_8.py │ │ │ │ ├── utf_8_sig.py │ │ │ │ ├── uu_codec.py │ │ │ │ └── zlib_codec.py │ │ │ ├── ensurepip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _bundled │ │ │ │ │ ├── pip-18.1-py2.py3-none-any.whl │ │ │ │ │ └── setuptools-40.6.2-py2.py3-none-any.whl │ │ │ │ └── _uninstall.py │ │ │ ├── enum.py │ │ │ ├── filecmp.py │ │ │ ├── fileinput.py │ │ │ ├── fnmatch.py │ │ │ ├── formatter.py │ │ │ ├── fractions.py │ │ │ ├── ftplib.py │ │ │ ├── functools.py │ │ │ ├── genericpath.py │ │ │ ├── getopt.py │ │ │ ├── getpass.py │ │ │ ├── gettext.py │ │ │ ├── glob.py │ │ │ ├── gzip.py │ │ │ ├── hashlib.py │ │ │ ├── heapq.py │ │ │ ├── hmac.py │ │ │ ├── html │ │ │ │ ├── __init__.py │ │ │ │ ├── entities.py │ │ │ │ └── parser.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── cookiejar.py │ │ │ │ ├── cookies.py │ │ │ │ └── server.py │ │ │ ├── idlelib │ │ │ │ ├── CREDITS.txt │ │ │ │ ├── ChangeLog │ │ │ │ ├── HISTORY.txt │ │ │ │ ├── Icons │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── idle.icns │ │ │ │ │ ├── idle.ico │ │ │ │ │ ├── idle_16.gif │ │ │ │ │ ├── idle_16.png │ │ │ │ │ ├── idle_32.gif │ │ │ │ │ ├── idle_32.png │ │ │ │ │ ├── idle_48.gif │ │ │ │ │ ├── idle_48.png │ │ │ │ │ ├── minusnode.gif │ │ │ │ │ ├── openfolder.gif │ │ │ │ │ ├── plusnode.gif │ │ │ │ │ ├── python.gif │ │ │ │ │ └── tk.gif │ │ │ │ ├── NEWS.txt │ │ │ │ ├── NEWS2x.txt │ │ │ │ ├── README.txt │ │ │ │ ├── TODO.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _pyclbr.py │ │ │ │ ├── autocomplete.py │ │ │ │ ├── autocomplete_w.py │ │ │ │ ├── autoexpand.py │ │ │ │ ├── browser.py │ │ │ │ ├── calltip.py │ │ │ │ ├── calltip_w.py │ │ │ │ ├── codecontext.py │ │ │ │ ├── colorizer.py │ │ │ │ ├── config-extensions.def │ │ │ │ ├── config-highlight.def │ │ │ │ ├── config-keys.def │ │ │ │ ├── config-main.def │ │ │ │ ├── config.py │ │ │ │ ├── config_key.py │ │ │ │ ├── configdialog.py │ │ │ │ ├── debugger.py │ │ │ │ ├── debugger_r.py │ │ │ │ ├── debugobj.py │ │ │ │ ├── debugobj_r.py │ │ │ │ ├── delegator.py │ │ │ │ ├── dynoption.py │ │ │ │ ├── editor.py │ │ │ │ ├── extend.txt │ │ │ │ ├── filelist.py │ │ │ │ ├── grep.py │ │ │ │ ├── help.html │ │ │ │ ├── help.py │ │ │ │ ├── help_about.py │ │ │ │ ├── history.py │ │ │ │ ├── hyperparser.py │ │ │ │ ├── idle.bat │ │ │ │ ├── idle.py │ │ │ │ ├── idle.pyw │ │ │ │ ├── idle_test │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── htest.py │ │ │ │ │ ├── mock_idle.py │ │ │ │ │ ├── mock_tk.py │ │ │ │ │ ├── template.py │ │ │ │ │ ├── test_autocomplete.py │ │ │ │ │ ├── test_autocomplete_w.py │ │ │ │ │ ├── test_autoexpand.py │ │ │ │ │ ├── test_browser.py │ │ │ │ │ ├── test_calltip.py │ │ │ │ │ ├── test_calltip_w.py │ │ │ │ │ ├── test_codecontext.py │ │ │ │ │ ├── test_colorizer.py │ │ │ │ │ ├── test_config.py │ │ │ │ │ ├── test_config_key.py │ │ │ │ │ ├── test_configdialog.py │ │ │ │ │ ├── test_debugger.py │ │ │ │ │ ├── test_debugger_r.py │ │ │ │ │ ├── test_debugobj.py │ │ │ │ │ ├── test_debugobj_r.py │ │ │ │ │ ├── test_delegator.py │ │ │ │ │ ├── test_editmenu.py │ │ │ │ │ ├── test_editor.py │ │ │ │ │ ├── test_filelist.py │ │ │ │ │ ├── test_grep.py │ │ │ │ │ ├── test_help.py │ │ │ │ │ ├── test_help_about.py │ │ │ │ │ ├── test_history.py │ │ │ │ │ ├── test_hyperparser.py │ │ │ │ │ ├── test_iomenu.py │ │ │ │ │ ├── test_macosx.py │ │ │ │ │ ├── test_mainmenu.py │ │ │ │ │ ├── test_multicall.py │ │ │ │ │ ├── test_outwin.py │ │ │ │ │ ├── test_paragraph.py │ │ │ │ │ ├── test_parenmatch.py │ │ │ │ │ ├── test_pathbrowser.py │ │ │ │ │ ├── test_percolator.py │ │ │ │ │ ├── test_pyparse.py │ │ │ │ │ ├── test_pyshell.py │ │ │ │ │ ├── test_query.py │ │ │ │ │ ├── test_redirector.py │ │ │ │ │ ├── test_replace.py │ │ │ │ │ ├── test_rpc.py │ │ │ │ │ ├── test_rstrip.py │ │ │ │ │ ├── test_run.py │ │ │ │ │ ├── test_runscript.py │ │ │ │ │ ├── test_scrolledlist.py │ │ │ │ │ ├── test_search.py │ │ │ │ │ ├── test_searchbase.py │ │ │ │ │ ├── test_searchengine.py │ │ │ │ │ ├── test_squeezer.py │ │ │ │ │ ├── test_stackviewer.py │ │ │ │ │ ├── test_statusbar.py │ │ │ │ │ ├── test_text.py │ │ │ │ │ ├── test_textview.py │ │ │ │ │ ├── test_tooltip.py │ │ │ │ │ ├── test_tree.py │ │ │ │ │ ├── test_undo.py │ │ │ │ │ ├── test_warning.py │ │ │ │ │ ├── test_window.py │ │ │ │ │ └── test_zoomheight.py │ │ │ │ ├── iomenu.py │ │ │ │ ├── macosx.py │ │ │ │ ├── mainmenu.py │ │ │ │ ├── multicall.py │ │ │ │ ├── outwin.py │ │ │ │ ├── paragraph.py │ │ │ │ ├── parenmatch.py │ │ │ │ ├── pathbrowser.py │ │ │ │ ├── percolator.py │ │ │ │ ├── pyparse.py │ │ │ │ ├── pyshell.py │ │ │ │ ├── query.py │ │ │ │ ├── redirector.py │ │ │ │ ├── replace.py │ │ │ │ ├── rpc.py │ │ │ │ ├── rstrip.py │ │ │ │ ├── run.py │ │ │ │ ├── runscript.py │ │ │ │ ├── scrolledlist.py │ │ │ │ ├── search.py │ │ │ │ ├── searchbase.py │ │ │ │ ├── searchengine.py │ │ │ │ ├── squeezer.py │ │ │ │ ├── stackviewer.py │ │ │ │ ├── statusbar.py │ │ │ │ ├── textview.py │ │ │ │ ├── tooltip.py │ │ │ │ ├── tree.py │ │ │ │ ├── undo.py │ │ │ │ ├── window.py │ │ │ │ ├── zoomheight.py │ │ │ │ └── zzdummy.py │ │ │ ├── imaplib.py │ │ │ ├── imghdr.py │ │ │ ├── imp.py │ │ │ ├── importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── _bootstrap.py │ │ │ │ ├── _bootstrap_external.py │ │ │ │ ├── abc.py │ │ │ │ ├── machinery.py │ │ │ │ └── util.py │ │ │ ├── inspect.py │ │ │ ├── io.py │ │ │ ├── ipaddress.py │ │ │ ├── json │ │ │ │ ├── __init__.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── scanner.py │ │ │ │ └── tool.py │ │ │ ├── keyword.py │ │ │ ├── lib2to3 │ │ │ │ ├── Grammar.txt │ │ │ │ ├── PatternGrammar.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── btm_matcher.py │ │ │ │ ├── btm_utils.py │ │ │ │ ├── fixer_base.py │ │ │ │ ├── fixer_util.py │ │ │ │ ├── fixes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fix_apply.py │ │ │ │ │ ├── fix_asserts.py │ │ │ │ │ ├── fix_basestring.py │ │ │ │ │ ├── fix_buffer.py │ │ │ │ │ ├── fix_dict.py │ │ │ │ │ ├── fix_except.py │ │ │ │ │ ├── fix_exec.py │ │ │ │ │ ├── fix_execfile.py │ │ │ │ │ ├── fix_exitfunc.py │ │ │ │ │ ├── fix_filter.py │ │ │ │ │ ├── fix_funcattrs.py │ │ │ │ │ ├── fix_future.py │ │ │ │ │ ├── fix_getcwdu.py │ │ │ │ │ ├── fix_has_key.py │ │ │ │ │ ├── fix_idioms.py │ │ │ │ │ ├── fix_import.py │ │ │ │ │ ├── fix_imports.py │ │ │ │ │ ├── fix_imports2.py │ │ │ │ │ ├── fix_input.py │ │ │ │ │ ├── fix_intern.py │ │ │ │ │ ├── fix_isinstance.py │ │ │ │ │ ├── fix_itertools.py │ │ │ │ │ ├── fix_itertools_imports.py │ │ │ │ │ ├── fix_long.py │ │ │ │ │ ├── fix_map.py │ │ │ │ │ ├── fix_metaclass.py │ │ │ │ │ ├── fix_methodattrs.py │ │ │ │ │ ├── fix_ne.py │ │ │ │ │ ├── fix_next.py │ │ │ │ │ ├── fix_nonzero.py │ │ │ │ │ ├── fix_numliterals.py │ │ │ │ │ ├── fix_operator.py │ │ │ │ │ ├── fix_paren.py │ │ │ │ │ ├── fix_print.py │ │ │ │ │ ├── fix_raise.py │ │ │ │ │ ├── fix_raw_input.py │ │ │ │ │ ├── fix_reduce.py │ │ │ │ │ ├── fix_reload.py │ │ │ │ │ ├── fix_renames.py │ │ │ │ │ ├── fix_repr.py │ │ │ │ │ ├── fix_set_literal.py │ │ │ │ │ ├── fix_standarderror.py │ │ │ │ │ ├── fix_sys_exc.py │ │ │ │ │ ├── fix_throw.py │ │ │ │ │ ├── fix_tuple_params.py │ │ │ │ │ ├── fix_types.py │ │ │ │ │ ├── fix_unicode.py │ │ │ │ │ ├── fix_urllib.py │ │ │ │ │ ├── fix_ws_comma.py │ │ │ │ │ ├── fix_xrange.py │ │ │ │ │ ├── fix_xreadlines.py │ │ │ │ │ └── fix_zip.py │ │ │ │ ├── main.py │ │ │ │ ├── patcomp.py │ │ │ │ ├── pgen2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conv.py │ │ │ │ │ ├── driver.py │ │ │ │ │ ├── grammar.py │ │ │ │ │ ├── literals.py │ │ │ │ │ ├── parse.py │ │ │ │ │ ├── pgen.py │ │ │ │ │ ├── token.py │ │ │ │ │ └── tokenize.py │ │ │ │ ├── pygram.py │ │ │ │ ├── pytree.py │ │ │ │ ├── refactor.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── data │ │ │ │ │ ├── README │ │ │ │ │ ├── bom.py │ │ │ │ │ ├── crlf.py │ │ │ │ │ ├── different_encoding.py │ │ │ │ │ ├── false_encoding.py │ │ │ │ │ ├── fixers │ │ │ │ │ │ ├── bad_order.py │ │ │ │ │ │ ├── myfixes │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ │ │ ├── fix_first.py │ │ │ │ │ │ │ ├── fix_last.py │ │ │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ │ │ └── fix_preorder.py │ │ │ │ │ │ ├── no_fixer_cls.py │ │ │ │ │ │ └── parrot_example.py │ │ │ │ │ ├── infinite_recursion.py │ │ │ │ │ ├── py2_test_grammar.py │ │ │ │ │ └── py3_test_grammar.py │ │ │ │ │ ├── pytree_idempotency.py │ │ │ │ │ ├── support.py │ │ │ │ │ ├── test_all_fixers.py │ │ │ │ │ ├── test_fixers.py │ │ │ │ │ ├── test_main.py │ │ │ │ │ ├── test_parser.py │ │ │ │ │ ├── test_pytree.py │ │ │ │ │ ├── test_refactor.py │ │ │ │ │ └── test_util.py │ │ │ ├── linecache.py │ │ │ ├── locale.py │ │ │ ├── logging │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── handlers.py │ │ │ ├── lzma.py │ │ │ ├── macpath.py │ │ │ ├── macurl2path.py │ │ │ ├── mailbox.py │ │ │ ├── mailcap.py │ │ │ ├── mimetypes.py │ │ │ ├── modulefinder.py │ │ │ ├── msilib │ │ │ │ ├── __init__.py │ │ │ │ ├── schema.py │ │ │ │ ├── sequence.py │ │ │ │ └── text.py │ │ │ ├── multiprocessing │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── context.py │ │ │ │ ├── dummy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── connection.py │ │ │ │ ├── forkserver.py │ │ │ │ ├── heap.py │ │ │ │ ├── managers.py │ │ │ │ ├── pool.py │ │ │ │ ├── popen_fork.py │ │ │ │ ├── popen_forkserver.py │ │ │ │ ├── popen_spawn_posix.py │ │ │ │ ├── popen_spawn_win32.py │ │ │ │ ├── process.py │ │ │ │ ├── queues.py │ │ │ │ ├── reduction.py │ │ │ │ ├── resource_sharer.py │ │ │ │ ├── semaphore_tracker.py │ │ │ │ ├── sharedctypes.py │ │ │ │ ├── spawn.py │ │ │ │ ├── synchronize.py │ │ │ │ └── util.py │ │ │ ├── netrc.py │ │ │ ├── nntplib.py │ │ │ ├── ntpath.py │ │ │ ├── nturl2path.py │ │ │ ├── numbers.py │ │ │ ├── opcode.py │ │ │ ├── operator.py │ │ │ ├── optparse.py │ │ │ ├── os.py │ │ │ ├── pathlib.py │ │ │ ├── pdb.py │ │ │ ├── pickle.py │ │ │ ├── pickletools.py │ │ │ ├── pipes.py │ │ │ ├── pkgutil.py │ │ │ ├── platform.py │ │ │ ├── plistlib.py │ │ │ ├── poplib.py │ │ │ ├── posixpath.py │ │ │ ├── pprint.py │ │ │ ├── profile.py │ │ │ ├── pstats.py │ │ │ ├── pty.py │ │ │ ├── py_compile.py │ │ │ ├── pyclbr.py │ │ │ ├── pydoc.py │ │ │ ├── pydoc_data │ │ │ │ ├── __init__.py │ │ │ │ ├── _pydoc.css │ │ │ │ └── topics.py │ │ │ ├── queue.py │ │ │ ├── quopri.py │ │ │ ├── random.py │ │ │ ├── re.py │ │ │ ├── reprlib.py │ │ │ ├── rlcompleter.py │ │ │ ├── runpy.py │ │ │ ├── sched.py │ │ │ ├── secrets.py │ │ │ ├── selectors.py │ │ │ ├── shelve.py │ │ │ ├── shlex.py │ │ │ ├── shutil.py │ │ │ ├── signal.py │ │ │ ├── site-packages │ │ │ │ └── README.txt │ │ │ ├── site.py │ │ │ ├── smtpd.py │ │ │ ├── smtplib.py │ │ │ ├── sndhdr.py │ │ │ ├── socket.py │ │ │ ├── socketserver.py │ │ │ ├── sqlite3 │ │ │ │ ├── __init__.py │ │ │ │ ├── dbapi2.py │ │ │ │ ├── dump.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dbapi.py │ │ │ │ │ ├── dump.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── regression.py │ │ │ │ │ ├── transactions.py │ │ │ │ │ ├── types.py │ │ │ │ │ └── userfunctions.py │ │ │ ├── sre_compile.py │ │ │ ├── sre_constants.py │ │ │ ├── sre_parse.py │ │ │ ├── ssl.py │ │ │ ├── stat.py │ │ │ ├── statistics.py │ │ │ ├── string.py │ │ │ ├── stringprep.py │ │ │ ├── struct.py │ │ │ ├── subprocess.py │ │ │ ├── sunau.py │ │ │ ├── symbol.py │ │ │ ├── symtable.py │ │ │ ├── sysconfig.py │ │ │ ├── tabnanny.py │ │ │ ├── tarfile.py │ │ │ ├── telnetlib.py │ │ │ ├── tempfile.py │ │ │ ├── test │ │ │ │ ├── Sine-1000Hz-300ms.aif │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _test_multiprocessing.py │ │ │ │ ├── allsans.pem │ │ │ │ ├── ann_module.py │ │ │ │ ├── ann_module2.py │ │ │ │ ├── ann_module3.py │ │ │ │ ├── audiodata │ │ │ │ │ ├── pluck-alaw.aifc │ │ │ │ │ ├── pluck-pcm16.aiff │ │ │ │ │ ├── pluck-pcm16.au │ │ │ │ │ ├── pluck-pcm16.wav │ │ │ │ │ ├── pluck-pcm24.aiff │ │ │ │ │ ├── pluck-pcm24.au │ │ │ │ │ ├── pluck-pcm24.wav │ │ │ │ │ ├── pluck-pcm32.aiff │ │ │ │ │ ├── pluck-pcm32.au │ │ │ │ │ ├── pluck-pcm32.wav │ │ │ │ │ ├── pluck-pcm8.aiff │ │ │ │ │ ├── pluck-pcm8.au │ │ │ │ │ ├── pluck-pcm8.wav │ │ │ │ │ ├── pluck-ulaw.aifc │ │ │ │ │ └── pluck-ulaw.au │ │ │ │ ├── audiotest.au │ │ │ │ ├── audiotests.py │ │ │ │ ├── autotest.py │ │ │ │ ├── bad_coding.py │ │ │ │ ├── bad_coding2.py │ │ │ │ ├── badcert.pem │ │ │ │ ├── badkey.pem │ │ │ │ ├── badsyntax_3131.py │ │ │ │ ├── badsyntax_future10.py │ │ │ │ ├── badsyntax_future3.py │ │ │ │ ├── badsyntax_future4.py │ │ │ │ ├── badsyntax_future5.py │ │ │ │ ├── badsyntax_future6.py │ │ │ │ ├── badsyntax_future7.py │ │ │ │ ├── badsyntax_future8.py │ │ │ │ ├── badsyntax_future9.py │ │ │ │ ├── badsyntax_pep3120.py │ │ │ │ ├── bisect.py │ │ │ │ ├── bytecode_helper.py │ │ │ │ ├── capath │ │ │ │ │ ├── 4e1295a3.0 │ │ │ │ │ ├── 5ed36f99.0 │ │ │ │ │ ├── 6e88d7b8.0 │ │ │ │ │ ├── 99d0fa06.0 │ │ │ │ │ ├── b1930218.0 │ │ │ │ │ └── ceff1710.0 │ │ │ │ ├── cfgparser.1 │ │ │ │ ├── cfgparser.2 │ │ │ │ ├── cfgparser.3 │ │ │ │ ├── cjkencodings │ │ │ │ │ ├── big5-utf8.txt │ │ │ │ │ ├── big5.txt │ │ │ │ │ ├── big5hkscs-utf8.txt │ │ │ │ │ ├── big5hkscs.txt │ │ │ │ │ ├── cp949-utf8.txt │ │ │ │ │ ├── cp949.txt │ │ │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ │ │ ├── euc_jisx0213.txt │ │ │ │ │ ├── euc_jp-utf8.txt │ │ │ │ │ ├── euc_jp.txt │ │ │ │ │ ├── euc_kr-utf8.txt │ │ │ │ │ ├── euc_kr.txt │ │ │ │ │ ├── gb18030-utf8.txt │ │ │ │ │ ├── gb18030.txt │ │ │ │ │ ├── gb2312-utf8.txt │ │ │ │ │ ├── gb2312.txt │ │ │ │ │ ├── gbk-utf8.txt │ │ │ │ │ ├── gbk.txt │ │ │ │ │ ├── hz-utf8.txt │ │ │ │ │ ├── hz.txt │ │ │ │ │ ├── iso2022_jp-utf8.txt │ │ │ │ │ ├── iso2022_jp.txt │ │ │ │ │ ├── iso2022_kr-utf8.txt │ │ │ │ │ ├── iso2022_kr.txt │ │ │ │ │ ├── johab-utf8.txt │ │ │ │ │ ├── johab.txt │ │ │ │ │ ├── shift_jis-utf8.txt │ │ │ │ │ ├── shift_jis.txt │ │ │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ │ │ └── shift_jisx0213.txt │ │ │ │ ├── cmath_testcases.txt │ │ │ │ ├── coding20731.py │ │ │ │ ├── crashers │ │ │ │ │ ├── README │ │ │ │ │ ├── bogus_code_obj.py │ │ │ │ │ ├── gc_inspection.py │ │ │ │ │ ├── infinite_loop_re.py │ │ │ │ │ ├── mutation_inside_cyclegc.py │ │ │ │ │ ├── recursive_call.py │ │ │ │ │ ├── trace_at_recursion_limit.py │ │ │ │ │ └── underlying_dict.py │ │ │ │ ├── curses_tests.py │ │ │ │ ├── datetimetester.py │ │ │ │ ├── decimaltestdata │ │ │ │ │ ├── abs.decTest │ │ │ │ │ ├── add.decTest │ │ │ │ │ ├── and.decTest │ │ │ │ │ ├── base.decTest │ │ │ │ │ ├── clamp.decTest │ │ │ │ │ ├── class.decTest │ │ │ │ │ ├── compare.decTest │ │ │ │ │ ├── comparetotal.decTest │ │ │ │ │ ├── comparetotmag.decTest │ │ │ │ │ ├── copy.decTest │ │ │ │ │ ├── copyabs.decTest │ │ │ │ │ ├── copynegate.decTest │ │ │ │ │ ├── copysign.decTest │ │ │ │ │ ├── ddAbs.decTest │ │ │ │ │ ├── ddAdd.decTest │ │ │ │ │ ├── ddAnd.decTest │ │ │ │ │ ├── ddBase.decTest │ │ │ │ │ ├── ddCanonical.decTest │ │ │ │ │ ├── ddClass.decTest │ │ │ │ │ ├── ddCompare.decTest │ │ │ │ │ ├── ddCompareSig.decTest │ │ │ │ │ ├── ddCompareTotal.decTest │ │ │ │ │ ├── ddCompareTotalMag.decTest │ │ │ │ │ ├── ddCopy.decTest │ │ │ │ │ ├── ddCopyAbs.decTest │ │ │ │ │ ├── ddCopyNegate.decTest │ │ │ │ │ ├── ddCopySign.decTest │ │ │ │ │ ├── ddDivide.decTest │ │ │ │ │ ├── ddDivideInt.decTest │ │ │ │ │ ├── ddEncode.decTest │ │ │ │ │ ├── ddFMA.decTest │ │ │ │ │ ├── ddInvert.decTest │ │ │ │ │ ├── ddLogB.decTest │ │ │ │ │ ├── ddMax.decTest │ │ │ │ │ ├── ddMaxMag.decTest │ │ │ │ │ ├── ddMin.decTest │ │ │ │ │ ├── ddMinMag.decTest │ │ │ │ │ ├── ddMinus.decTest │ │ │ │ │ ├── ddMultiply.decTest │ │ │ │ │ ├── ddNextMinus.decTest │ │ │ │ │ ├── ddNextPlus.decTest │ │ │ │ │ ├── ddNextToward.decTest │ │ │ │ │ ├── ddOr.decTest │ │ │ │ │ ├── ddPlus.decTest │ │ │ │ │ ├── ddQuantize.decTest │ │ │ │ │ ├── ddReduce.decTest │ │ │ │ │ ├── ddRemainder.decTest │ │ │ │ │ ├── ddRemainderNear.decTest │ │ │ │ │ ├── ddRotate.decTest │ │ │ │ │ ├── ddSameQuantum.decTest │ │ │ │ │ ├── ddScaleB.decTest │ │ │ │ │ ├── ddShift.decTest │ │ │ │ │ ├── ddSubtract.decTest │ │ │ │ │ ├── ddToIntegral.decTest │ │ │ │ │ ├── ddXor.decTest │ │ │ │ │ ├── decDouble.decTest │ │ │ │ │ ├── decQuad.decTest │ │ │ │ │ ├── decSingle.decTest │ │ │ │ │ ├── divide.decTest │ │ │ │ │ ├── divideint.decTest │ │ │ │ │ ├── dqAbs.decTest │ │ │ │ │ ├── dqAdd.decTest │ │ │ │ │ ├── dqAnd.decTest │ │ │ │ │ ├── dqBase.decTest │ │ │ │ │ ├── dqCanonical.decTest │ │ │ │ │ ├── dqClass.decTest │ │ │ │ │ ├── dqCompare.decTest │ │ │ │ │ ├── dqCompareSig.decTest │ │ │ │ │ ├── dqCompareTotal.decTest │ │ │ │ │ ├── dqCompareTotalMag.decTest │ │ │ │ │ ├── dqCopy.decTest │ │ │ │ │ ├── dqCopyAbs.decTest │ │ │ │ │ ├── dqCopyNegate.decTest │ │ │ │ │ ├── dqCopySign.decTest │ │ │ │ │ ├── dqDivide.decTest │ │ │ │ │ ├── dqDivideInt.decTest │ │ │ │ │ ├── dqEncode.decTest │ │ │ │ │ ├── dqFMA.decTest │ │ │ │ │ ├── dqInvert.decTest │ │ │ │ │ ├── dqLogB.decTest │ │ │ │ │ ├── dqMax.decTest │ │ │ │ │ ├── dqMaxMag.decTest │ │ │ │ │ ├── dqMin.decTest │ │ │ │ │ ├── dqMinMag.decTest │ │ │ │ │ ├── dqMinus.decTest │ │ │ │ │ ├── dqMultiply.decTest │ │ │ │ │ ├── dqNextMinus.decTest │ │ │ │ │ ├── dqNextPlus.decTest │ │ │ │ │ ├── dqNextToward.decTest │ │ │ │ │ ├── dqOr.decTest │ │ │ │ │ ├── dqPlus.decTest │ │ │ │ │ ├── dqQuantize.decTest │ │ │ │ │ ├── dqReduce.decTest │ │ │ │ │ ├── dqRemainder.decTest │ │ │ │ │ ├── dqRemainderNear.decTest │ │ │ │ │ ├── dqRotate.decTest │ │ │ │ │ ├── dqSameQuantum.decTest │ │ │ │ │ ├── dqScaleB.decTest │ │ │ │ │ ├── dqShift.decTest │ │ │ │ │ ├── dqSubtract.decTest │ │ │ │ │ ├── dqToIntegral.decTest │ │ │ │ │ ├── dqXor.decTest │ │ │ │ │ ├── dsBase.decTest │ │ │ │ │ ├── dsEncode.decTest │ │ │ │ │ ├── exp.decTest │ │ │ │ │ ├── extra.decTest │ │ │ │ │ ├── fma.decTest │ │ │ │ │ ├── inexact.decTest │ │ │ │ │ ├── invert.decTest │ │ │ │ │ ├── ln.decTest │ │ │ │ │ ├── log10.decTest │ │ │ │ │ ├── logb.decTest │ │ │ │ │ ├── max.decTest │ │ │ │ │ ├── maxmag.decTest │ │ │ │ │ ├── min.decTest │ │ │ │ │ ├── minmag.decTest │ │ │ │ │ ├── minus.decTest │ │ │ │ │ ├── multiply.decTest │ │ │ │ │ ├── nextminus.decTest │ │ │ │ │ ├── nextplus.decTest │ │ │ │ │ ├── nexttoward.decTest │ │ │ │ │ ├── or.decTest │ │ │ │ │ ├── plus.decTest │ │ │ │ │ ├── power.decTest │ │ │ │ │ ├── powersqrt.decTest │ │ │ │ │ ├── quantize.decTest │ │ │ │ │ ├── randomBound32.decTest │ │ │ │ │ ├── randoms.decTest │ │ │ │ │ ├── reduce.decTest │ │ │ │ │ ├── remainder.decTest │ │ │ │ │ ├── remainderNear.decTest │ │ │ │ │ ├── rescale.decTest │ │ │ │ │ ├── rotate.decTest │ │ │ │ │ ├── rounding.decTest │ │ │ │ │ ├── samequantum.decTest │ │ │ │ │ ├── scaleb.decTest │ │ │ │ │ ├── shift.decTest │ │ │ │ │ ├── squareroot.decTest │ │ │ │ │ ├── subtract.decTest │ │ │ │ │ ├── testall.decTest │ │ │ │ │ ├── tointegral.decTest │ │ │ │ │ ├── tointegralx.decTest │ │ │ │ │ └── xor.decTest │ │ │ │ ├── dis_module.py │ │ │ │ ├── doctest_aliases.py │ │ │ │ ├── double_const.py │ │ │ │ ├── dtracedata │ │ │ │ │ ├── assert_usable.d │ │ │ │ │ ├── assert_usable.stp │ │ │ │ │ ├── call_stack.d │ │ │ │ │ ├── call_stack.d.expected │ │ │ │ │ ├── call_stack.py │ │ │ │ │ ├── call_stack.stp │ │ │ │ │ ├── call_stack.stp.expected │ │ │ │ │ ├── gc.d │ │ │ │ │ ├── gc.d.expected │ │ │ │ │ ├── gc.py │ │ │ │ │ ├── gc.stp │ │ │ │ │ ├── gc.stp.expected │ │ │ │ │ ├── instance.py │ │ │ │ │ ├── line.d │ │ │ │ │ ├── line.d.expected │ │ │ │ │ └── line.py │ │ │ │ ├── eintrdata │ │ │ │ │ └── eintr_tester.py │ │ │ │ ├── empty.vbs │ │ │ │ ├── encoded_modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── module_iso_8859_1.py │ │ │ │ │ └── module_koi8_r.py │ │ │ │ ├── exception_hierarchy.txt │ │ │ │ ├── ffdh3072.pem │ │ │ │ ├── final_a.py │ │ │ │ ├── final_b.py │ │ │ │ ├── floating_points.txt │ │ │ │ ├── fork_wait.py │ │ │ │ ├── formatfloat_testcases.txt │ │ │ │ ├── future_test1.py │ │ │ │ ├── future_test2.py │ │ │ │ ├── gdb_sample.py │ │ │ │ ├── ieee754.txt │ │ │ │ ├── imghdrdata │ │ │ │ │ ├── python.bmp │ │ │ │ │ ├── python.exr │ │ │ │ │ ├── python.gif │ │ │ │ │ ├── python.jpg │ │ │ │ │ ├── python.pbm │ │ │ │ │ ├── python.pgm │ │ │ │ │ ├── python.png │ │ │ │ │ ├── python.ppm │ │ │ │ │ ├── python.ras │ │ │ │ │ ├── python.sgi │ │ │ │ │ ├── python.tiff │ │ │ │ │ ├── python.webp │ │ │ │ │ └── python.xbm │ │ │ │ ├── imp_dummy.py │ │ │ │ ├── inspect_fodder.py │ │ │ │ ├── inspect_fodder2.py │ │ │ │ ├── keycert.passwd.pem │ │ │ │ ├── keycert.pem │ │ │ │ ├── keycert2.pem │ │ │ │ ├── keycert3.pem │ │ │ │ ├── keycert4.pem │ │ │ │ ├── leakers │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_ctypes.py │ │ │ │ │ └── test_selftype.py │ │ │ │ ├── libregrtest │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cmdline.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── refleak.py │ │ │ │ │ ├── runtest.py │ │ │ │ │ ├── runtest_mp.py │ │ │ │ │ ├── save_env.py │ │ │ │ │ ├── setup.py │ │ │ │ │ └── utils.py │ │ │ │ ├── list_tests.py │ │ │ │ ├── lock_tests.py │ │ │ │ ├── mailcap.txt │ │ │ │ ├── make_ssl_certs.py │ │ │ │ ├── mapping_tests.py │ │ │ │ ├── math_testcases.txt │ │ │ │ ├── memory_watchdog.py │ │ │ │ ├── mime.types │ │ │ │ ├── mock_socket.py │ │ │ │ ├── mod_generics_cache.py │ │ │ │ ├── mp_fork_bomb.py │ │ │ │ ├── mp_preload.py │ │ │ │ ├── multibytecodec_support.py │ │ │ │ ├── nokia.pem │ │ │ │ ├── nullbytecert.pem │ │ │ │ ├── nullcert.pem │ │ │ │ ├── outstanding_bugs.py │ │ │ │ ├── pickletester.py │ │ │ │ ├── profilee.py │ │ │ │ ├── pstats.pck │ │ │ │ ├── pycacert.pem │ │ │ │ ├── pycakey.pem │ │ │ │ ├── pyclbr_input.py │ │ │ │ ├── pydoc_mod.py │ │ │ │ ├── pydocfodder.py │ │ │ │ ├── pystone.py │ │ │ │ ├── pythoninfo.py │ │ │ │ ├── randv2_32.pck │ │ │ │ ├── randv2_64.pck │ │ │ │ ├── randv3.pck │ │ │ │ ├── re_tests.py │ │ │ │ ├── regrtest.py │ │ │ │ ├── relimport.py │ │ │ │ ├── reperf.py │ │ │ │ ├── revocation.crl │ │ │ │ ├── sample_doctest.py │ │ │ │ ├── sample_doctest_no_docstrings.py │ │ │ │ ├── sample_doctest_no_doctests.py │ │ │ │ ├── selfsigned_pythontestdotnet.pem │ │ │ │ ├── seq_tests.py │ │ │ │ ├── sgml_input.html │ │ │ │ ├── signalinterproctester.py │ │ │ │ ├── sndhdrdata │ │ │ │ │ ├── README │ │ │ │ │ ├── sndhdr.8svx │ │ │ │ │ ├── sndhdr.aifc │ │ │ │ │ ├── sndhdr.aiff │ │ │ │ │ ├── sndhdr.au │ │ │ │ │ ├── sndhdr.hcom │ │ │ │ │ ├── sndhdr.sndt │ │ │ │ │ ├── sndhdr.voc │ │ │ │ │ └── sndhdr.wav │ │ │ │ ├── sortperf.py │ │ │ │ ├── ssl_cert.pem │ │ │ │ ├── ssl_key.passwd.pem │ │ │ │ ├── ssl_key.pem │ │ │ │ ├── ssl_servers.py │ │ │ │ ├── ssltests.py │ │ │ │ ├── string_tests.py │ │ │ │ ├── subprocessdata │ │ │ │ │ ├── fd_status.py │ │ │ │ │ ├── input_reader.py │ │ │ │ │ ├── qcat.py │ │ │ │ │ ├── qgrep.py │ │ │ │ │ └── sigchild_ignore.py │ │ │ │ ├── support │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── script_helper.py │ │ │ │ │ └── testresult.py │ │ │ │ ├── test___all__.py │ │ │ │ ├── test___future__.py │ │ │ │ ├── test__locale.py │ │ │ │ ├── test__opcode.py │ │ │ │ ├── test__osx_support.py │ │ │ │ ├── test_abc.py │ │ │ │ ├── test_abstract_numbers.py │ │ │ │ ├── test_aifc.py │ │ │ │ ├── test_argparse.py │ │ │ │ ├── test_array.py │ │ │ │ ├── test_asdl_parser.py │ │ │ │ ├── test_ast.py │ │ │ │ ├── test_asyncgen.py │ │ │ │ ├── test_asynchat.py │ │ │ │ ├── test_asyncio │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── echo.py │ │ │ │ │ ├── echo2.py │ │ │ │ │ ├── echo3.py │ │ │ │ │ ├── test_base_events.py │ │ │ │ │ ├── test_events.py │ │ │ │ │ ├── test_futures.py │ │ │ │ │ ├── test_locks.py │ │ │ │ │ ├── test_pep492.py │ │ │ │ │ ├── test_proactor_events.py │ │ │ │ │ ├── test_queues.py │ │ │ │ │ ├── test_selector_events.py │ │ │ │ │ ├── test_sslproto.py │ │ │ │ │ ├── test_streams.py │ │ │ │ │ ├── test_subprocess.py │ │ │ │ │ ├── test_tasks.py │ │ │ │ │ ├── test_transports.py │ │ │ │ │ ├── test_unix_events.py │ │ │ │ │ ├── test_windows_events.py │ │ │ │ │ └── test_windows_utils.py │ │ │ │ ├── test_asyncore.py │ │ │ │ ├── test_atexit.py │ │ │ │ ├── test_audioop.py │ │ │ │ ├── test_augassign.py │ │ │ │ ├── test_base64.py │ │ │ │ ├── test_baseexception.py │ │ │ │ ├── test_bdb.py │ │ │ │ ├── test_bigaddrspace.py │ │ │ │ ├── test_bigmem.py │ │ │ │ ├── test_binascii.py │ │ │ │ ├── test_binhex.py │ │ │ │ ├── test_binop.py │ │ │ │ ├── test_bisect.py │ │ │ │ ├── test_bool.py │ │ │ │ ├── test_buffer.py │ │ │ │ ├── test_bufio.py │ │ │ │ ├── test_builtin.py │ │ │ │ ├── test_bytes.py │ │ │ │ ├── test_bz2.py │ │ │ │ ├── test_calendar.py │ │ │ │ ├── test_call.py │ │ │ │ ├── test_capi.py │ │ │ │ ├── test_cgi.py │ │ │ │ ├── test_cgitb.py │ │ │ │ ├── test_charmapcodec.py │ │ │ │ ├── test_class.py │ │ │ │ ├── test_cmath.py │ │ │ │ ├── test_cmd.py │ │ │ │ ├── test_cmd_line.py │ │ │ │ ├── test_cmd_line_script.py │ │ │ │ ├── test_code.py │ │ │ │ ├── test_code_module.py │ │ │ │ ├── test_codeccallbacks.py │ │ │ │ ├── test_codecencodings_cn.py │ │ │ │ ├── test_codecencodings_hk.py │ │ │ │ ├── test_codecencodings_iso2022.py │ │ │ │ ├── test_codecencodings_jp.py │ │ │ │ ├── test_codecencodings_kr.py │ │ │ │ ├── test_codecencodings_tw.py │ │ │ │ ├── test_codecmaps_cn.py │ │ │ │ ├── test_codecmaps_hk.py │ │ │ │ ├── test_codecmaps_jp.py │ │ │ │ ├── test_codecmaps_kr.py │ │ │ │ ├── test_codecmaps_tw.py │ │ │ │ ├── test_codecs.py │ │ │ │ ├── test_codeop.py │ │ │ │ ├── test_collections.py │ │ │ │ ├── test_colorsys.py │ │ │ │ ├── test_compare.py │ │ │ │ ├── test_compile.py │ │ │ │ ├── test_compileall.py │ │ │ │ ├── test_complex.py │ │ │ │ ├── test_concurrent_futures.py │ │ │ │ ├── test_configparser.py │ │ │ │ ├── test_contains.py │ │ │ │ ├── test_contextlib.py │ │ │ │ ├── test_copy.py │ │ │ │ ├── test_copyreg.py │ │ │ │ ├── test_coroutines.py │ │ │ │ ├── test_cprofile.py │ │ │ │ ├── test_crashers.py │ │ │ │ ├── test_crypt.py │ │ │ │ ├── test_csv.py │ │ │ │ ├── test_ctypes.py │ │ │ │ ├── test_curses.py │ │ │ │ ├── test_datetime.py │ │ │ │ ├── test_dbm.py │ │ │ │ ├── test_dbm_dumb.py │ │ │ │ ├── test_dbm_gnu.py │ │ │ │ ├── test_dbm_ndbm.py │ │ │ │ ├── test_decimal.py │ │ │ │ ├── test_decorators.py │ │ │ │ ├── test_defaultdict.py │ │ │ │ ├── test_deque.py │ │ │ │ ├── test_descr.py │ │ │ │ ├── test_descrtut.py │ │ │ │ ├── test_devpoll.py │ │ │ │ ├── test_dict.py │ │ │ │ ├── test_dict_version.py │ │ │ │ ├── test_dictcomps.py │ │ │ │ ├── test_dictviews.py │ │ │ │ ├── test_difflib.py │ │ │ │ ├── test_difflib_expect.html │ │ │ │ ├── test_dis.py │ │ │ │ ├── test_distutils.py │ │ │ │ ├── test_doctest.py │ │ │ │ ├── test_doctest.txt │ │ │ │ ├── test_doctest2.py │ │ │ │ ├── test_doctest2.txt │ │ │ │ ├── test_doctest3.txt │ │ │ │ ├── test_doctest4.txt │ │ │ │ ├── test_docxmlrpc.py │ │ │ │ ├── test_dtrace.py │ │ │ │ ├── test_dummy_thread.py │ │ │ │ ├── test_dummy_threading.py │ │ │ │ ├── test_dynamic.py │ │ │ │ ├── test_dynamicclassattribute.py │ │ │ │ ├── test_eintr.py │ │ │ │ ├── test_email │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── data │ │ │ │ │ │ ├── PyBanner048.gif │ │ │ │ │ │ ├── audiotest.au │ │ │ │ │ │ ├── msg_01.txt │ │ │ │ │ │ ├── msg_02.txt │ │ │ │ │ │ ├── msg_03.txt │ │ │ │ │ │ ├── msg_04.txt │ │ │ │ │ │ ├── msg_05.txt │ │ │ │ │ │ ├── msg_06.txt │ │ │ │ │ │ ├── msg_07.txt │ │ │ │ │ │ ├── msg_08.txt │ │ │ │ │ │ ├── msg_09.txt │ │ │ │ │ │ ├── msg_10.txt │ │ │ │ │ │ ├── msg_11.txt │ │ │ │ │ │ ├── msg_12.txt │ │ │ │ │ │ ├── msg_12a.txt │ │ │ │ │ │ ├── msg_13.txt │ │ │ │ │ │ ├── msg_14.txt │ │ │ │ │ │ ├── msg_15.txt │ │ │ │ │ │ ├── msg_16.txt │ │ │ │ │ │ ├── msg_17.txt │ │ │ │ │ │ ├── msg_18.txt │ │ │ │ │ │ ├── msg_19.txt │ │ │ │ │ │ ├── msg_20.txt │ │ │ │ │ │ ├── msg_21.txt │ │ │ │ │ │ ├── msg_22.txt │ │ │ │ │ │ ├── msg_23.txt │ │ │ │ │ │ ├── msg_24.txt │ │ │ │ │ │ ├── msg_25.txt │ │ │ │ │ │ ├── msg_26.txt │ │ │ │ │ │ ├── msg_27.txt │ │ │ │ │ │ ├── msg_28.txt │ │ │ │ │ │ ├── msg_29.txt │ │ │ │ │ │ ├── msg_30.txt │ │ │ │ │ │ ├── msg_31.txt │ │ │ │ │ │ ├── msg_32.txt │ │ │ │ │ │ ├── msg_33.txt │ │ │ │ │ │ ├── msg_34.txt │ │ │ │ │ │ ├── msg_35.txt │ │ │ │ │ │ ├── msg_36.txt │ │ │ │ │ │ ├── msg_37.txt │ │ │ │ │ │ ├── msg_38.txt │ │ │ │ │ │ ├── msg_39.txt │ │ │ │ │ │ ├── msg_40.txt │ │ │ │ │ │ ├── msg_41.txt │ │ │ │ │ │ ├── msg_42.txt │ │ │ │ │ │ ├── msg_43.txt │ │ │ │ │ │ ├── msg_44.txt │ │ │ │ │ │ ├── msg_45.txt │ │ │ │ │ │ └── msg_46.txt │ │ │ │ │ ├── test__encoded_words.py │ │ │ │ │ ├── test__header_value_parser.py │ │ │ │ │ ├── test_asian_codecs.py │ │ │ │ │ ├── test_contentmanager.py │ │ │ │ │ ├── test_defect_handling.py │ │ │ │ │ ├── test_email.py │ │ │ │ │ ├── test_generator.py │ │ │ │ │ ├── test_headerregistry.py │ │ │ │ │ ├── test_inversion.py │ │ │ │ │ ├── test_message.py │ │ │ │ │ ├── test_parser.py │ │ │ │ │ ├── test_pickleable.py │ │ │ │ │ ├── test_policy.py │ │ │ │ │ ├── test_utils.py │ │ │ │ │ └── torture_test.py │ │ │ │ ├── test_ensurepip.py │ │ │ │ ├── test_enum.py │ │ │ │ ├── test_enumerate.py │ │ │ │ ├── test_eof.py │ │ │ │ ├── test_epoll.py │ │ │ │ ├── test_errno.py │ │ │ │ ├── test_exception_hierarchy.py │ │ │ │ ├── test_exception_variations.py │ │ │ │ ├── test_exceptions.py │ │ │ │ ├── test_extcall.py │ │ │ │ ├── test_faulthandler.py │ │ │ │ ├── test_fcntl.py │ │ │ │ ├── test_file.py │ │ │ │ ├── test_file_eintr.py │ │ │ │ ├── test_filecmp.py │ │ │ │ ├── test_fileinput.py │ │ │ │ ├── test_fileio.py │ │ │ │ ├── test_finalization.py │ │ │ │ ├── test_float.py │ │ │ │ ├── test_flufl.py │ │ │ │ ├── test_fnmatch.py │ │ │ │ ├── test_fork1.py │ │ │ │ ├── test_format.py │ │ │ │ ├── test_fractions.py │ │ │ │ ├── test_frame.py │ │ │ │ ├── test_fstring.py │ │ │ │ ├── test_ftplib.py │ │ │ │ ├── test_funcattrs.py │ │ │ │ ├── test_functools.py │ │ │ │ ├── test_future.py │ │ │ │ ├── test_future3.py │ │ │ │ ├── test_future4.py │ │ │ │ ├── test_future5.py │ │ │ │ ├── test_gc.py │ │ │ │ ├── test_gdb.py │ │ │ │ ├── test_generator_stop.py │ │ │ │ ├── test_generators.py │ │ │ │ ├── test_genericpath.py │ │ │ │ ├── test_genexps.py │ │ │ │ ├── test_getargs2.py │ │ │ │ ├── test_getopt.py │ │ │ │ ├── test_getpass.py │ │ │ │ ├── test_gettext.py │ │ │ │ ├── test_glob.py │ │ │ │ ├── test_global.py │ │ │ │ ├── test_grammar.py │ │ │ │ ├── test_grp.py │ │ │ │ ├── test_gzip.py │ │ │ │ ├── test_hash.py │ │ │ │ ├── test_hashlib.py │ │ │ │ ├── test_heapq.py │ │ │ │ ├── test_hmac.py │ │ │ │ ├── test_html.py │ │ │ │ ├── test_htmlparser.py │ │ │ │ ├── test_http_cookiejar.py │ │ │ │ ├── test_http_cookies.py │ │ │ │ ├── test_httplib.py │ │ │ │ ├── test_httpservers.py │ │ │ │ ├── test_idle.py │ │ │ │ ├── test_imaplib.py │ │ │ │ ├── test_imghdr.py │ │ │ │ ├── test_imp.py │ │ │ │ ├── test_import │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── data │ │ │ │ │ │ ├── circular_imports │ │ │ │ │ │ ├── basic.py │ │ │ │ │ │ ├── basic2.py │ │ │ │ │ │ ├── indirect.py │ │ │ │ │ │ ├── rebinding.py │ │ │ │ │ │ ├── rebinding2.py │ │ │ │ │ │ ├── subpackage.py │ │ │ │ │ │ ├── subpkg │ │ │ │ │ │ │ ├── subpackage2.py │ │ │ │ │ │ │ └── util.py │ │ │ │ │ │ └── util.py │ │ │ │ │ │ ├── package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── submodule.py │ │ │ │ │ │ └── package2 │ │ │ │ │ │ ├── submodule1.py │ │ │ │ │ │ └── submodule2.py │ │ │ │ ├── test_importlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── abc.py │ │ │ │ │ ├── builtin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ └── test_loader.py │ │ │ │ │ ├── extension │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ ├── test_loader.py │ │ │ │ │ │ └── test_path_hook.py │ │ │ │ │ ├── frozen │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ └── test_loader.py │ │ │ │ │ ├── import_ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test___loader__.py │ │ │ │ │ │ ├── test___package__.py │ │ │ │ │ │ ├── test_api.py │ │ │ │ │ │ ├── test_caching.py │ │ │ │ │ │ ├── test_fromlist.py │ │ │ │ │ │ ├── test_meta_path.py │ │ │ │ │ │ ├── test_packages.py │ │ │ │ │ │ ├── test_path.py │ │ │ │ │ │ └── test_relative_imports.py │ │ │ │ │ ├── namespace_pkgs │ │ │ │ │ │ ├── both_portions │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ ├── one.py │ │ │ │ │ │ │ │ └── two.py │ │ │ │ │ │ ├── missing_directory.zip │ │ │ │ │ │ ├── module_and_namespace_package │ │ │ │ │ │ │ ├── a_test.py │ │ │ │ │ │ │ └── a_test │ │ │ │ │ │ │ │ └── empty │ │ │ │ │ │ ├── nested_portion1.zip │ │ │ │ │ │ ├── not_a_namespace_pkg │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── one.py │ │ │ │ │ │ ├── portion1 │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ └── one.py │ │ │ │ │ │ ├── portion2 │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ └── two.py │ │ │ │ │ │ ├── project1 │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ │ └── one.py │ │ │ │ │ │ ├── project2 │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ │ └── two.py │ │ │ │ │ │ ├── project3 │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ │ └── three.py │ │ │ │ │ │ └── top_level_portion1.zip │ │ │ │ │ ├── source │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ │ ├── test_file_loader.py │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ ├── test_path_hook.py │ │ │ │ │ │ └── test_source_encoding.py │ │ │ │ │ ├── test_abc.py │ │ │ │ │ ├── test_api.py │ │ │ │ │ ├── test_lazy.py │ │ │ │ │ ├── test_locks.py │ │ │ │ │ ├── test_namespace_pkgs.py │ │ │ │ │ ├── test_spec.py │ │ │ │ │ ├── test_util.py │ │ │ │ │ ├── test_windows.py │ │ │ │ │ └── util.py │ │ │ │ ├── test_index.py │ │ │ │ ├── test_inspect.py │ │ │ │ ├── test_int.py │ │ │ │ ├── test_int_literal.py │ │ │ │ ├── test_io.py │ │ │ │ ├── test_ioctl.py │ │ │ │ ├── test_ipaddress.py │ │ │ │ ├── test_isinstance.py │ │ │ │ ├── test_iter.py │ │ │ │ ├── test_iterlen.py │ │ │ │ ├── test_itertools.py │ │ │ │ ├── test_json │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_decode.py │ │ │ │ │ ├── test_default.py │ │ │ │ │ ├── test_dump.py │ │ │ │ │ ├── test_encode_basestring_ascii.py │ │ │ │ │ ├── test_enum.py │ │ │ │ │ ├── test_fail.py │ │ │ │ │ ├── test_float.py │ │ │ │ │ ├── test_indent.py │ │ │ │ │ ├── test_pass1.py │ │ │ │ │ ├── test_pass2.py │ │ │ │ │ ├── test_pass3.py │ │ │ │ │ ├── test_recursion.py │ │ │ │ │ ├── test_scanstring.py │ │ │ │ │ ├── test_separators.py │ │ │ │ │ ├── test_speedups.py │ │ │ │ │ ├── test_tool.py │ │ │ │ │ └── test_unicode.py │ │ │ │ ├── test_keyword.py │ │ │ │ ├── test_keywordonlyarg.py │ │ │ │ ├── test_kqueue.py │ │ │ │ ├── test_largefile.py │ │ │ │ ├── test_lib2to3.py │ │ │ │ ├── test_linecache.py │ │ │ │ ├── test_list.py │ │ │ │ ├── test_listcomps.py │ │ │ │ ├── test_locale.py │ │ │ │ ├── test_logging.py │ │ │ │ ├── test_long.py │ │ │ │ ├── test_longexp.py │ │ │ │ ├── test_lzma.py │ │ │ │ ├── test_macpath.py │ │ │ │ ├── test_macurl2path.py │ │ │ │ ├── test_mailbox.py │ │ │ │ ├── test_mailcap.py │ │ │ │ ├── test_marshal.py │ │ │ │ ├── test_math.py │ │ │ │ ├── test_memoryio.py │ │ │ │ ├── test_memoryview.py │ │ │ │ ├── test_metaclass.py │ │ │ │ ├── test_mimetypes.py │ │ │ │ ├── test_minidom.py │ │ │ │ ├── test_mmap.py │ │ │ │ ├── test_module.py │ │ │ │ ├── test_modulefinder.py │ │ │ │ ├── test_msilib.py │ │ │ │ ├── test_multibytecodec.py │ │ │ │ ├── test_multiprocessing_fork.py │ │ │ │ ├── test_multiprocessing_forkserver.py │ │ │ │ ├── test_multiprocessing_main_handling.py │ │ │ │ ├── test_multiprocessing_spawn.py │ │ │ │ ├── test_netrc.py │ │ │ │ ├── test_nis.py │ │ │ │ ├── test_nntplib.py │ │ │ │ ├── test_normalization.py │ │ │ │ ├── test_ntpath.py │ │ │ │ ├── test_numeric_tower.py │ │ │ │ ├── test_opcodes.py │ │ │ │ ├── test_openpty.py │ │ │ │ ├── test_operator.py │ │ │ │ ├── test_optparse.py │ │ │ │ ├── test_ordered_dict.py │ │ │ │ ├── test_os.py │ │ │ │ ├── test_ossaudiodev.py │ │ │ │ ├── test_osx_env.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pathlib.py │ │ │ │ ├── test_pdb.py │ │ │ │ ├── test_peepholer.py │ │ │ │ ├── test_pickle.py │ │ │ │ ├── test_pickletools.py │ │ │ │ ├── test_pipes.py │ │ │ │ ├── test_pkg.py │ │ │ │ ├── test_pkgimport.py │ │ │ │ ├── test_pkgutil.py │ │ │ │ ├── test_platform.py │ │ │ │ ├── test_plistlib.py │ │ │ │ ├── test_poll.py │ │ │ │ ├── test_popen.py │ │ │ │ ├── test_poplib.py │ │ │ │ ├── test_posix.py │ │ │ │ ├── test_posixpath.py │ │ │ │ ├── test_pow.py │ │ │ │ ├── test_pprint.py │ │ │ │ ├── test_print.py │ │ │ │ ├── test_profile.py │ │ │ │ ├── test_property.py │ │ │ │ ├── test_pstats.py │ │ │ │ ├── test_pty.py │ │ │ │ ├── test_pulldom.py │ │ │ │ ├── test_pwd.py │ │ │ │ ├── test_py_compile.py │ │ │ │ ├── test_pyclbr.py │ │ │ │ ├── test_pydoc.py │ │ │ │ ├── test_pyexpat.py │ │ │ │ ├── test_queue.py │ │ │ │ ├── test_quopri.py │ │ │ │ ├── test_raise.py │ │ │ │ ├── test_random.py │ │ │ │ ├── test_range.py │ │ │ │ ├── test_re.py │ │ │ │ ├── test_readline.py │ │ │ │ ├── test_regrtest.py │ │ │ │ ├── test_repl.py │ │ │ │ ├── test_reprlib.py │ │ │ │ ├── test_resource.py │ │ │ │ ├── test_richcmp.py │ │ │ │ ├── test_rlcompleter.py │ │ │ │ ├── test_robotparser.py │ │ │ │ ├── test_runpy.py │ │ │ │ ├── test_sax.py │ │ │ │ ├── test_sched.py │ │ │ │ ├── test_scope.py │ │ │ │ ├── test_script_helper.py │ │ │ │ ├── test_secrets.py │ │ │ │ ├── test_select.py │ │ │ │ ├── test_selectors.py │ │ │ │ ├── test_set.py │ │ │ │ ├── test_setcomps.py │ │ │ │ ├── test_shelve.py │ │ │ │ ├── test_shlex.py │ │ │ │ ├── test_shutil.py │ │ │ │ ├── test_signal.py │ │ │ │ ├── test_site.py │ │ │ │ ├── test_slice.py │ │ │ │ ├── test_smtpd.py │ │ │ │ ├── test_smtplib.py │ │ │ │ ├── test_smtpnet.py │ │ │ │ ├── test_sndhdr.py │ │ │ │ ├── test_socket.py │ │ │ │ ├── test_socketserver.py │ │ │ │ ├── test_sort.py │ │ │ │ ├── test_source_encoding.py │ │ │ │ ├── test_spwd.py │ │ │ │ ├── test_sqlite.py │ │ │ │ ├── test_ssl.py │ │ │ │ ├── test_startfile.py │ │ │ │ ├── test_stat.py │ │ │ │ ├── test_statistics.py │ │ │ │ ├── test_strftime.py │ │ │ │ ├── test_string.py │ │ │ │ ├── test_string_literals.py │ │ │ │ ├── test_stringprep.py │ │ │ │ ├── test_strptime.py │ │ │ │ ├── test_strtod.py │ │ │ │ ├── test_struct.py │ │ │ │ ├── test_structmembers.py │ │ │ │ ├── test_structseq.py │ │ │ │ ├── test_subclassinit.py │ │ │ │ ├── test_subprocess.py │ │ │ │ ├── test_sunau.py │ │ │ │ ├── test_sundry.py │ │ │ │ ├── test_super.py │ │ │ │ ├── test_support.py │ │ │ │ ├── test_symbol.py │ │ │ │ ├── test_symtable.py │ │ │ │ ├── test_syntax.py │ │ │ │ ├── test_sys.py │ │ │ │ ├── test_sys_setprofile.py │ │ │ │ ├── test_sys_settrace.py │ │ │ │ ├── test_sysconfig.py │ │ │ │ ├── test_syslog.py │ │ │ │ ├── test_tarfile.py │ │ │ │ ├── test_tcl.py │ │ │ │ ├── test_telnetlib.py │ │ │ │ ├── test_tempfile.py │ │ │ │ ├── test_textwrap.py │ │ │ │ ├── test_thread.py │ │ │ │ ├── test_threaded_import.py │ │ │ │ ├── test_threadedtempfile.py │ │ │ │ ├── test_threading.py │ │ │ │ ├── test_threading_local.py │ │ │ │ ├── test_threadsignals.py │ │ │ │ ├── test_time.py │ │ │ │ ├── test_timeit.py │ │ │ │ ├── test_timeout.py │ │ │ │ ├── test_tix.py │ │ │ │ ├── test_tk.py │ │ │ │ ├── test_tokenize.py │ │ │ │ ├── test_tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_fixcid.py │ │ │ │ │ ├── test_gprof2html.py │ │ │ │ │ ├── test_i18n.py │ │ │ │ │ ├── test_md5sum.py │ │ │ │ │ ├── test_pdeps.py │ │ │ │ │ ├── test_pindent.py │ │ │ │ │ ├── test_reindent.py │ │ │ │ │ ├── test_sundry.py │ │ │ │ │ └── test_unparse.py │ │ │ │ ├── test_trace.py │ │ │ │ ├── test_traceback.py │ │ │ │ ├── test_tracemalloc.py │ │ │ │ ├── test_ttk_guionly.py │ │ │ │ ├── test_ttk_textonly.py │ │ │ │ ├── test_tuple.py │ │ │ │ ├── test_turtle.py │ │ │ │ ├── test_typechecks.py │ │ │ │ ├── test_types.py │ │ │ │ ├── test_typing.py │ │ │ │ ├── test_ucn.py │ │ │ │ ├── test_unary.py │ │ │ │ ├── test_unicode.py │ │ │ │ ├── test_unicode_file.py │ │ │ │ ├── test_unicode_file_functions.py │ │ │ │ ├── test_unicode_identifiers.py │ │ │ │ ├── test_unicodedata.py │ │ │ │ ├── test_unittest.py │ │ │ │ ├── test_univnewlines.py │ │ │ │ ├── test_unpack.py │ │ │ │ ├── test_unpack_ex.py │ │ │ │ ├── test_urllib.py │ │ │ │ ├── test_urllib2.py │ │ │ │ ├── test_urllib2_localnet.py │ │ │ │ ├── test_urllib2net.py │ │ │ │ ├── test_urllib_response.py │ │ │ │ ├── test_urllibnet.py │ │ │ │ ├── test_urlparse.py │ │ │ │ ├── test_userdict.py │ │ │ │ ├── test_userlist.py │ │ │ │ ├── test_userstring.py │ │ │ │ ├── test_utf8source.py │ │ │ │ ├── test_uu.py │ │ │ │ ├── test_uuid.py │ │ │ │ ├── test_venv.py │ │ │ │ ├── test_wait3.py │ │ │ │ ├── test_wait4.py │ │ │ │ ├── test_warnings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── data │ │ │ │ │ │ ├── import_warning.py │ │ │ │ │ │ └── stacklevel.py │ │ │ │ ├── test_wave.py │ │ │ │ ├── test_weakref.py │ │ │ │ ├── test_weakset.py │ │ │ │ ├── test_webbrowser.py │ │ │ │ ├── test_winconsoleio.py │ │ │ │ ├── test_winreg.py │ │ │ │ ├── test_winsound.py │ │ │ │ ├── test_with.py │ │ │ │ ├── test_wsgiref.py │ │ │ │ ├── test_xdrlib.py │ │ │ │ ├── test_xml_dom_minicompat.py │ │ │ │ ├── test_xml_etree.py │ │ │ │ ├── test_xml_etree_c.py │ │ │ │ ├── test_xmlrpc.py │ │ │ │ ├── test_xmlrpc_net.py │ │ │ │ ├── test_yield_from.py │ │ │ │ ├── test_zipapp.py │ │ │ │ ├── test_zipfile.py │ │ │ │ ├── test_zipfile64.py │ │ │ │ ├── test_zipimport.py │ │ │ │ ├── test_zipimport_support.py │ │ │ │ ├── test_zlib.py │ │ │ │ ├── testcodec.py │ │ │ │ ├── testtar.tar │ │ │ │ ├── tf_inherit_check.py │ │ │ │ ├── threaded_import_hangers.py │ │ │ │ ├── time_hashlib.py │ │ │ │ ├── tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt │ │ │ │ ├── tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt │ │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt │ │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt │ │ │ │ ├── tokenize_tests.txt │ │ │ │ ├── tracedmodules │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── testmod.py │ │ │ │ ├── win_console_handler.py │ │ │ │ ├── xmltestdata │ │ │ │ │ ├── expat224_utf8_bug.xml │ │ │ │ │ ├── simple-ns.xml │ │ │ │ │ ├── simple.xml │ │ │ │ │ ├── test.xml │ │ │ │ │ └── test.xml.out │ │ │ │ ├── xmltests.py │ │ │ │ ├── zip_cp437_header.zip │ │ │ │ └── zipdir.zip │ │ │ ├── textwrap.py │ │ │ ├── this.py │ │ │ ├── threading.py │ │ │ ├── timeit.py │ │ │ ├── tkinter │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── colorchooser.py │ │ │ │ ├── commondialog.py │ │ │ │ ├── constants.py │ │ │ │ ├── dialog.py │ │ │ │ ├── dnd.py │ │ │ │ ├── filedialog.py │ │ │ │ ├── font.py │ │ │ │ ├── messagebox.py │ │ │ │ ├── scrolledtext.py │ │ │ │ ├── simpledialog.py │ │ │ │ ├── test │ │ │ │ │ ├── README │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── runtktests.py │ │ │ │ │ ├── support.py │ │ │ │ │ ├── test_tkinter │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_font.py │ │ │ │ │ │ ├── test_geometry_managers.py │ │ │ │ │ │ ├── test_images.py │ │ │ │ │ │ ├── test_loadtk.py │ │ │ │ │ │ ├── test_misc.py │ │ │ │ │ │ ├── test_text.py │ │ │ │ │ │ ├── test_variables.py │ │ │ │ │ │ └── test_widgets.py │ │ │ │ │ ├── test_ttk │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_extensions.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_style.py │ │ │ │ │ │ └── test_widgets.py │ │ │ │ │ └── widget_tests.py │ │ │ │ ├── tix.py │ │ │ │ └── ttk.py │ │ │ ├── token.py │ │ │ ├── tokenize.py │ │ │ ├── trace.py │ │ │ ├── traceback.py │ │ │ ├── tracemalloc.py │ │ │ ├── tty.py │ │ │ ├── turtle.py │ │ │ ├── turtledemo │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── bytedesign.py │ │ │ │ ├── chaos.py │ │ │ │ ├── clock.py │ │ │ │ ├── colormixer.py │ │ │ │ ├── forest.py │ │ │ │ ├── fractalcurves.py │ │ │ │ ├── lindenmayer.py │ │ │ │ ├── minimal_hanoi.py │ │ │ │ ├── nim.py │ │ │ │ ├── paint.py │ │ │ │ ├── peace.py │ │ │ │ ├── penrose.py │ │ │ │ ├── planet_and_moon.py │ │ │ │ ├── rosette.py │ │ │ │ ├── round_dance.py │ │ │ │ ├── sorting_animate.py │ │ │ │ ├── tree.py │ │ │ │ ├── turtle.cfg │ │ │ │ ├── two_canvases.py │ │ │ │ └── yinyang.py │ │ │ ├── types.py │ │ │ ├── typing.py │ │ │ ├── unittest │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── case.py │ │ │ │ ├── loader.py │ │ │ │ ├── main.py │ │ │ │ ├── mock.py │ │ │ │ ├── result.py │ │ │ │ ├── runner.py │ │ │ │ ├── signals.py │ │ │ │ ├── suite.py │ │ │ │ ├── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _test_warnings.py │ │ │ │ │ ├── dummy.py │ │ │ │ │ ├── support.py │ │ │ │ │ ├── test_assertions.py │ │ │ │ │ ├── test_break.py │ │ │ │ │ ├── test_case.py │ │ │ │ │ ├── test_discovery.py │ │ │ │ │ ├── test_functiontestcase.py │ │ │ │ │ ├── test_loader.py │ │ │ │ │ ├── test_program.py │ │ │ │ │ ├── test_result.py │ │ │ │ │ ├── test_runner.py │ │ │ │ │ ├── test_setups.py │ │ │ │ │ ├── test_skipping.py │ │ │ │ │ ├── test_suite.py │ │ │ │ │ └── testmock │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── testcallable.py │ │ │ │ │ │ ├── testhelpers.py │ │ │ │ │ │ ├── testmagicmethods.py │ │ │ │ │ │ ├── testmock.py │ │ │ │ │ │ ├── testpatch.py │ │ │ │ │ │ ├── testsentinel.py │ │ │ │ │ │ └── testwith.py │ │ │ │ └── util.py │ │ │ ├── urllib │ │ │ │ ├── __init__.py │ │ │ │ ├── error.py │ │ │ │ ├── parse.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── robotparser.py │ │ │ ├── uu.py │ │ │ ├── uuid.py │ │ │ ├── venv │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── scripts │ │ │ │ │ ├── common │ │ │ │ │ └── activate │ │ │ │ │ ├── nt │ │ │ │ │ ├── Activate.ps1 │ │ │ │ │ ├── activate.bat │ │ │ │ │ └── deactivate.bat │ │ │ │ │ └── posix │ │ │ │ │ ├── activate.csh │ │ │ │ │ └── activate.fish │ │ │ ├── warnings.py │ │ │ ├── wave.py │ │ │ ├── weakref.py │ │ │ ├── webbrowser.py │ │ │ ├── wsgiref │ │ │ │ ├── __init__.py │ │ │ │ ├── handlers.py │ │ │ │ ├── headers.py │ │ │ │ ├── simple_server.py │ │ │ │ ├── util.py │ │ │ │ └── validate.py │ │ │ ├── xdrlib.py │ │ │ ├── xml │ │ │ │ ├── __init__.py │ │ │ │ ├── dom │ │ │ │ │ ├── NodeFilter.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── domreg.py │ │ │ │ │ ├── expatbuilder.py │ │ │ │ │ ├── minicompat.py │ │ │ │ │ ├── minidom.py │ │ │ │ │ ├── pulldom.py │ │ │ │ │ └── xmlbuilder.py │ │ │ │ ├── etree │ │ │ │ │ ├── ElementInclude.py │ │ │ │ │ ├── ElementPath.py │ │ │ │ │ ├── ElementTree.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── cElementTree.py │ │ │ │ ├── parsers │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── expat.py │ │ │ │ └── sax │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _exceptions.py │ │ │ │ │ ├── expatreader.py │ │ │ │ │ ├── handler.py │ │ │ │ │ ├── saxutils.py │ │ │ │ │ └── xmlreader.py │ │ │ ├── xmlrpc │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── server.py │ │ │ ├── zipapp.py │ │ │ └── zipfile.py │ │ │ ├── Mac │ │ │ ├── BuildScript │ │ │ │ ├── README.txt │ │ │ │ ├── build-installer.py │ │ │ │ ├── resources │ │ │ │ │ ├── Conclusion.rtf │ │ │ │ │ ├── License.rtf │ │ │ │ │ ├── ReadMe.rtf │ │ │ │ │ ├── Welcome.rtf │ │ │ │ │ ├── background.jpg │ │ │ │ │ └── install_certificates.command │ │ │ │ ├── scripts │ │ │ │ │ ├── postflight.documentation │ │ │ │ │ ├── postflight.ensurepip │ │ │ │ │ ├── postflight.framework │ │ │ │ │ └── postflight.patch-profile │ │ │ │ └── seticon.m │ │ │ ├── Extras.install.py │ │ │ ├── IDLE │ │ │ │ └── IDLE.app │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── IDLE │ │ │ │ │ ├── PkgInfo │ │ │ │ │ └── Resources │ │ │ │ │ ├── IDLE.icns │ │ │ │ │ ├── PythonCompiled.icns │ │ │ │ │ ├── PythonSource.icns │ │ │ │ │ └── idlemain.py │ │ │ ├── Icons │ │ │ │ ├── Disk Image.icns │ │ │ │ ├── IDLE.icns │ │ │ │ ├── Python Folder.icns │ │ │ │ ├── PythonCompiled.icns │ │ │ │ ├── PythonLauncher.icns │ │ │ │ ├── PythonSource.icns │ │ │ │ └── ReadMe.txt │ │ │ ├── Makefile.in │ │ │ ├── PythonLauncher │ │ │ │ ├── English.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── MainMenu.nib │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── MyDocument.nib │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ └── PreferenceWindow.nib │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ ├── FileSettings.h │ │ │ │ ├── FileSettings.m │ │ │ │ ├── Info.plist.in │ │ │ │ ├── Makefile.in │ │ │ │ ├── MyAppDelegate.h │ │ │ │ ├── MyAppDelegate.m │ │ │ │ ├── MyDocument.h │ │ │ │ ├── MyDocument.m │ │ │ │ ├── PreferencesWindowController.h │ │ │ │ ├── PreferencesWindowController.m │ │ │ │ ├── doscript.h │ │ │ │ ├── doscript.m │ │ │ │ ├── factorySettings.plist │ │ │ │ └── main.m │ │ │ ├── README │ │ │ ├── Resources │ │ │ │ ├── app │ │ │ │ │ ├── Info.plist.in │ │ │ │ │ ├── PkgInfo │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── PythonApplet.icns │ │ │ │ │ │ └── PythonInterpreter.icns │ │ │ │ ├── framework │ │ │ │ │ └── Info.plist.in │ │ │ │ └── iconsrc │ │ │ │ │ ├── IDE.psd │ │ │ │ │ ├── PackageManager.psd │ │ │ │ │ ├── PythonApplet.psd │ │ │ │ │ ├── PythonCompiled.psd │ │ │ │ │ ├── PythonIcon.psd │ │ │ │ │ ├── PythonSource.psd │ │ │ │ │ └── PythonWSource.psd │ │ │ └── Tools │ │ │ │ ├── plistlib_generate_testdata.py │ │ │ │ └── pythonw.c │ │ │ ├── Makefile.pre.in │ │ │ ├── Misc │ │ │ ├── ACKS │ │ │ ├── HISTORY │ │ │ ├── NEWS.d │ │ │ │ ├── 3.5.0.rst │ │ │ │ ├── 3.5.0a1.rst │ │ │ │ ├── 3.5.0a2.rst │ │ │ │ ├── 3.5.0a3.rst │ │ │ │ ├── 3.5.0a4.rst │ │ │ │ ├── 3.5.0b1.rst │ │ │ │ ├── 3.5.0b2.rst │ │ │ │ ├── 3.5.0b3.rst │ │ │ │ ├── 3.5.0b4.rst │ │ │ │ ├── 3.5.0rc1.rst │ │ │ │ ├── 3.5.0rc2.rst │ │ │ │ ├── 3.5.0rc3.rst │ │ │ │ ├── 3.5.0rc4.rst │ │ │ │ ├── 3.5.1.rst │ │ │ │ ├── 3.5.1rc1.rst │ │ │ │ ├── 3.5.2.rst │ │ │ │ ├── 3.5.2rc1.rst │ │ │ │ ├── 3.5.3.rst │ │ │ │ ├── 3.5.3rc1.rst │ │ │ │ ├── 3.6.0.rst │ │ │ │ ├── 3.6.0a1.rst │ │ │ │ ├── 3.6.0a2.rst │ │ │ │ ├── 3.6.0a3.rst │ │ │ │ ├── 3.6.0a4.rst │ │ │ │ ├── 3.6.0b1.rst │ │ │ │ ├── 3.6.0b2.rst │ │ │ │ ├── 3.6.0b3.rst │ │ │ │ ├── 3.6.0b4.rst │ │ │ │ ├── 3.6.0rc1.rst │ │ │ │ ├── 3.6.0rc2.rst │ │ │ │ ├── 3.6.1.rst │ │ │ │ ├── 3.6.1rc1.rst │ │ │ │ ├── 3.6.2.rst │ │ │ │ ├── 3.6.2rc1.rst │ │ │ │ ├── 3.6.2rc2.rst │ │ │ │ ├── 3.6.3.rst │ │ │ │ ├── 3.6.3rc1.rst │ │ │ │ ├── 3.6.4.rst │ │ │ │ ├── 3.6.4rc1.rst │ │ │ │ ├── 3.6.5.rst │ │ │ │ ├── 3.6.5rc1.rst │ │ │ │ ├── 3.6.6.rst │ │ │ │ ├── 3.6.6rc1.rst │ │ │ │ ├── 3.6.7.rst │ │ │ │ ├── 3.6.7rc1.rst │ │ │ │ ├── 3.6.7rc2.rst │ │ │ │ ├── 3.6.8.rst │ │ │ │ ├── 3.6.8rc1.rst │ │ │ │ └── next │ │ │ │ │ ├── C API │ │ │ │ │ └── README.rst │ │ │ │ │ ├── Core and Builtins │ │ │ │ │ └── README.rst │ │ │ │ │ ├── Documentation │ │ │ │ │ └── README.rst │ │ │ │ │ ├── IDLE │ │ │ │ │ └── README.rst │ │ │ │ │ ├── Library │ │ │ │ │ └── README.rst │ │ │ │ │ ├── Security │ │ │ │ │ └── README.rst │ │ │ │ │ ├── Tests │ │ │ │ │ └── README.rst │ │ │ │ │ ├── Tools-Demos │ │ │ │ │ └── README.rst │ │ │ │ │ ├── Windows │ │ │ │ │ └── README.rst │ │ │ │ │ └── macOS │ │ │ │ │ └── README.rst │ │ │ ├── Porting │ │ │ ├── README │ │ │ ├── README.AIX │ │ │ ├── README.coverity │ │ │ ├── README.valgrind │ │ │ ├── SpecialBuilds.txt │ │ │ ├── coverity_model.c │ │ │ ├── gdbinit │ │ │ ├── indent.pro │ │ │ ├── python-config.in │ │ │ ├── python-config.sh.in │ │ │ ├── python-wing3.wpr │ │ │ ├── python-wing4.wpr │ │ │ ├── python-wing5.wpr │ │ │ ├── python.man │ │ │ ├── python.pc.in │ │ │ ├── svnmap.txt │ │ │ ├── valgrind-python.supp │ │ │ └── vgrindefs │ │ │ ├── Modules │ │ │ ├── README │ │ │ ├── Setup.config.in │ │ │ ├── Setup.dist │ │ │ ├── _asynciomodule.c │ │ │ ├── _bisectmodule.c │ │ │ ├── _blake2 │ │ │ │ ├── blake2b2s.py │ │ │ │ ├── blake2b_impl.c │ │ │ │ ├── blake2module.c │ │ │ │ ├── blake2ns.h │ │ │ │ ├── blake2s_impl.c │ │ │ │ ├── clinic │ │ │ │ │ ├── blake2b_impl.c.h │ │ │ │ │ └── blake2s_impl.c.h │ │ │ │ └── impl │ │ │ │ │ ├── blake2-config.h │ │ │ │ │ ├── blake2-impl.h │ │ │ │ │ ├── blake2.h │ │ │ │ │ ├── blake2b-load-sse2.h │ │ │ │ │ ├── blake2b-load-sse41.h │ │ │ │ │ ├── blake2b-ref.c │ │ │ │ │ ├── blake2b-round.h │ │ │ │ │ ├── blake2b.c │ │ │ │ │ ├── blake2s-load-sse2.h │ │ │ │ │ ├── blake2s-load-sse41.h │ │ │ │ │ ├── blake2s-load-xop.h │ │ │ │ │ ├── blake2s-ref.c │ │ │ │ │ ├── blake2s-round.h │ │ │ │ │ └── blake2s.c │ │ │ ├── _bz2module.c │ │ │ ├── _codecsmodule.c │ │ │ ├── _collectionsmodule.c │ │ │ ├── _cryptmodule.c │ │ │ ├── _csv.c │ │ │ ├── _ctypes │ │ │ │ ├── _ctypes.c │ │ │ │ ├── _ctypes_test.c │ │ │ │ ├── _ctypes_test.h │ │ │ │ ├── callbacks.c │ │ │ │ ├── callproc.c │ │ │ │ ├── cfield.c │ │ │ │ ├── ctypes.h │ │ │ │ ├── ctypes_dlfcn.h │ │ │ │ ├── darwin │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.ctypes │ │ │ │ │ ├── dlfcn.h │ │ │ │ │ └── dlfcn_simple.c │ │ │ │ ├── libffi.diff │ │ │ │ ├── libffi │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── ChangeLog.libffi │ │ │ │ │ ├── ChangeLog.libffi-3.1 │ │ │ │ │ ├── ChangeLog.libgcj │ │ │ │ │ ├── ChangeLog.v1 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── acinclude.m4 │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── compile │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── libffi.info │ │ │ │ │ │ ├── libffi.texi │ │ │ │ │ │ ├── stamp-vti │ │ │ │ │ │ └── version.texi │ │ │ │ │ ├── fficonfig.h.in │ │ │ │ │ ├── fficonfig.py.in │ │ │ │ │ ├── generate-darwin-source-and-headers.py │ │ │ │ │ ├── include │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── ffi.h.in │ │ │ │ │ │ └── ffi_common.h │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── libffi.pc.in │ │ │ │ │ ├── libffi.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── libtool-ldflags │ │ │ │ │ ├── libtool-version │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── m4 │ │ │ │ │ │ ├── asmcfi.m4 │ │ │ │ │ │ ├── ax_append_flag.m4 │ │ │ │ │ │ ├── ax_cc_maxopt.m4 │ │ │ │ │ │ ├── ax_cflags_warn_all.m4 │ │ │ │ │ │ ├── ax_check_compile_flag.m4 │ │ │ │ │ │ ├── ax_compiler_vendor.m4 │ │ │ │ │ │ ├── ax_configure_args.m4 │ │ │ │ │ │ ├── ax_enable_builddir.m4 │ │ │ │ │ │ ├── ax_gcc_archflag.m4 │ │ │ │ │ │ ├── ax_gcc_x86_cpuid.m4 │ │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ │ └── lt~obsolete.m4 │ │ │ │ │ ├── man │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── ffi.3 │ │ │ │ │ │ ├── ffi_call.3 │ │ │ │ │ │ ├── ffi_prep_cif.3 │ │ │ │ │ │ └── ffi_prep_cif_var.3 │ │ │ │ │ ├── mdate-sh │ │ │ │ │ ├── missing │ │ │ │ │ ├── msvcc.sh │ │ │ │ │ ├── src │ │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── alpha │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── osf.S │ │ │ │ │ │ ├── arc │ │ │ │ │ │ │ ├── arcompact.S │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ └── ffitarget.h │ │ │ │ │ │ ├── arm │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ ├── gentramp.sh │ │ │ │ │ │ │ ├── sysv.S │ │ │ │ │ │ │ └── trampoline.S │ │ │ │ │ │ ├── avr32 │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── bfin │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── closures.c │ │ │ │ │ │ ├── cris │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── dlmalloc.c │ │ │ │ │ │ ├── frv │ │ │ │ │ │ │ ├── eabi.S │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ └── ffitarget.h │ │ │ │ │ │ ├── ia64 │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ ├── ia64_flags.h │ │ │ │ │ │ │ └── unix.S │ │ │ │ │ │ ├── java_raw_api.c │ │ │ │ │ │ ├── m32r │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── m68k │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── m88k │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── obsd.S │ │ │ │ │ │ ├── metag │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── microblaze │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── mips │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ ├── n32.S │ │ │ │ │ │ │ └── o32.S │ │ │ │ │ │ ├── moxie │ │ │ │ │ │ │ ├── eabi.S │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ └── ffitarget.h │ │ │ │ │ │ ├── nios2 │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ ├── hpux32.S │ │ │ │ │ │ │ └── linux.S │ │ │ │ │ │ ├── powerpc │ │ │ │ │ │ │ ├── aix.S │ │ │ │ │ │ │ ├── aix_closure.S │ │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ │ ├── darwin.S │ │ │ │ │ │ │ ├── darwin_closure.S │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffi_darwin.c │ │ │ │ │ │ │ ├── ffi_linux64.c │ │ │ │ │ │ │ ├── ffi_powerpc.h │ │ │ │ │ │ │ ├── ffi_sysv.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ ├── linux64.S │ │ │ │ │ │ │ ├── linux64_closure.S │ │ │ │ │ │ │ ├── ppc_closure.S │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── prep_cif.c │ │ │ │ │ │ ├── raw_api.c │ │ │ │ │ │ ├── s390 │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── sh │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── sh64 │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ │ ├── sparc │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ ├── v8.S │ │ │ │ │ │ │ └── v9.S │ │ │ │ │ │ ├── tile │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── tile.S │ │ │ │ │ │ ├── types.c │ │ │ │ │ │ ├── vax │ │ │ │ │ │ │ ├── elfbsd.S │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ └── ffitarget.h │ │ │ │ │ │ ├── x86 │ │ │ │ │ │ │ ├── darwin.S │ │ │ │ │ │ │ ├── darwin64.S │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffi64.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ ├── freebsd.S │ │ │ │ │ │ │ ├── sysv.S │ │ │ │ │ │ │ ├── unix64.S │ │ │ │ │ │ │ ├── win32.S │ │ │ │ │ │ │ └── win64.S │ │ │ │ │ │ └── xtensa │ │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ │ └── sysv.S │ │ │ │ │ ├── testsuite │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── default.exp │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── libffi.exp │ │ │ │ │ │ │ ├── target-libpath.exp │ │ │ │ │ │ │ └── wrapper.exp │ │ │ │ │ │ └── libffi.call │ │ │ │ │ │ │ ├── call.exp │ │ │ │ │ │ │ ├── closure_fn0.c │ │ │ │ │ │ │ ├── closure_fn1.c │ │ │ │ │ │ │ ├── closure_fn2.c │ │ │ │ │ │ │ ├── closure_fn3.c │ │ │ │ │ │ │ ├── closure_fn4.c │ │ │ │ │ │ │ ├── closure_fn5.c │ │ │ │ │ │ │ ├── closure_fn6.c │ │ │ │ │ │ │ ├── closure_loc_fn0.c │ │ │ │ │ │ │ ├── closure_simple.c │ │ │ │ │ │ │ ├── cls_12byte.c │ │ │ │ │ │ │ ├── cls_16byte.c │ │ │ │ │ │ │ ├── cls_18byte.c │ │ │ │ │ │ │ ├── cls_19byte.c │ │ │ │ │ │ │ ├── cls_1_1byte.c │ │ │ │ │ │ │ ├── cls_20byte.c │ │ │ │ │ │ │ ├── cls_20byte1.c │ │ │ │ │ │ │ ├── cls_24byte.c │ │ │ │ │ │ │ ├── cls_2byte.c │ │ │ │ │ │ │ ├── cls_3_1byte.c │ │ │ │ │ │ │ ├── cls_3byte1.c │ │ │ │ │ │ │ ├── cls_3byte2.c │ │ │ │ │ │ │ ├── cls_4_1byte.c │ │ │ │ │ │ │ ├── cls_4byte.c │ │ │ │ │ │ │ ├── cls_5_1_byte.c │ │ │ │ │ │ │ ├── cls_5byte.c │ │ │ │ │ │ │ ├── cls_64byte.c │ │ │ │ │ │ │ ├── cls_6_1_byte.c │ │ │ │ │ │ │ ├── cls_6byte.c │ │ │ │ │ │ │ ├── cls_7_1_byte.c │ │ │ │ │ │ │ ├── cls_7byte.c │ │ │ │ │ │ │ ├── cls_8byte.c │ │ │ │ │ │ │ ├── cls_9byte1.c │ │ │ │ │ │ │ ├── cls_9byte2.c │ │ │ │ │ │ │ ├── cls_align_double.c │ │ │ │ │ │ │ ├── cls_align_float.c │ │ │ │ │ │ │ ├── cls_align_longdouble.c │ │ │ │ │ │ │ ├── cls_align_longdouble_split.c │ │ │ │ │ │ │ ├── cls_align_longdouble_split2.c │ │ │ │ │ │ │ ├── cls_align_pointer.c │ │ │ │ │ │ │ ├── cls_align_sint16.c │ │ │ │ │ │ │ ├── cls_align_sint32.c │ │ │ │ │ │ │ ├── cls_align_sint64.c │ │ │ │ │ │ │ ├── cls_align_uint16.c │ │ │ │ │ │ │ ├── cls_align_uint32.c │ │ │ │ │ │ │ ├── cls_align_uint64.c │ │ │ │ │ │ │ ├── cls_dbls_struct.c │ │ │ │ │ │ │ ├── cls_double.c │ │ │ │ │ │ │ ├── cls_double_va.c │ │ │ │ │ │ │ ├── cls_float.c │ │ │ │ │ │ │ ├── cls_longdouble.c │ │ │ │ │ │ │ ├── cls_longdouble_va.c │ │ │ │ │ │ │ ├── cls_multi_schar.c │ │ │ │ │ │ │ ├── cls_multi_sshort.c │ │ │ │ │ │ │ ├── cls_multi_sshortchar.c │ │ │ │ │ │ │ ├── cls_multi_uchar.c │ │ │ │ │ │ │ ├── cls_multi_ushort.c │ │ │ │ │ │ │ ├── cls_multi_ushortchar.c │ │ │ │ │ │ │ ├── cls_pointer.c │ │ │ │ │ │ │ ├── cls_pointer_stack.c │ │ │ │ │ │ │ ├── cls_schar.c │ │ │ │ │ │ │ ├── cls_sint.c │ │ │ │ │ │ │ ├── cls_sshort.c │ │ │ │ │ │ │ ├── cls_struct_va1.c │ │ │ │ │ │ │ ├── cls_uchar.c │ │ │ │ │ │ │ ├── cls_uchar_va.c │ │ │ │ │ │ │ ├── cls_uint.c │ │ │ │ │ │ │ ├── cls_uint_va.c │ │ │ │ │ │ │ ├── cls_ulong_va.c │ │ │ │ │ │ │ ├── cls_ulonglong.c │ │ │ │ │ │ │ ├── cls_ushort.c │ │ │ │ │ │ │ ├── cls_ushort_va.c │ │ │ │ │ │ │ ├── err_bad_abi.c │ │ │ │ │ │ │ ├── err_bad_typedef.c │ │ │ │ │ │ │ ├── ffitest.h │ │ │ │ │ │ │ ├── float.c │ │ │ │ │ │ │ ├── float1.c │ │ │ │ │ │ │ ├── float2.c │ │ │ │ │ │ │ ├── float3.c │ │ │ │ │ │ │ ├── float4.c │ │ │ │ │ │ │ ├── float_va.c │ │ │ │ │ │ │ ├── huge_struct.c │ │ │ │ │ │ │ ├── many.c │ │ │ │ │ │ │ ├── many2.c │ │ │ │ │ │ │ ├── negint.c │ │ │ │ │ │ │ ├── nested_struct.c │ │ │ │ │ │ │ ├── nested_struct1.c │ │ │ │ │ │ │ ├── nested_struct10.c │ │ │ │ │ │ │ ├── nested_struct11.c │ │ │ │ │ │ │ ├── nested_struct2.c │ │ │ │ │ │ │ ├── nested_struct3.c │ │ │ │ │ │ │ ├── nested_struct4.c │ │ │ │ │ │ │ ├── nested_struct5.c │ │ │ │ │ │ │ ├── nested_struct6.c │ │ │ │ │ │ │ ├── nested_struct7.c │ │ │ │ │ │ │ ├── nested_struct8.c │ │ │ │ │ │ │ ├── nested_struct9.c │ │ │ │ │ │ │ ├── problem1.c │ │ │ │ │ │ │ ├── promotion.c │ │ │ │ │ │ │ ├── pyobjc-tc.c │ │ │ │ │ │ │ ├── return_dbl.c │ │ │ │ │ │ │ ├── return_dbl1.c │ │ │ │ │ │ │ ├── return_dbl2.c │ │ │ │ │ │ │ ├── return_fl.c │ │ │ │ │ │ │ ├── return_fl1.c │ │ │ │ │ │ │ ├── return_fl2.c │ │ │ │ │ │ │ ├── return_fl3.c │ │ │ │ │ │ │ ├── return_ldl.c │ │ │ │ │ │ │ ├── return_ll.c │ │ │ │ │ │ │ ├── return_ll1.c │ │ │ │ │ │ │ ├── return_sc.c │ │ │ │ │ │ │ ├── return_sl.c │ │ │ │ │ │ │ ├── return_uc.c │ │ │ │ │ │ │ ├── return_ul.c │ │ │ │ │ │ │ ├── stret_large.c │ │ │ │ │ │ │ ├── stret_large2.c │ │ │ │ │ │ │ ├── stret_medium.c │ │ │ │ │ │ │ ├── stret_medium2.c │ │ │ │ │ │ │ ├── strlen.c │ │ │ │ │ │ │ ├── strlen2.c │ │ │ │ │ │ │ ├── strlen3.c │ │ │ │ │ │ │ ├── strlen4.c │ │ │ │ │ │ │ ├── struct1.c │ │ │ │ │ │ │ ├── struct2.c │ │ │ │ │ │ │ ├── struct3.c │ │ │ │ │ │ │ ├── struct4.c │ │ │ │ │ │ │ ├── struct5.c │ │ │ │ │ │ │ ├── struct6.c │ │ │ │ │ │ │ ├── struct7.c │ │ │ │ │ │ │ ├── struct8.c │ │ │ │ │ │ │ ├── struct9.c │ │ │ │ │ │ │ ├── testclosure.c │ │ │ │ │ │ │ ├── uninitialized.c │ │ │ │ │ │ │ ├── unwindtest.cc │ │ │ │ │ │ │ ├── unwindtest_ffi_call.cc │ │ │ │ │ │ │ ├── va_1.c │ │ │ │ │ │ │ ├── va_struct1.c │ │ │ │ │ │ │ ├── va_struct2.c │ │ │ │ │ │ │ └── va_struct3.c │ │ │ │ │ └── texinfo.tex │ │ │ │ ├── libffi_msvc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.ctypes │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffi.h │ │ │ │ │ ├── ffi_common.h │ │ │ │ │ ├── fficonfig.h │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── prep_cif.c │ │ │ │ │ ├── types.c │ │ │ │ │ ├── win32.c │ │ │ │ │ └── win64.asm │ │ │ │ ├── libffi_osx │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.pyobjc │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── ffi.h │ │ │ │ │ │ ├── ffi_common.h │ │ │ │ │ │ ├── fficonfig.h │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ ├── ppc-ffitarget.h │ │ │ │ │ │ └── x86-ffitarget.h │ │ │ │ │ ├── powerpc │ │ │ │ │ │ ├── ppc-darwin.S │ │ │ │ │ │ ├── ppc-darwin.h │ │ │ │ │ │ ├── ppc-darwin_closure.S │ │ │ │ │ │ ├── ppc-ffi_darwin.c │ │ │ │ │ │ └── ppc64-darwin_closure.S │ │ │ │ │ ├── types.c │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── darwin64.S │ │ │ │ │ │ ├── x86-darwin.S │ │ │ │ │ │ ├── x86-ffi64.c │ │ │ │ │ │ └── x86-ffi_darwin.c │ │ │ │ ├── malloc_closure.c │ │ │ │ └── stgdict.c │ │ │ ├── _curses_panel.c │ │ │ ├── _cursesmodule.c │ │ │ ├── _datetimemodule.c │ │ │ ├── _dbmmodule.c │ │ │ ├── _decimal │ │ │ │ ├── README.txt │ │ │ │ ├── _decimal.c │ │ │ │ ├── docstrings.h │ │ │ │ ├── libmpdec │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── basearith.c │ │ │ │ │ ├── basearith.h │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── constants.c │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── context.c │ │ │ │ │ ├── convolute.c │ │ │ │ │ ├── convolute.h │ │ │ │ │ ├── crt.c │ │ │ │ │ ├── crt.h │ │ │ │ │ ├── difradix2.c │ │ │ │ │ ├── difradix2.h │ │ │ │ │ ├── fnt.c │ │ │ │ │ ├── fnt.h │ │ │ │ │ ├── fourstep.c │ │ │ │ │ ├── fourstep.h │ │ │ │ │ ├── io.c │ │ │ │ │ ├── io.h │ │ │ │ │ ├── literature │ │ │ │ │ │ ├── REFERENCES.txt │ │ │ │ │ │ ├── bignum.txt │ │ │ │ │ │ ├── fnt.py │ │ │ │ │ │ ├── matrix-transform.txt │ │ │ │ │ │ ├── mulmod-64.txt │ │ │ │ │ │ ├── mulmod-ppro.txt │ │ │ │ │ │ ├── six-step.txt │ │ │ │ │ │ └── umodarith.lisp │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── mpalloc.h │ │ │ │ │ ├── mpdecimal.c │ │ │ │ │ ├── mpdecimal.h │ │ │ │ │ ├── numbertheory.c │ │ │ │ │ ├── numbertheory.h │ │ │ │ │ ├── sixstep.c │ │ │ │ │ ├── sixstep.h │ │ │ │ │ ├── transpose.c │ │ │ │ │ ├── transpose.h │ │ │ │ │ ├── typearith.h │ │ │ │ │ ├── umodarith.h │ │ │ │ │ ├── vccompat.h │ │ │ │ │ ├── vcdiv64.asm │ │ │ │ │ └── vcstdint.h │ │ │ │ └── tests │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── bench.py │ │ │ │ │ ├── bignum.py │ │ │ │ │ ├── deccheck.py │ │ │ │ │ ├── formathelper.py │ │ │ │ │ ├── randdec.py │ │ │ │ │ ├── randfloat.py │ │ │ │ │ ├── runall-memorydebugger.sh │ │ │ │ │ └── runall.bat │ │ │ ├── _elementtree.c │ │ │ ├── _functoolsmodule.c │ │ │ ├── _gdbmmodule.c │ │ │ ├── _hashopenssl.c │ │ │ ├── _heapqmodule.c │ │ │ ├── _io │ │ │ │ ├── _iomodule.c │ │ │ │ ├── _iomodule.h │ │ │ │ ├── bufferedio.c │ │ │ │ ├── bytesio.c │ │ │ │ ├── clinic │ │ │ │ │ ├── _iomodule.c.h │ │ │ │ │ ├── bufferedio.c.h │ │ │ │ │ ├── bytesio.c.h │ │ │ │ │ ├── fileio.c.h │ │ │ │ │ ├── iobase.c.h │ │ │ │ │ ├── stringio.c.h │ │ │ │ │ ├── textio.c.h │ │ │ │ │ └── winconsoleio.c.h │ │ │ │ ├── fileio.c │ │ │ │ ├── iobase.c │ │ │ │ ├── stringio.c │ │ │ │ ├── textio.c │ │ │ │ └── winconsoleio.c │ │ │ ├── _json.c │ │ │ ├── _localemodule.c │ │ │ ├── _lsprof.c │ │ │ ├── _lzmamodule.c │ │ │ ├── _math.c │ │ │ ├── _math.h │ │ │ ├── _multiprocessing │ │ │ │ ├── multiprocessing.c │ │ │ │ ├── multiprocessing.h │ │ │ │ └── semaphore.c │ │ │ ├── _opcode.c │ │ │ ├── _operator.c │ │ │ ├── _pickle.c │ │ │ ├── _posixsubprocess.c │ │ │ ├── _randommodule.c │ │ │ ├── _scproxy.c │ │ │ ├── _sha3 │ │ │ │ ├── README.txt │ │ │ │ ├── cleanup.py │ │ │ │ ├── clinic │ │ │ │ │ └── sha3module.c.h │ │ │ │ ├── kcp │ │ │ │ │ ├── KeccakHash.c │ │ │ │ │ ├── KeccakHash.h │ │ │ │ │ ├── KeccakP-1600-64.macros │ │ │ │ │ ├── KeccakP-1600-SnP-opt32.h │ │ │ │ │ ├── KeccakP-1600-SnP-opt64.h │ │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ │ ├── KeccakP-1600-inplace32BI.c │ │ │ │ │ ├── KeccakP-1600-opt64-config.h │ │ │ │ │ ├── KeccakP-1600-opt64.c │ │ │ │ │ ├── KeccakP-1600-unrolling.macros │ │ │ │ │ ├── KeccakSponge.c │ │ │ │ │ ├── KeccakSponge.h │ │ │ │ │ ├── KeccakSponge.inc │ │ │ │ │ ├── PlSnP-Fallback.inc │ │ │ │ │ ├── SnP-Relaned.h │ │ │ │ │ └── align.h │ │ │ │ └── sha3module.c │ │ │ ├── _sqlite │ │ │ │ ├── cache.c │ │ │ │ ├── cache.h │ │ │ │ ├── connection.c │ │ │ │ ├── connection.h │ │ │ │ ├── cursor.c │ │ │ │ ├── cursor.h │ │ │ │ ├── microprotocols.c │ │ │ │ ├── microprotocols.h │ │ │ │ ├── module.c │ │ │ │ ├── module.h │ │ │ │ ├── prepare_protocol.c │ │ │ │ ├── prepare_protocol.h │ │ │ │ ├── row.c │ │ │ │ ├── row.h │ │ │ │ ├── statement.c │ │ │ │ ├── statement.h │ │ │ │ ├── util.c │ │ │ │ └── util.h │ │ │ ├── _sre.c │ │ │ ├── _ssl.c │ │ │ ├── _ssl_data.h │ │ │ ├── _stat.c │ │ │ ├── _struct.c │ │ │ ├── _testbuffer.c │ │ │ ├── _testcapimodule.c │ │ │ ├── _testimportmultiple.c │ │ │ ├── _testmultiphase.c │ │ │ ├── _threadmodule.c │ │ │ ├── _tkinter.c │ │ │ ├── _tracemalloc.c │ │ │ ├── _weakref.c │ │ │ ├── _winapi.c │ │ │ ├── addrinfo.h │ │ │ ├── ar_beos │ │ │ ├── arraymodule.c │ │ │ ├── atexitmodule.c │ │ │ ├── audioop.c │ │ │ ├── binascii.c │ │ │ ├── cjkcodecs │ │ │ │ ├── README │ │ │ │ ├── _codecs_cn.c │ │ │ │ ├── _codecs_hk.c │ │ │ │ ├── _codecs_iso2022.c │ │ │ │ ├── _codecs_jp.c │ │ │ │ ├── _codecs_kr.c │ │ │ │ ├── _codecs_tw.c │ │ │ │ ├── alg_jisx0201.h │ │ │ │ ├── cjkcodecs.h │ │ │ │ ├── clinic │ │ │ │ │ └── multibytecodec.c.h │ │ │ │ ├── emu_jisx0213_2000.h │ │ │ │ ├── mappings_cn.h │ │ │ │ ├── mappings_hk.h │ │ │ │ ├── mappings_jisx0213_pair.h │ │ │ │ ├── mappings_jp.h │ │ │ │ ├── mappings_kr.h │ │ │ │ ├── mappings_tw.h │ │ │ │ ├── multibytecodec.c │ │ │ │ └── multibytecodec.h │ │ │ ├── clinic │ │ │ │ ├── _asynciomodule.c.h │ │ │ │ ├── _bz2module.c.h │ │ │ │ ├── _codecsmodule.c.h │ │ │ │ ├── _cryptmodule.c.h │ │ │ │ ├── _cursesmodule.c.h │ │ │ │ ├── _datetimemodule.c.h │ │ │ │ ├── _dbmmodule.c.h │ │ │ │ ├── _elementtree.c.h │ │ │ │ ├── _gdbmmodule.c.h │ │ │ │ ├── _hashopenssl.c.h │ │ │ │ ├── _lzmamodule.c.h │ │ │ │ ├── _opcode.c.h │ │ │ │ ├── _pickle.c.h │ │ │ │ ├── _sre.c.h │ │ │ │ ├── _ssl.c.h │ │ │ │ ├── _tkinter.c.h │ │ │ │ ├── _weakref.c.h │ │ │ │ ├── _winapi.c.h │ │ │ │ ├── arraymodule.c.h │ │ │ │ ├── audioop.c.h │ │ │ │ ├── binascii.c.h │ │ │ │ ├── cmathmodule.c.h │ │ │ │ ├── fcntlmodule.c.h │ │ │ │ ├── grpmodule.c.h │ │ │ │ ├── md5module.c.h │ │ │ │ ├── posixmodule.c.h │ │ │ │ ├── pwdmodule.c.h │ │ │ │ ├── pyexpat.c.h │ │ │ │ ├── sha1module.c.h │ │ │ │ ├── sha256module.c.h │ │ │ │ ├── sha512module.c.h │ │ │ │ ├── signalmodule.c.h │ │ │ │ ├── spwdmodule.c.h │ │ │ │ ├── unicodedata.c.h │ │ │ │ └── zlibmodule.c.h │ │ │ ├── cmathmodule.c │ │ │ ├── config.c.in │ │ │ ├── errnomodule.c │ │ │ ├── expat │ │ │ │ ├── COPYING │ │ │ │ ├── ascii.h │ │ │ │ ├── asciitab.h │ │ │ │ ├── expat.h │ │ │ │ ├── expat_config.h │ │ │ │ ├── expat_external.h │ │ │ │ ├── iasciitab.h │ │ │ │ ├── internal.h │ │ │ │ ├── latin1tab.h │ │ │ │ ├── loadlibrary.c │ │ │ │ ├── nametab.h │ │ │ │ ├── pyexpatns.h │ │ │ │ ├── siphash.h │ │ │ │ ├── utf8tab.h │ │ │ │ ├── winconfig.h │ │ │ │ ├── xmlparse.c │ │ │ │ ├── xmlrole.c │ │ │ │ ├── xmlrole.h │ │ │ │ ├── xmltok.c │ │ │ │ ├── xmltok.h │ │ │ │ ├── xmltok_impl.c │ │ │ │ ├── xmltok_impl.h │ │ │ │ └── xmltok_ns.c │ │ │ ├── faulthandler.c │ │ │ ├── fcntlmodule.c │ │ │ ├── fpectlmodule.c │ │ │ ├── fpetestmodule.c │ │ │ ├── gc_weakref.txt │ │ │ ├── gcmodule.c │ │ │ ├── getaddrinfo.c │ │ │ ├── getbuildinfo.c │ │ │ ├── getnameinfo.c │ │ │ ├── getpath.c │ │ │ ├── grpmodule.c │ │ │ ├── hashlib.h │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── itertoolsmodule.c │ │ │ ├── ld_so_aix.in │ │ │ ├── ld_so_beos │ │ │ ├── main.c │ │ │ ├── makesetup │ │ │ ├── makexp_aix │ │ │ ├── mathmodule.c │ │ │ ├── md5module.c │ │ │ ├── mmapmodule.c │ │ │ ├── nismodule.c │ │ │ ├── ossaudiodev.c │ │ │ ├── overlapped.c │ │ │ ├── parsermodule.c │ │ │ ├── posixmodule.c │ │ │ ├── posixmodule.h │ │ │ ├── pwdmodule.c │ │ │ ├── pyexpat.c │ │ │ ├── readline.c │ │ │ ├── resource.c │ │ │ ├── rotatingtree.c │ │ │ ├── rotatingtree.h │ │ │ ├── selectmodule.c │ │ │ ├── sha1module.c │ │ │ ├── sha256module.c │ │ │ ├── sha512module.c │ │ │ ├── signalmodule.c │ │ │ ├── socketmodule.c │ │ │ ├── socketmodule.h │ │ │ ├── spwdmodule.c │ │ │ ├── sre.h │ │ │ ├── sre_constants.h │ │ │ ├── sre_lib.h │ │ │ ├── symtablemodule.c │ │ │ ├── syslogmodule.c │ │ │ ├── termios.c │ │ │ ├── testcapi_long.h │ │ │ ├── timemodule.c │ │ │ ├── tkappinit.c │ │ │ ├── tkinter.h │ │ │ ├── unicodedata.c │ │ │ ├── unicodedata_db.h │ │ │ ├── unicodename_db.h │ │ │ ├── winreparse.h │ │ │ ├── xxlimited.c │ │ │ ├── xxmodule.c │ │ │ ├── xxsubtype.c │ │ │ ├── zipimport.c │ │ │ ├── zlib │ │ │ │ ├── ChangeLog │ │ │ │ ├── FAQ │ │ │ │ ├── INDEX │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── algorithm.txt │ │ │ │ ├── compress.c │ │ │ │ ├── configure │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── example.c │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── make_vms.com │ │ │ │ ├── minigzip.c │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.cmakein │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.3 │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib.map │ │ │ │ ├── zlib.pc.in │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ └── zlibmodule.c │ │ │ ├── Objects │ │ │ ├── README │ │ │ ├── abstract.c │ │ │ ├── accu.c │ │ │ ├── boolobject.c │ │ │ ├── bytearrayobject.c │ │ │ ├── bytes_methods.c │ │ │ ├── bytesobject.c │ │ │ ├── capsule.c │ │ │ ├── cellobject.c │ │ │ ├── classobject.c │ │ │ ├── clinic │ │ │ │ ├── bytearrayobject.c.h │ │ │ │ ├── bytesobject.c.h │ │ │ │ ├── dictobject.c.h │ │ │ │ └── unicodeobject.c.h │ │ │ ├── codeobject.c │ │ │ ├── complexobject.c │ │ │ ├── descrobject.c │ │ │ ├── dict-common.h │ │ │ ├── dictnotes.txt │ │ │ ├── dictobject.c │ │ │ ├── enumobject.c │ │ │ ├── exceptions.c │ │ │ ├── fileobject.c │ │ │ ├── floatobject.c │ │ │ ├── frameobject.c │ │ │ ├── funcobject.c │ │ │ ├── genobject.c │ │ │ ├── iterobject.c │ │ │ ├── listobject.c │ │ │ ├── listsort.txt │ │ │ ├── lnotab_notes.txt │ │ │ ├── longobject.c │ │ │ ├── memoryobject.c │ │ │ ├── methodobject.c │ │ │ ├── moduleobject.c │ │ │ ├── namespaceobject.c │ │ │ ├── object.c │ │ │ ├── obmalloc.c │ │ │ ├── odictobject.c │ │ │ ├── rangeobject.c │ │ │ ├── setobject.c │ │ │ ├── sliceobject.c │ │ │ ├── stringlib │ │ │ │ ├── README.txt │ │ │ │ ├── asciilib.h │ │ │ │ ├── codecs.h │ │ │ │ ├── count.h │ │ │ │ ├── ctype.h │ │ │ │ ├── eq.h │ │ │ │ ├── fastsearch.h │ │ │ │ ├── find.h │ │ │ │ ├── find_max_char.h │ │ │ │ ├── join.h │ │ │ │ ├── localeutil.h │ │ │ │ ├── partition.h │ │ │ │ ├── replace.h │ │ │ │ ├── split.h │ │ │ │ ├── stringdefs.h │ │ │ │ ├── transmogrify.h │ │ │ │ ├── ucs1lib.h │ │ │ │ ├── ucs2lib.h │ │ │ │ ├── ucs4lib.h │ │ │ │ ├── undef.h │ │ │ │ ├── unicode_format.h │ │ │ │ └── unicodedefs.h │ │ │ ├── structseq.c │ │ │ ├── tupleobject.c │ │ │ ├── typeobject.c │ │ │ ├── typeslots.inc │ │ │ ├── typeslots.py │ │ │ ├── unicodectype.c │ │ │ ├── unicodeobject.c │ │ │ ├── unicodetype_db.h │ │ │ └── weakrefobject.c │ │ │ ├── PC │ │ │ ├── WinMain.c │ │ │ ├── _findvs.cpp │ │ │ ├── _msi.c │ │ │ ├── _testconsole.c │ │ │ ├── bdist_wininst │ │ │ │ ├── PythonPowered.bmp │ │ │ │ ├── README.txt │ │ │ │ ├── archive.h │ │ │ │ ├── bdist_wininst.vcxproj │ │ │ │ ├── bdist_wininst.vcxproj.filters │ │ │ │ ├── build.bat │ │ │ │ ├── extract.c │ │ │ │ ├── install.c │ │ │ │ ├── install.rc │ │ │ │ └── resource.h │ │ │ ├── clinic │ │ │ │ ├── _testconsole.c.h │ │ │ │ ├── msvcrtmodule.c.h │ │ │ │ ├── winreg.c.h │ │ │ │ └── winsound.c.h │ │ │ ├── config.c │ │ │ ├── dl_nt.c │ │ │ ├── dllbase_nt.txt │ │ │ ├── empty.c │ │ │ ├── errmap.h │ │ │ ├── errmap.mak │ │ │ ├── external │ │ │ │ ├── Externals.txt │ │ │ │ ├── include │ │ │ │ │ └── Setup.Configuration.h │ │ │ │ ├── v140 │ │ │ │ │ ├── amd64 │ │ │ │ │ │ └── Microsoft.VisualStudio.Setup.Configuration.Native.lib │ │ │ │ │ └── win32 │ │ │ │ │ │ └── Microsoft.VisualStudio.Setup.Configuration.Native.lib │ │ │ │ └── v141 │ │ │ │ │ ├── amd64 │ │ │ │ │ └── Microsoft.VisualStudio.Setup.Configuration.Native.lib │ │ │ │ │ └── win32 │ │ │ │ │ └── Microsoft.VisualStudio.Setup.Configuration.Native.lib │ │ │ ├── frozen_dllmain.c │ │ │ ├── generrmap.c │ │ │ ├── getpathp.c │ │ │ ├── icons │ │ │ │ ├── launcher.icns │ │ │ │ ├── launcher.ico │ │ │ │ ├── launcher.svg │ │ │ │ ├── py.icns │ │ │ │ ├── py.ico │ │ │ │ ├── py.svg │ │ │ │ ├── pyc.icns │ │ │ │ ├── pyc.ico │ │ │ │ ├── pyc.svg │ │ │ │ ├── pyd.icns │ │ │ │ ├── pyd.ico │ │ │ │ ├── pyd.svg │ │ │ │ ├── python.icns │ │ │ │ ├── python.ico │ │ │ │ ├── python.svg │ │ │ │ ├── pythonw.icns │ │ │ │ ├── pythonw.ico │ │ │ │ ├── pythonw.svg │ │ │ │ ├── setup.icns │ │ │ │ ├── setup.ico │ │ │ │ └── setup.svg │ │ │ ├── invalid_parameter_handler.c │ │ │ ├── launcher.c │ │ │ ├── msvcrtmodule.c │ │ │ ├── pylauncher.rc │ │ │ ├── pyshellext.cpp │ │ │ ├── pyshellext.def │ │ │ ├── pyshellext.idl │ │ │ ├── pyshellext.rc │ │ │ ├── pyshellext_d.def │ │ │ ├── python.manifest │ │ │ ├── python3.def │ │ │ ├── python3dll.c │ │ │ ├── python_exe.rc │ │ │ ├── python_nt.rc │ │ │ ├── python_ver_rc.h │ │ │ ├── pythonw_exe.rc │ │ │ ├── readme.txt │ │ │ ├── sqlite3.rc │ │ │ ├── testpy.py │ │ │ ├── validate_ucrtbase.py │ │ │ ├── winreg.c │ │ │ └── winsound.c │ │ │ ├── PCbuild │ │ │ ├── _asyncio.vcxproj │ │ │ ├── _asyncio.vcxproj.filters │ │ │ ├── _bz2.vcxproj │ │ │ ├── _bz2.vcxproj.filters │ │ │ ├── _ctypes.vcxproj │ │ │ ├── _ctypes.vcxproj.filters │ │ │ ├── _ctypes_test.vcxproj │ │ │ ├── _ctypes_test.vcxproj.filters │ │ │ ├── _decimal.vcxproj │ │ │ ├── _decimal.vcxproj.filters │ │ │ ├── _distutils_findvs.vcxproj │ │ │ ├── _distutils_findvs.vcxproj.filters │ │ │ ├── _elementtree.vcxproj │ │ │ ├── _elementtree.vcxproj.filters │ │ │ ├── _freeze_importlib.vcxproj │ │ │ ├── _freeze_importlib.vcxproj.filters │ │ │ ├── _hashlib.vcxproj │ │ │ ├── _hashlib.vcxproj.filters │ │ │ ├── _lzma.vcxproj │ │ │ ├── _lzma.vcxproj.filters │ │ │ ├── _msi.vcxproj │ │ │ ├── _msi.vcxproj.filters │ │ │ ├── _multiprocessing.vcxproj │ │ │ ├── _multiprocessing.vcxproj.filters │ │ │ ├── _overlapped.vcxproj │ │ │ ├── _overlapped.vcxproj.filters │ │ │ ├── _socket.vcxproj │ │ │ ├── _socket.vcxproj.filters │ │ │ ├── _sqlite3.vcxproj │ │ │ ├── _sqlite3.vcxproj.filters │ │ │ ├── _ssl.vcxproj │ │ │ ├── _ssl.vcxproj.filters │ │ │ ├── _testbuffer.vcxproj │ │ │ ├── _testbuffer.vcxproj.filters │ │ │ ├── _testcapi.vcxproj │ │ │ ├── _testcapi.vcxproj.filters │ │ │ ├── _testconsole.vcxproj │ │ │ ├── _testconsole.vcxproj.filters │ │ │ ├── _testembed.vcxproj │ │ │ ├── _testembed.vcxproj.filters │ │ │ ├── _testimportmultiple.vcxproj │ │ │ ├── _testimportmultiple.vcxproj.filters │ │ │ ├── _testmultiphase.vcxproj │ │ │ ├── _testmultiphase.vcxproj.filters │ │ │ ├── _tkinter.vcxproj │ │ │ ├── _tkinter.vcxproj.filters │ │ │ ├── build.bat │ │ │ ├── build_env.bat │ │ │ ├── clean.bat │ │ │ ├── env.bat │ │ │ ├── field3.py │ │ │ ├── find_msbuild.bat │ │ │ ├── find_python.bat │ │ │ ├── get_external.py │ │ │ ├── get_externals.bat │ │ │ ├── idle.bat │ │ │ ├── libeay.vcxproj │ │ │ ├── liblzma.vcxproj │ │ │ ├── openssl.props │ │ │ ├── pcbuild.proj │ │ │ ├── pcbuild.sln │ │ │ ├── prepare_ssl.bat │ │ │ ├── prepare_ssl.py │ │ │ ├── pyexpat.vcxproj │ │ │ ├── pyexpat.vcxproj.filters │ │ │ ├── pylauncher.vcxproj │ │ │ ├── pylauncher.vcxproj.filters │ │ │ ├── pyproject.props │ │ │ ├── pyshellext.vcxproj │ │ │ ├── pyshellext.vcxproj.filters │ │ │ ├── python.props │ │ │ ├── python.vcxproj │ │ │ ├── python.vcxproj.filters │ │ │ ├── python3dll.vcxproj │ │ │ ├── python3dll.vcxproj.filters │ │ │ ├── pythoncore.vcxproj │ │ │ ├── pythoncore.vcxproj.filters │ │ │ ├── pythonw.vcxproj │ │ │ ├── pythonw.vcxproj.filters │ │ │ ├── pywlauncher.vcxproj │ │ │ ├── pywlauncher.vcxproj.filters │ │ │ ├── readme.txt │ │ │ ├── rmpyc.py │ │ │ ├── rt.bat │ │ │ ├── select.vcxproj │ │ │ ├── select.vcxproj.filters │ │ │ ├── sqlite3.vcxproj │ │ │ ├── sqlite3.vcxproj.filters │ │ │ ├── ssleay.vcxproj │ │ │ ├── tcl.vcxproj │ │ │ ├── tcltk.props │ │ │ ├── tix.vcxproj │ │ │ ├── tk.vcxproj │ │ │ ├── unicodedata.vcxproj │ │ │ ├── unicodedata.vcxproj.filters │ │ │ ├── urlretrieve.py │ │ │ ├── winsound.vcxproj │ │ │ ├── winsound.vcxproj.filters │ │ │ ├── xxlimited.vcxproj │ │ │ └── xxlimited.vcxproj.filters │ │ │ ├── Parser │ │ │ ├── Python.asdl │ │ │ ├── acceler.c │ │ │ ├── asdl.py │ │ │ ├── asdl_c.py │ │ │ ├── bitset.c │ │ │ ├── firstsets.c │ │ │ ├── grammar.c │ │ │ ├── grammar1.c │ │ │ ├── listnode.c │ │ │ ├── metagrammar.c │ │ │ ├── myreadline.c │ │ │ ├── node.c │ │ │ ├── parser.c │ │ │ ├── parser.h │ │ │ ├── parsetok.c │ │ │ ├── parsetok_pgen.c │ │ │ ├── pgen.c │ │ │ ├── pgenmain.c │ │ │ ├── printgrammar.c │ │ │ ├── tokenizer.c │ │ │ ├── tokenizer.h │ │ │ └── tokenizer_pgen.c │ │ │ ├── Programs │ │ │ ├── README │ │ │ ├── _freeze_importlib.c │ │ │ ├── _testembed.c │ │ │ └── python.c │ │ │ ├── Py368ReadMe.txt │ │ │ ├── PyMod-3.6.8 │ │ │ ├── Include │ │ │ │ ├── fileutils.h │ │ │ │ ├── osdefs.h │ │ │ │ ├── pyconfig.h │ │ │ │ ├── pydtrace.h │ │ │ │ └── pyport.h │ │ │ ├── Lib │ │ │ │ ├── ctypes │ │ │ │ │ └── __init__.py │ │ │ │ ├── genericpath.py │ │ │ │ ├── glob.py │ │ │ │ ├── http │ │ │ │ │ └── client.py │ │ │ │ ├── http_echo_client.py │ │ │ │ ├── http_echo_server.py │ │ │ │ ├── importlib │ │ │ │ │ └── _bootstrap_external.py │ │ │ │ ├── io.py │ │ │ │ ├── logging │ │ │ │ │ └── __init__.py │ │ │ │ ├── ntpath.py │ │ │ │ ├── os.py │ │ │ │ ├── pydoc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── site.py │ │ │ │ ├── subprocess.py │ │ │ │ └── zipfile.py │ │ │ ├── Modules │ │ │ │ ├── _blake2 │ │ │ │ │ └── impl │ │ │ │ │ │ └── blake2.h │ │ │ │ ├── _ctypes │ │ │ │ │ ├── _ctypes.c │ │ │ │ │ ├── callproc.c │ │ │ │ │ ├── ctypes_dlfcn.h │ │ │ │ │ ├── libffi_msvc │ │ │ │ │ │ ├── ffi.c │ │ │ │ │ │ ├── ffi.h │ │ │ │ │ │ └── ffi_common.h │ │ │ │ │ └── malloc_closure.c │ │ │ │ ├── config.c │ │ │ │ ├── cpu.nasm │ │ │ │ ├── cpu_gcc.s │ │ │ │ ├── cpu_ia32.nasm │ │ │ │ ├── cpu_ia32_gcc.s │ │ │ │ ├── edk2module.c │ │ │ │ ├── errnomodule.c │ │ │ │ ├── faulthandler.c │ │ │ │ ├── getpath.c │ │ │ │ ├── main.c │ │ │ │ ├── selectmodule.c │ │ │ │ ├── socketmodule.c │ │ │ │ ├── socketmodule.h │ │ │ │ ├── sre_lib.h │ │ │ │ ├── timemodule.c │ │ │ │ └── zlib │ │ │ │ │ └── gzguts.h │ │ │ ├── Objects │ │ │ │ ├── dictobject.c │ │ │ │ ├── memoryobject.c │ │ │ │ ├── object.c │ │ │ │ ├── stringlib │ │ │ │ │ └── transmogrify.h │ │ │ │ └── unicodeobject.c │ │ │ └── Python │ │ │ │ ├── bltinmodule.c │ │ │ │ ├── fileutils.c │ │ │ │ ├── getcopyright.c │ │ │ │ ├── importlib_external.h │ │ │ │ ├── marshal.c │ │ │ │ ├── pyhash.c │ │ │ │ ├── pylifecycle.c │ │ │ │ ├── pystate.c │ │ │ │ ├── pytime.c │ │ │ │ └── random.c │ │ │ ├── Python │ │ │ ├── Python-ast.c │ │ │ ├── README │ │ │ ├── _warnings.c │ │ │ ├── asdl.c │ │ │ ├── ast.c │ │ │ ├── bltinmodule.c │ │ │ ├── ceval.c │ │ │ ├── ceval_gil.h │ │ │ ├── clinic │ │ │ │ ├── bltinmodule.c.h │ │ │ │ └── import.c.h │ │ │ ├── codecs.c │ │ │ ├── compile.c │ │ │ ├── condvar.h │ │ │ ├── dtoa.c │ │ │ ├── dup2.c │ │ │ ├── dynamic_annotations.c │ │ │ ├── dynload_aix.c │ │ │ ├── dynload_dl.c │ │ │ ├── dynload_hpux.c │ │ │ ├── dynload_next.c │ │ │ ├── dynload_shlib.c │ │ │ ├── dynload_stub.c │ │ │ ├── dynload_win.c │ │ │ ├── errors.c │ │ │ ├── fileutils.c │ │ │ ├── formatter_unicode.c │ │ │ ├── frozen.c │ │ │ ├── frozenmain.c │ │ │ ├── future.c │ │ │ ├── getargs.c │ │ │ ├── getcompiler.c │ │ │ ├── getcopyright.c │ │ │ ├── getopt.c │ │ │ ├── getplatform.c │ │ │ ├── getversion.c │ │ │ ├── graminit.c │ │ │ ├── import.c │ │ │ ├── importdl.c │ │ │ ├── importdl.h │ │ │ ├── importlib.h │ │ │ ├── importlib_external.h │ │ │ ├── makeopcodetargets.py │ │ │ ├── marshal.c │ │ │ ├── modsupport.c │ │ │ ├── mysnprintf.c │ │ │ ├── mystrtoul.c │ │ │ ├── opcode_targets.h │ │ │ ├── peephole.c │ │ │ ├── pyarena.c │ │ │ ├── pyctype.c │ │ │ ├── pyfpe.c │ │ │ ├── pyhash.c │ │ │ ├── pylifecycle.c │ │ │ ├── pymath.c │ │ │ ├── pystate.c │ │ │ ├── pystrcmp.c │ │ │ ├── pystrhex.c │ │ │ ├── pystrtod.c │ │ │ ├── pythonrun.c │ │ │ ├── pytime.c │ │ │ ├── random.c │ │ │ ├── sigcheck.c │ │ │ ├── strdup.c │ │ │ ├── structmember.c │ │ │ ├── symtable.c │ │ │ ├── sysmodule.c │ │ │ ├── thread.c │ │ │ ├── thread_foobar.h │ │ │ ├── thread_nt.h │ │ │ ├── thread_pthread.h │ │ │ ├── traceback.c │ │ │ └── wordcode_helpers.h │ │ │ ├── Python368.inf │ │ │ ├── README.rst │ │ │ ├── Tools │ │ │ ├── README │ │ │ ├── buildbot │ │ │ │ ├── build.bat │ │ │ │ ├── buildmsi.bat │ │ │ │ ├── clean.bat │ │ │ │ └── test.bat │ │ │ ├── ccbench │ │ │ │ └── ccbench.py │ │ │ ├── clinic │ │ │ │ ├── clinic.py │ │ │ │ ├── clinic_test.py │ │ │ │ └── cpp.py │ │ │ ├── demo │ │ │ │ ├── README │ │ │ │ ├── beer.py │ │ │ │ ├── eiffel.py │ │ │ │ ├── hanoi.py │ │ │ │ ├── life.py │ │ │ │ ├── markov.py │ │ │ │ ├── mcast.py │ │ │ │ ├── queens.py │ │ │ │ ├── redemo.py │ │ │ │ ├── rpython.py │ │ │ │ ├── rpythond.py │ │ │ │ ├── sortvisu.py │ │ │ │ ├── ss1.py │ │ │ │ └── vector.py │ │ │ ├── freeze │ │ │ │ ├── README │ │ │ │ ├── bkfile.py │ │ │ │ ├── checkextensions.py │ │ │ │ ├── checkextensions_win32.py │ │ │ │ ├── extensions_win32.ini │ │ │ │ ├── flag.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hello.py │ │ │ │ ├── makeconfig.py │ │ │ │ ├── makefreeze.py │ │ │ │ ├── makemakefile.py │ │ │ │ ├── parsesetup.py │ │ │ │ ├── test │ │ │ │ │ └── ok.py │ │ │ │ ├── win32.html │ │ │ │ └── winmakemakefile.py │ │ │ ├── gdb │ │ │ │ └── libpython.py │ │ │ ├── i18n │ │ │ │ ├── makelocalealias.py │ │ │ │ ├── msgfmt.py │ │ │ │ └── pygettext.py │ │ │ ├── importbench │ │ │ │ ├── README │ │ │ │ └── importbench.py │ │ │ ├── iobench │ │ │ │ └── iobench.py │ │ │ ├── msi │ │ │ │ ├── README.txt │ │ │ │ ├── build.bat │ │ │ │ ├── buildrelease.bat │ │ │ │ ├── bundle │ │ │ │ │ ├── Default.thm │ │ │ │ │ ├── Default.wxl │ │ │ │ │ ├── SideBar.png │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── PythonBootstrapperApplication.cpp │ │ │ │ │ │ ├── pch.cpp │ │ │ │ │ │ ├── pch.h │ │ │ │ │ │ ├── pythonba.cpp │ │ │ │ │ │ ├── pythonba.def │ │ │ │ │ │ ├── pythonba.sln │ │ │ │ │ │ ├── pythonba.vcxproj │ │ │ │ │ │ └── resource.h │ │ │ │ │ ├── bundle.targets │ │ │ │ │ ├── bundle.wxl │ │ │ │ │ ├── bundle.wxs │ │ │ │ │ ├── full.wixproj │ │ │ │ │ ├── packagegroups │ │ │ │ │ │ ├── core.wxs │ │ │ │ │ │ ├── crt.wxs │ │ │ │ │ │ ├── dev.wxs │ │ │ │ │ │ ├── doc.wxs │ │ │ │ │ │ ├── exe.wxs │ │ │ │ │ │ ├── launcher.wxs │ │ │ │ │ │ ├── lib.wxs │ │ │ │ │ │ ├── packageinstall.wxs │ │ │ │ │ │ ├── pip.wxs │ │ │ │ │ │ ├── postinstall.wxs │ │ │ │ │ │ ├── tcltk.wxs │ │ │ │ │ │ ├── test.wxs │ │ │ │ │ │ └── tools.wxs │ │ │ │ │ ├── releaselocal.wixproj │ │ │ │ │ ├── releaseweb.wixproj │ │ │ │ │ └── snapshot.wixproj │ │ │ │ ├── common.wxs │ │ │ │ ├── common_en-US.wxl_template │ │ │ │ ├── csv_to_wxs.py │ │ │ │ ├── dev │ │ │ │ │ ├── dev.wixproj │ │ │ │ │ ├── dev.wxs │ │ │ │ │ ├── dev_d.wixproj │ │ │ │ │ ├── dev_d.wxs │ │ │ │ │ ├── dev_en-US.wxl │ │ │ │ │ └── dev_files.wxs │ │ │ │ ├── distutils.command.bdist_wininst.py │ │ │ │ ├── doc │ │ │ │ │ ├── doc.wixproj │ │ │ │ │ ├── doc.wxs │ │ │ │ │ ├── doc_en-US.wxl_template │ │ │ │ │ ├── doc_files.wxs │ │ │ │ │ └── doc_no_files.wxs │ │ │ │ ├── exe │ │ │ │ │ ├── crtlicense.txt │ │ │ │ │ ├── exe.wixproj │ │ │ │ │ ├── exe.wxs │ │ │ │ │ ├── exe_d.wixproj │ │ │ │ │ ├── exe_d.wxs │ │ │ │ │ ├── exe_en-US.wxl_template │ │ │ │ │ ├── exe_files.wxs │ │ │ │ │ ├── exe_pdb.wixproj │ │ │ │ │ ├── exe_pdb.wxs │ │ │ │ │ └── exe_reg.wxs │ │ │ │ ├── generate_md5.py │ │ │ │ ├── get_externals.bat │ │ │ │ ├── launcher │ │ │ │ │ ├── launcher.wixproj │ │ │ │ │ ├── launcher.wxs │ │ │ │ │ ├── launcher_en-US.wxl │ │ │ │ │ ├── launcher_files.wxs │ │ │ │ │ └── launcher_reg.wxs │ │ │ │ ├── lib │ │ │ │ │ ├── lib.wixproj │ │ │ │ │ ├── lib.wxs │ │ │ │ │ ├── lib_d.wixproj │ │ │ │ │ ├── lib_d.wxs │ │ │ │ │ ├── lib_en-US.wxl │ │ │ │ │ ├── lib_files.wxs │ │ │ │ │ ├── lib_pdb.wixproj │ │ │ │ │ └── lib_pdb.wxs │ │ │ │ ├── make_zip.proj │ │ │ │ ├── make_zip.py │ │ │ │ ├── msi.props │ │ │ │ ├── msi.targets │ │ │ │ ├── path │ │ │ │ │ ├── path.wixproj │ │ │ │ │ ├── path.wxs │ │ │ │ │ └── path_en-US.wxl │ │ │ │ ├── pip │ │ │ │ │ ├── pip.wixproj │ │ │ │ │ ├── pip.wxs │ │ │ │ │ └── pip_en-US.wxl │ │ │ │ ├── purge.py │ │ │ │ ├── tcltk │ │ │ │ │ ├── tcltk.wixproj │ │ │ │ │ ├── tcltk.wxs │ │ │ │ │ ├── tcltk_d.wixproj │ │ │ │ │ ├── tcltk_d.wxs │ │ │ │ │ ├── tcltk_en-US.wxl_template │ │ │ │ │ ├── tcltk_files.wxs │ │ │ │ │ ├── tcltk_pdb.wixproj │ │ │ │ │ ├── tcltk_pdb.wxs │ │ │ │ │ └── tcltk_reg.wxs │ │ │ │ ├── test │ │ │ │ │ ├── test.wixproj │ │ │ │ │ ├── test.wxs │ │ │ │ │ ├── test_d.wixproj │ │ │ │ │ ├── test_d.wxs │ │ │ │ │ ├── test_en-US.wxl │ │ │ │ │ ├── test_files.wxs │ │ │ │ │ ├── test_pdb.wixproj │ │ │ │ │ └── test_pdb.wxs │ │ │ │ ├── testrelease.bat │ │ │ │ ├── tools │ │ │ │ │ ├── tools.wixproj │ │ │ │ │ ├── tools.wxs │ │ │ │ │ ├── tools_en-US.wxl │ │ │ │ │ └── tools_files.wxs │ │ │ │ ├── uploadrelease.bat │ │ │ │ ├── uploadrelease.proj │ │ │ │ └── wix.props │ │ │ ├── nuget │ │ │ │ ├── build.bat │ │ │ │ ├── make_pkg.proj │ │ │ │ ├── python.nuspec │ │ │ │ ├── python.props │ │ │ │ ├── pythondaily.nuspec │ │ │ │ └── pythonx86.nuspec │ │ │ ├── parser │ │ │ │ └── unparse.py │ │ │ ├── pybench │ │ │ │ ├── Arithmetic.py │ │ │ │ ├── Calls.py │ │ │ │ ├── CommandLine.py │ │ │ │ ├── Constructs.py │ │ │ │ ├── Dict.py │ │ │ │ ├── Exceptions.py │ │ │ │ ├── Imports.py │ │ │ │ ├── Instances.py │ │ │ │ ├── LICENSE │ │ │ │ ├── Lists.py │ │ │ │ ├── Lookups.py │ │ │ │ ├── NewInstances.py │ │ │ │ ├── Numbers.py │ │ │ │ ├── README │ │ │ │ ├── Setup.py │ │ │ │ ├── Strings.py │ │ │ │ ├── Tuples.py │ │ │ │ ├── Unicode.py │ │ │ │ ├── With.py │ │ │ │ ├── clockres.py │ │ │ │ ├── package │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── submodule.py │ │ │ │ ├── pybench.py │ │ │ │ └── systimes.py │ │ │ ├── pynche │ │ │ │ ├── ChipViewer.py │ │ │ │ ├── ColorDB.py │ │ │ │ ├── DetailsViewer.py │ │ │ │ ├── ListViewer.py │ │ │ │ ├── Main.py │ │ │ │ ├── PyncheWidget.py │ │ │ │ ├── README │ │ │ │ ├── StripViewer.py │ │ │ │ ├── Switchboard.py │ │ │ │ ├── TextViewer.py │ │ │ │ ├── TypeinViewer.py │ │ │ │ ├── X │ │ │ │ │ ├── rgb.txt │ │ │ │ │ └── xlicense.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── html40colors.txt │ │ │ │ ├── namedcolors.txt │ │ │ │ ├── pyColorChooser.py │ │ │ │ ├── pynche │ │ │ │ ├── pynche.pyw │ │ │ │ ├── webcolors.txt │ │ │ │ └── websafe.txt │ │ │ ├── scripts │ │ │ │ ├── 2to3 │ │ │ │ ├── README │ │ │ │ ├── abitype.py │ │ │ │ ├── analyze_dxp.py │ │ │ │ ├── byext.py │ │ │ │ ├── byteyears.py │ │ │ │ ├── checkpip.py │ │ │ │ ├── checkpyc.py │ │ │ │ ├── cleanfuture.py │ │ │ │ ├── combinerefs.py │ │ │ │ ├── copytime.py │ │ │ │ ├── crlf.py │ │ │ │ ├── db2pickle.py │ │ │ │ ├── diff.py │ │ │ │ ├── dutree.doc │ │ │ │ ├── dutree.py │ │ │ │ ├── eptags.py │ │ │ │ ├── find-uname.py │ │ │ │ ├── find_recursionlimit.py │ │ │ │ ├── finddiv.py │ │ │ │ ├── findlinksto.py │ │ │ │ ├── findnocoding.py │ │ │ │ ├── fixcid.py │ │ │ │ ├── fixdiv.py │ │ │ │ ├── fixheader.py │ │ │ │ ├── fixnotice.py │ │ │ │ ├── fixps.py │ │ │ │ ├── generate_opcode_h.py │ │ │ │ ├── get-remote-certificate.py │ │ │ │ ├── google.py │ │ │ │ ├── gprof2html.py │ │ │ │ ├── h2py.py │ │ │ │ ├── highlight.py │ │ │ │ ├── idle3 │ │ │ │ ├── ifdef.py │ │ │ │ ├── import_diagnostics.py │ │ │ │ ├── lfcr.py │ │ │ │ ├── linktree.py │ │ │ │ ├── lll.py │ │ │ │ ├── mailerdaemon.py │ │ │ │ ├── make_ctype.py │ │ │ │ ├── md5sum.py │ │ │ │ ├── mkreal.py │ │ │ │ ├── ndiff.py │ │ │ │ ├── nm2def.py │ │ │ │ ├── objgraph.py │ │ │ │ ├── parse_html5_entities.py │ │ │ │ ├── parseentities.py │ │ │ │ ├── patchcheck.py │ │ │ │ ├── pathfix.py │ │ │ │ ├── pdeps.py │ │ │ │ ├── pickle2db.py │ │ │ │ ├── pindent.py │ │ │ │ ├── ptags.py │ │ │ │ ├── pydoc3 │ │ │ │ ├── pysource.py │ │ │ │ ├── pyvenv │ │ │ │ ├── reindent-rst.py │ │ │ │ ├── reindent.py │ │ │ │ ├── rgrep.py │ │ │ │ ├── run_tests.py │ │ │ │ ├── serve.py │ │ │ │ ├── suff.py │ │ │ │ ├── svneol.py │ │ │ │ ├── texi2html.py │ │ │ │ ├── treesync.py │ │ │ │ ├── untabify.py │ │ │ │ ├── update_file.py │ │ │ │ ├── which.py │ │ │ │ └── win_add2path.py │ │ │ ├── ssl │ │ │ │ ├── make_ssl_data.py │ │ │ │ ├── multissltests.py │ │ │ │ └── sslspeed.vcxproj │ │ │ ├── stringbench │ │ │ │ ├── README │ │ │ │ └── stringbench.py │ │ │ ├── test2to3 │ │ │ │ ├── README │ │ │ │ ├── maintest.py │ │ │ │ ├── setup.py │ │ │ │ ├── test │ │ │ │ │ ├── runtests.py │ │ │ │ │ └── test_foo.py │ │ │ │ └── test2to3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── hello.py │ │ │ ├── tz │ │ │ │ └── zdump.py │ │ │ ├── unicode │ │ │ │ ├── comparecodecs.py │ │ │ │ ├── gencjkcodecs.py │ │ │ │ ├── gencodec.py │ │ │ │ ├── genwincodec.py │ │ │ │ ├── genwincodecs.bat │ │ │ │ ├── listcodecs.py │ │ │ │ ├── makeunicodedata.py │ │ │ │ ├── mkstringprep.py │ │ │ │ └── python-mappings │ │ │ │ │ ├── CP1140.TXT │ │ │ │ │ ├── CP273.TXT │ │ │ │ │ ├── KOI8-U.TXT │ │ │ │ │ └── TIS-620.TXT │ │ │ └── unittestgui │ │ │ │ ├── README.txt │ │ │ │ └── unittestgui.py │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── create_python_pkg.bat │ │ │ ├── create_python_pkg.sh │ │ │ ├── install-sh │ │ │ ├── pyconfig.h.in │ │ │ ├── setup.py │ │ │ └── srcprep.py │ └── Sockets │ │ ├── DataSink │ │ ├── DataSink.c │ │ └── DataSink.inf │ │ ├── DataSource │ │ ├── DataSource.c │ │ └── DataSource.inf │ │ ├── GetAddrInfo │ │ ├── GetAddrInfo.c │ │ └── GetAddrInfo.inf │ │ ├── GetHostByAddr │ │ ├── GetHostByAddr.c │ │ └── GetHostByAddr.inf │ │ ├── GetHostByDns │ │ ├── GetHostByDns.c │ │ └── GetHostByDns.inf │ │ ├── GetHostByName │ │ ├── GetHostByName.c │ │ └── GetHostByName.inf │ │ ├── GetNameInfo │ │ ├── GetNameInfo.c │ │ └── GetNameInfo.inf │ │ ├── GetNetByAddr │ │ ├── GetNetByAddr.c │ │ └── GetNetByAddr.inf │ │ ├── GetNetByName │ │ ├── GetNetByName.c │ │ └── GetNetByName.inf │ │ ├── GetServByName │ │ ├── GetServByName.c │ │ └── GetServByName.inf │ │ ├── GetServByPort │ │ ├── GetServByPort.c │ │ └── GetServByPort.inf │ │ ├── OobRx │ │ ├── Main.c │ │ ├── OobRx.c │ │ ├── OobRx.h │ │ ├── OobRx.inf │ │ └── Windows │ │ │ ├── OobRx.sln │ │ │ ├── OobRx.suo │ │ │ ├── OobRx.vcproj │ │ │ └── main.c │ │ ├── OobTx │ │ ├── Main.c │ │ ├── OobTx.c │ │ ├── OobTx.h │ │ ├── OobTx.inf │ │ └── Windows │ │ │ ├── OobTx.sln │ │ │ ├── OobTx.suo │ │ │ ├── OobTx.vcproj │ │ │ └── main.c │ │ ├── RawIp4Rx │ │ ├── Main.c │ │ ├── RawIp4Rx.c │ │ ├── RawIp4Rx.h │ │ ├── RawIp4Rx.inf │ │ └── Windows │ │ │ ├── RawIp4Rx.sln │ │ │ ├── RawIp4Rx.vcproj │ │ │ └── main.c │ │ ├── RawIp4Tx │ │ ├── Main.c │ │ ├── RawIp4Tx.c │ │ ├── RawIp4Tx.h │ │ ├── RawIp4Tx.inf │ │ └── Windows │ │ │ ├── RawIp4Tx.sln │ │ │ ├── RawIp4Tx.vcproj │ │ │ └── main.c │ │ ├── ReadMe.txt │ │ ├── RecvDgram │ │ ├── RecvDgram.c │ │ └── RecvDgram.inf │ │ ├── SetHostName │ │ ├── SetHostName.c │ │ └── SetHostName.inf │ │ ├── SetSockOpt │ │ ├── SetSockOpt.c │ │ └── SetSockOpt.inf │ │ ├── Sockets.inc │ │ ├── TftpServer │ │ ├── TftpServer.c │ │ ├── TftpServer.h │ │ └── TftpServer.inf │ │ └── WebServer │ │ ├── ACPI.c │ │ ├── BootServicesTable.c │ │ ├── ConfigurationTable.c │ │ ├── DhcpOptions.c │ │ ├── DxeServicesTable.c │ │ ├── Exit.c │ │ ├── Firmware.c │ │ ├── HTTP.c │ │ ├── Handles.c │ │ ├── Hello.c │ │ ├── Index.c │ │ ├── MemoryMap.c │ │ ├── Mtrr.c │ │ ├── PageList.c │ │ ├── Ports.c │ │ ├── Reboot.c │ │ ├── RuntimeServicesTable.c │ │ ├── SystemTable.c │ │ ├── WebServer.c │ │ ├── WebServer.h │ │ └── WebServer.inf ├── ISSUES.txt └── ReadMe.txt ├── CODEOWNERS ├── CONTRIBUTORS.md ├── License-History.txt ├── License.txt ├── Readme.md ├── StdLib ├── BsdSocketLib │ ├── BsdSocketLib.inf │ ├── Ip6Addr_Any.c │ ├── Ip6Addr_LinkLocal_AllNodes.c │ ├── Ip6Addr_LinkLocal_AllRouters.c │ ├── Ip6Addr_Loopback.c │ ├── Ip6Addr_NodeLocal_AllNodes.c │ ├── SocketInternals.h │ ├── Socklib_internals.h │ ├── accept.c │ ├── base64.c │ ├── bind.c │ ├── close.c │ ├── connect.c │ ├── errno.c │ ├── getaddrinfo.c │ ├── gethostbydns.c │ ├── gethostbyht.c │ ├── gethostbynis.c │ ├── gethostnamadr.c │ ├── gethostname.c │ ├── getnameinfo.c │ ├── getnetbydns.c │ ├── getnetbyht.c │ ├── getnetbynis.c │ ├── getnetnamadr.c │ ├── getpeername.c │ ├── getproto.c │ ├── getprotoent.c │ ├── getprotoname.c │ ├── getservbyname.c │ ├── getservbyport.c │ ├── getservent.c │ ├── getsockname.c │ ├── getsockopt.c │ ├── herror.c │ ├── inet_net_ntop.c │ ├── inet_net_pton.c │ ├── inet_neta.c │ ├── inet_pton.c │ ├── listen.c │ ├── map_v4v6.c │ ├── ns_addr.c │ ├── ns_name.c │ ├── ns_netint.c │ ├── ns_ntoa.c │ ├── ns_parse.c │ ├── ns_print.c │ ├── ns_ttl.c │ ├── nsap_addr.c │ ├── poll.c │ ├── read.c │ ├── recv.c │ ├── recvfrom.c │ ├── res_comp.c │ ├── res_config.h │ ├── res_data.c │ ├── res_debug.c │ ├── res_init.c │ ├── res_mkquery.c │ ├── res_mkupdate.c │ ├── res_query.c │ ├── res_send.c │ ├── res_update.c │ ├── send.c │ ├── sendto.c │ ├── sethostname.c │ ├── setsockopt.c │ ├── shutdown.c │ ├── socket.c │ └── write.c ├── Efi │ └── StdLib │ │ └── etc │ │ ├── host.conf │ │ ├── hosts │ │ ├── networks │ │ ├── protocols │ │ ├── resolv.conf │ │ └── services ├── EfiSocketLib │ ├── DxeSupport.c │ ├── EfiSocketLib.inf │ ├── Init.c │ ├── Ip4.c │ ├── ReleaseNotes.txt │ ├── Service.c │ ├── Socket.c │ ├── Socket.h │ ├── Tcp4.c │ ├── Tcp6.c │ ├── Udp4.c │ ├── Udp6.c │ └── UseEfiSocketLib.c ├── Fixes.txt ├── ISSUES.txt ├── Include │ ├── Aarch64 │ │ ├── arm-gcc.h │ │ ├── machine │ │ │ ├── ansi.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── ieee.h │ │ │ ├── ieeefp.h │ │ │ ├── int_const.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── milieu.h │ │ └── softfloat.h │ ├── Arm │ │ ├── arm-gcc.h │ │ ├── machine │ │ │ ├── _math.h │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── cpufunc.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── frame.h │ │ │ ├── ieee.h │ │ │ ├── ieeefp.h │ │ │ ├── int_const.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── lock.h │ │ │ ├── math.h │ │ │ ├── mcontext.h │ │ │ ├── param.h │ │ │ ├── proc.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── milieu.h │ │ └── softfloat.h │ ├── Containers │ │ ├── Fifo.h │ │ └── ModuloUtil.h │ ├── Efi │ │ └── EfiSocketLib.h │ ├── Ia32 │ │ └── machine │ │ │ ├── _math.h │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── float.h │ │ │ ├── ieee.h │ │ │ ├── int_const.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ ├── LoongArch64 │ │ ├── loongarch-gcc.h │ │ ├── machine │ │ │ ├── ansi.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── ieee.h │ │ │ ├── ieeefp.h │ │ │ ├── int_const.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── milieu.h │ │ └── softfloat.h │ ├── Lua │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ └── lualib.h │ ├── Protocol │ │ └── EfiSocket.h │ ├── X64 │ │ └── machine │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── float.h │ │ │ ├── fpu.h │ │ │ ├── ieee.h │ │ │ ├── int_const.h │ │ │ ├── int_fmtio.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── nameser_compat.h │ │ └── telnet.h │ ├── assert.h │ ├── ctype.h │ ├── dirent.h │ ├── err.h │ ├── errno.h │ ├── fcntl.h │ ├── float.h │ ├── glob.h │ ├── ieeefp.h │ ├── inttypes.h │ ├── iso646.h │ ├── langinfo.h │ ├── libgen.h │ ├── limits.h │ ├── locale.h │ ├── math.h │ ├── net │ │ ├── if.h │ │ ├── if_dl.h │ │ ├── radix.h │ │ ├── route.h │ │ └── servent.h │ ├── netatalk │ │ └── at.h │ ├── netdb.h │ ├── netinet │ │ ├── in.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ └── tcp.h │ ├── netinet6 │ │ └── in6.h │ ├── netns │ │ └── ns.h │ ├── nl_types.h │ ├── nsswitch.h │ ├── paths.h │ ├── pwd.h │ ├── resolv.h │ ├── setjmp.h │ ├── signal.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── stringlist.h │ ├── strings.h │ ├── sys │ │ ├── EfiCdefs.h │ │ ├── EfiSysCall.h │ │ ├── _ctype.h │ │ ├── _posix.h │ │ ├── ansi.h │ │ ├── bswap.h │ │ ├── callout.h │ │ ├── cdefs.h │ │ ├── cdefs_aout.h │ │ ├── dirent.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── fd_set.h │ │ ├── featuretest.h │ │ ├── file.h │ │ ├── filio.h │ │ ├── float_ieee754.h │ │ ├── ieee754.h │ │ ├── inttypes.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── localedef.h │ │ ├── param.h │ │ ├── poll.h │ │ ├── pool.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── signal.h │ │ ├── sigtypes.h │ │ ├── socket.h │ │ ├── sockio.h │ │ ├── stat.h │ │ ├── stdint.h │ │ ├── sysctl.h │ │ ├── syslimits.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── types.h │ │ ├── uio.h │ │ ├── unistd.h │ │ └── wait.h │ ├── sysexits.h │ ├── time.h │ ├── unistd.h │ ├── utime.h │ ├── wchar.h │ ├── wctype.h │ └── x86 │ │ ├── float.h │ │ ├── ieee.h │ │ ├── limits.h │ │ └── math.h ├── LibC │ ├── CRT │ │ ├── Gcc.c │ │ └── Ia32 │ │ │ ├── ashrdi3.S │ │ │ ├── lldiv.c │ │ │ ├── lldvrm.c │ │ │ ├── llmul.c │ │ │ ├── llrem.c │ │ │ ├── llshl.c │ │ │ ├── llshr.c │ │ │ ├── mulll.S │ │ │ ├── shldi3.S │ │ │ ├── udivdi3.S │ │ │ ├── ulldiv.c │ │ │ ├── ulldvrm.c │ │ │ ├── ullrem.c │ │ │ ├── ullshr.c │ │ │ └── umoddi3.S │ ├── Containers │ │ ├── Common │ │ │ └── ModuloUtil.c │ │ ├── ContainerLib.inf │ │ └── Queues │ │ │ └── Fifo.c │ ├── Ctype │ │ ├── CClass.c │ │ ├── CConv.c │ │ ├── Ctype.inf │ │ └── iCtype.c │ ├── LibC.inf │ ├── Locale │ │ ├── Locale.inf │ │ ├── __mb_cur_max.c │ │ ├── __wctoint.h │ │ ├── _def_messages.c │ │ ├── _def_monetary.c │ │ ├── _def_numeric.c │ │ ├── _def_time.c │ │ ├── _wcstod.h │ │ ├── _wcstol.h │ │ ├── _wcstoul.h │ │ ├── aliasname.c │ │ ├── aliasname_local.h │ │ ├── ctypeio.c │ │ ├── ctypeio.h │ │ ├── iswctype_sb.c │ │ ├── localeconv.c │ │ ├── multibyte_Utf8.c │ │ ├── multibyte_sb.c │ │ ├── nl_langinfo.c │ │ ├── rune.h │ │ ├── runetype.h │ │ ├── setlocale.c │ │ ├── setlocale1.c │ │ ├── setlocale32.c │ │ ├── wcscoll.c │ │ ├── wcsftime.c │ │ ├── wcstod.c │ │ ├── wcstof.c │ │ ├── wcstoimax.c │ │ ├── wcstol.c │ │ ├── wcstold.c │ │ ├── wcstoll.c │ │ ├── wcstoul.c │ │ ├── wcstoull.c │ │ ├── wcstoumax.c │ │ └── wcsxfrm.c │ ├── Main │ │ ├── Arm │ │ │ ├── fixunsdfsi.c │ │ │ ├── floatunsidf.c │ │ │ ├── flt_rounds.c │ │ │ ├── fp_lib.h │ │ │ ├── int_endianness.h │ │ │ ├── int_lib.h │ │ │ ├── int_types.h │ │ │ └── int_util.h │ │ ├── ByteSwap.c │ │ ├── HtoNtoH.c │ │ ├── Ia32 │ │ │ ├── fpu_rmode.S │ │ │ ├── fpu_rmode.asm │ │ │ ├── ftol2.obj │ │ │ ├── isinfl.c │ │ │ └── isnanl.c │ │ ├── Main.c │ │ ├── X64 │ │ │ ├── fpu_rmode.S │ │ │ ├── fpu_rmode.asm │ │ │ ├── isinfl.c │ │ │ └── isnanl.c │ │ ├── assert.c │ │ ├── bswap16.c │ │ ├── bswap32.c │ │ ├── bswap64.c │ │ ├── errno.c │ │ ├── infinityf_ieee754.c │ │ ├── isinfd_ieee754.c │ │ ├── isinff_ieee754.c │ │ ├── isnand_ieee754.c │ │ ├── isnanf_ieee754.c │ │ ├── longjmp.c │ │ ├── nanf_ieee754.c │ │ └── x86flt_rounds.c │ ├── Math │ │ ├── Math.inf │ │ ├── e_acos.c │ │ ├── e_asin.c │ │ ├── e_atan2.c │ │ ├── e_cosh.c │ │ ├── e_exp.c │ │ ├── e_fmod.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_log2.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_sinh.c │ │ ├── e_sqrt.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_tan.c │ │ ├── math_private.h │ │ ├── s_atan.c │ │ ├── s_ceil.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_expm1.c │ │ ├── s_fabs.c │ │ ├── s_finite.c │ │ ├── s_floor.c │ │ ├── s_frexp.c │ │ ├── s_infinity.c │ │ ├── s_ldexp.c │ │ ├── s_modf.c │ │ ├── s_scalbn.c │ │ ├── s_sin.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── w_acos.c │ │ ├── w_asin.c │ │ ├── w_atan2.c │ │ ├── w_cosh.c │ │ ├── w_exp.c │ │ ├── w_fmod.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_log2.c │ │ ├── w_pow.c │ │ ├── w_sinh.c │ │ └── w_sqrt.c │ ├── NetUtil │ │ ├── NetUtil.inf │ │ ├── inet_addr.c │ │ ├── inet_lnaof.c │ │ ├── inet_makeaddr.c │ │ ├── inet_netof.c │ │ ├── inet_network.c │ │ ├── inet_ntoa.c │ │ └── inet_ntop.c │ ├── Signal │ │ ├── Signal.c │ │ └── Signal.inf │ ├── Softfloat │ │ ├── Arm │ │ │ ├── __aeabi_dcmpeq.c │ │ │ ├── __aeabi_dcmpge.c │ │ │ ├── __aeabi_dcmpgt.c │ │ │ ├── __aeabi_dcmple.c │ │ │ ├── __aeabi_dcmplt.c │ │ │ ├── __aeabi_dcmpun.c │ │ │ ├── __aeabi_fcmpeq.c │ │ │ ├── __aeabi_fcmpge.c │ │ │ ├── __aeabi_fcmpgt.c │ │ │ ├── __aeabi_fcmple.c │ │ │ ├── __aeabi_fcmplt.c │ │ │ └── __aeabi_fcmpun.c │ │ ├── Makefile.inc │ │ ├── README.NetBSD │ │ ├── README.txt │ │ ├── Softfloat.inf │ │ ├── bits32 │ │ │ ├── softfloat-macros │ │ │ └── softfloat.c │ │ ├── bits64 │ │ │ ├── softfloat-macros │ │ │ └── softfloat.c │ │ ├── eqdf2.c │ │ ├── eqsf2.c │ │ ├── eqtf2.c │ │ ├── fpgetmask.c │ │ ├── fpgetround.c │ │ ├── fpgetsticky.c │ │ ├── fpsetmask.c │ │ ├── fpsetround.c │ │ ├── fpsetsticky.c │ │ ├── gedf2.c │ │ ├── gesf2.c │ │ ├── getf2.c │ │ ├── gexf2.c │ │ ├── gtdf2.c │ │ ├── gtsf2.c │ │ ├── gttf2.c │ │ ├── gtxf2.c │ │ ├── ledf2.c │ │ ├── lesf2.c │ │ ├── letf2.c │ │ ├── ltdf2.c │ │ ├── ltsf2.c │ │ ├── lttf2.c │ │ ├── nedf2.c │ │ ├── negdf2.c │ │ ├── negsf2.c │ │ ├── negtf2.c │ │ ├── negxf2.c │ │ ├── nesf2.c │ │ ├── netf2.c │ │ ├── nexf2.c │ │ ├── softfloat-for-gcc.h │ │ ├── softfloat-history.txt │ │ ├── softfloat-source.txt │ │ ├── softfloat-specialize │ │ ├── softfloat.txt │ │ ├── templates │ │ │ ├── milieu.h │ │ │ ├── softfloat-specialize │ │ │ └── softfloat.h │ │ ├── timesoftfloat.c │ │ ├── timesoftfloat.txt │ │ ├── unorddf2.c │ │ ├── unordsf2.c │ │ └── unordtf2.c │ ├── StdLib │ │ ├── Bsearch.c │ │ ├── Environs.c │ │ ├── Malloc.c │ │ ├── NumericInt.c │ │ ├── Qsort.c │ │ ├── Rand.c │ │ ├── StdLib.inf │ │ ├── Xabs.c │ │ ├── Xdiv.c │ │ ├── realpath.c │ │ ├── setprogname.c │ │ ├── strtoimax.c │ │ └── strtoumax.c │ ├── Stdio │ │ ├── Stdio.inf │ │ ├── clrerr.c │ │ ├── fclose.c │ │ ├── fdopen.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetln.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fgetstr.c │ │ ├── fgetwc.c │ │ ├── fgetws.c │ │ ├── fileext.h │ │ ├── fileno.c │ │ ├── findfp.c │ │ ├── flags.c │ │ ├── floatio.h │ │ ├── flockfile.c │ │ ├── fopen.c │ │ ├── fparseln.c │ │ ├── fprintf.c │ │ ├── fpurge.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fputwc.c │ │ ├── fputws.c │ │ ├── fread.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fseeko.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── ftello.c │ │ ├── funopen.c │ │ ├── fvwrite.c │ │ ├── fvwrite.h │ │ ├── fwalk.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwscanf.c │ │ ├── getc.c │ │ ├── getchar.c │ │ ├── gets.c │ │ ├── gettemp.c │ │ ├── getwc.c │ │ ├── getwchar.c │ │ ├── glue.h │ │ ├── local.h │ │ ├── makebuf.c │ │ ├── mkdtemp.c │ │ ├── mkstemp.c │ │ ├── mktemp.c │ │ ├── perror.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putchar.c │ │ ├── puts.c │ │ ├── putwc.c │ │ ├── putwchar.c │ │ ├── refill.c │ │ ├── remove.c │ │ ├── rewind.c │ │ ├── rget.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setbuffer.c │ │ ├── setvbuf.c │ │ ├── snprintf.c │ │ ├── snprintf_ss.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── stdio.c │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── tempnam.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasprintf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsnprintf_ss.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wbuf.c │ │ ├── wcio.h │ │ ├── wprintf.c │ │ ├── wscanf.c │ │ └── wsetup.c │ ├── String │ │ ├── Comparison.c │ │ ├── Concatenation.c │ │ ├── Copying.c │ │ ├── ErrorList.c │ │ ├── Misc.c │ │ ├── Searching.c │ │ ├── String.inf │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strncasecmp.c │ │ └── strsep.c │ ├── Time │ │ ├── Theory.txt │ │ ├── Time.c │ │ ├── Time.inf │ │ ├── TimeEfi.c │ │ ├── TimeVals.h │ │ ├── ZoneProc.c │ │ ├── gettimeofday.c │ │ ├── itimer.c │ │ ├── strftime.c │ │ ├── strptime.c │ │ ├── timegm.c │ │ └── tzfile.h │ ├── Uefi │ │ ├── Devices │ │ │ ├── Console │ │ │ │ └── daConsole.c │ │ │ ├── UefiShell │ │ │ │ └── daShell.c │ │ │ ├── Utility │ │ │ │ ├── DevGenisis.c │ │ │ │ ├── DevSearch.c │ │ │ │ └── Path.c │ │ │ ├── daConsole.inf │ │ │ ├── daShell.inf │ │ │ └── daUtility.inf │ │ ├── InteractiveIO │ │ │ ├── CanonRead.c │ │ │ ├── IIO.c │ │ │ ├── IIO.inf │ │ │ ├── IIOecho.c │ │ │ ├── IIOechoCtrl.h │ │ │ ├── IIOutilities.c │ │ │ ├── IIOutilities.h │ │ │ ├── IIOwrite.c │ │ │ ├── NonCanonRead.c │ │ │ └── TerminalFunctions.c │ │ ├── StubFunctions.c │ │ ├── SysCalls.c │ │ ├── Uefi.inf │ │ ├── Xform.c │ │ ├── compat.c │ │ ├── select.c │ │ └── writev.c │ ├── Wchar │ │ ├── Comparison.c │ │ ├── Concatenation.c │ │ ├── ConsDecons.c │ │ ├── Copying.c │ │ ├── Searching.c │ │ ├── String.c │ │ └── Wchar.inf │ └── gdtoa │ │ ├── Ipf │ │ └── strtold.c │ │ ├── _strtof.c │ │ ├── _strtold.c │ │ ├── atof.c │ │ ├── dmisc.c │ │ ├── dtoa.c │ │ ├── gdtoa.c │ │ ├── gdtoa.h │ │ ├── gdtoa.inf │ │ ├── gdtoaimp.h │ │ ├── gethex.c │ │ ├── gmisc.c │ │ ├── hd_init.c │ │ ├── hexnan.c │ │ ├── ldtoa.c │ │ ├── misc.c │ │ ├── smisc.c │ │ ├── strtod.c │ │ ├── strtodg.c │ │ ├── strtof.c │ │ ├── strtold_px.c │ │ ├── strtold_subr.c │ │ ├── strtopx.c │ │ ├── sum.c │ │ └── ulp.c ├── PosixLib │ ├── Err │ │ ├── LibErr.inf │ │ └── warn_err.c │ ├── Gen │ │ ├── LibGen.inf │ │ ├── access.c │ │ ├── closedir.c │ │ ├── dirname.c │ │ ├── opendir.c │ │ ├── readdir.c │ │ └── utime.c │ ├── GetPass │ │ └── GetPass.c │ ├── Glob │ │ ├── LibGlob.inf │ │ └── glob.c │ ├── PosixLib.inf │ └── Stringlist │ │ ├── LibStringlist.inf │ │ └── stringlist.c ├── ReadMe.txt ├── SocketDxe │ ├── ComponentName.c │ ├── DriverBinding.c │ ├── EntryUnload.c │ ├── Socket.h │ └── SocketDxe.inf ├── StdLib.dec ├── StdLib.dsc ├── StdLib.inc └── UseSocketDxe │ ├── UseSocketDxe.c │ └── UseSocketDxe.inf └── StdLibPrivateInternalFiles ├── DoNotUse.dec ├── Include ├── Arm │ ├── arith.h │ └── gd_qnan.h ├── Device │ ├── Console.h │ ├── Device.h │ └── IIO.h ├── Efi │ └── SysEfi.h ├── Ia32 │ ├── arith.h │ └── gd_qnan.h ├── LibConfig.h ├── LoongArch64 │ ├── arith.h │ └── gd_qnan.h ├── MainData.h ├── X64 │ ├── arith.h │ └── gd_qnan.h ├── extern.h ├── kfile.h ├── namespace.h └── reentrant.h └── ReadMe.txt /.github/workflows/AssignReviewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/.github/workflows/AssignReviewers.yaml -------------------------------------------------------------------------------- /.github/workflows/build-app-uefi-gcc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/.github/workflows/build-app-uefi-gcc.yaml -------------------------------------------------------------------------------- /.github/workflows/build-python-uefi-gcc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/.github/workflows/build-python-uefi-gcc.yaml -------------------------------------------------------------------------------- /.github/workflows/build-python-uefi-vs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/.github/workflows/build-python-uefi-vs.yaml -------------------------------------------------------------------------------- /AppPkg/AppPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/AppPkg.dec -------------------------------------------------------------------------------- /AppPkg/AppPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/AppPkg.dsc -------------------------------------------------------------------------------- /AppPkg/Applications/ArithChk/ArithChk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/ArithChk/ArithChk.inf -------------------------------------------------------------------------------- /AppPkg/Applications/ArithChk/arithchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/ArithChk/arithchk.c -------------------------------------------------------------------------------- /AppPkg/Applications/Enquire/Enquire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Enquire/Enquire.c -------------------------------------------------------------------------------- /AppPkg/Applications/Enquire/Enquire.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Enquire/Enquire.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Hello/Hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Hello/Hello.c -------------------------------------------------------------------------------- /AppPkg/Applications/Hello/Hello.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Hello/Hello.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/Copyright.txt -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/Lua.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/Lua.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/LuaLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/LuaLib.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/ReadMe.txt -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/contents.html -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/logo.gif -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/lua.1 -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/lua.css -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/luac.1 -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/manual.css -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/manual.html -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/doc/readme.html -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/scripts/Fact.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/scripts/Fact.lua -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/scripts/Hello.lua: -------------------------------------------------------------------------------- 1 | print("Hello UEFI World") 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/Makefile -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lapi.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lapi.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lauxlib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lauxlib.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lbaselib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lbitlib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lcode.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lcode.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lcorolib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lctype.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lctype.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ldblib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ldebug.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ldebug.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ldo.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ldo.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ldump.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lfunc.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lfunc.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lgc.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lgc.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/linit.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/liolib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/llex.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/llex.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/llimits.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lmathlib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lmem.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lmem.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/loadlib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lobject.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lobject.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lopcodes.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lopcodes.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/loslib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lparser.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lparser.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lstate.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lstate.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lstring.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lstring.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lstrlib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ltable.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ltable.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ltablib.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ltm.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/ltm.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lua.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lua.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lua.hpp -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/luac.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/luaconf.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lualib.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lundump.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lundump.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lvm.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lvm.h -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lzio.c -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Lua/src/lzio.h -------------------------------------------------------------------------------- /AppPkg/Applications/Main/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Main/Main.c -------------------------------------------------------------------------------- /AppPkg/Applications/Main/Main.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Main/Main.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Doc/docutils.conf: -------------------------------------------------------------------------------- 1 | [restructuredtext parser] 2 | smartquotes-locales: ja: ""'' 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo one' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo two' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py: -------------------------------------------------------------------------------- 1 | attr = 'in module' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'portion2 foo two' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child one' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child two' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child three' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Lib/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLPytX -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Misc/Porting: -------------------------------------------------------------------------------- 1 | This document is moved to https://devguide.python.org/porting/ 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Objects/README: -------------------------------------------------------------------------------- 1 | Source files for various builtin objects 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/PCbuild/build_env.bat: -------------------------------------------------------------------------------- 1 | @%comspec% /k env.bat %* 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Parser/parsetok_pgen.c: -------------------------------------------------------------------------------- 1 | #define PGEN 2 | #include "parsetok.c" 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Parser/tokenizer_pgen.c: -------------------------------------------------------------------------------- 1 | #define PGEN 2 | #include "tokenizer.c" 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/flag.py: -------------------------------------------------------------------------------- 1 | initialized = True 2 | print("Hello world!") 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello world...') 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/test/ok.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit(0) 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/test2to3/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobRx/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobRx/Main.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobRx/OobRx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobRx/OobRx.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobRx/OobRx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobRx/OobRx.h -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobRx/OobRx.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobRx/OobRx.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobTx/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobTx/Main.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobTx/OobTx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobTx/OobTx.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobTx/OobTx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobTx/OobTx.h -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/OobTx/OobTx.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/OobTx/OobTx.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/RawIp4Rx/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/RawIp4Rx/Main.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/RawIp4Tx/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/RawIp4Tx/Main.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/ReadMe.txt -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/Sockets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/Sockets.inc -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/WebServer/ACPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/WebServer/ACPI.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/WebServer/Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/WebServer/Exit.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/WebServer/HTTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/WebServer/HTTP.c -------------------------------------------------------------------------------- /AppPkg/Applications/Sockets/WebServer/Mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/Applications/Sockets/WebServer/Mtrr.c -------------------------------------------------------------------------------- /AppPkg/ISSUES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/ISSUES.txt -------------------------------------------------------------------------------- /AppPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/AppPkg/ReadMe.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /License-History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/License-History.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/Readme.md -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/BsdSocketLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/BsdSocketLib.inf -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/Ip6Addr_Any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/Ip6Addr_Any.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/Ip6Addr_Loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/Ip6Addr_Loopback.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/SocketInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/SocketInternals.h -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/Socklib_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/Socklib_internals.h -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/accept.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/base64.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/bind.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/close.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/connect.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/errno.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getaddrinfo.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/gethostbydns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/gethostbydns.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/gethostbyht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/gethostbyht.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/gethostbynis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/gethostbynis.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/gethostnamadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/gethostnamadr.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/gethostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/gethostname.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getnameinfo.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getnetbydns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getnetbydns.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getnetbyht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getnetbyht.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getnetbynis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getnetbynis.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getnetnamadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getnetnamadr.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getpeername.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getpeername.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getproto.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getprotoent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getprotoent.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getprotoname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getprotoname.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getservbyname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getservbyname.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getservbyport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getservbyport.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getservent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getservent.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getsockname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getsockname.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/getsockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/getsockopt.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/herror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/herror.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/inet_net_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/inet_net_ntop.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/inet_net_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/inet_net_pton.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/inet_neta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/inet_neta.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/inet_pton.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/listen.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/map_v4v6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/map_v4v6.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/ns_addr.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/ns_name.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_netint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/ns_netint.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_ntoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/ns_ntoa.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/ns_parse.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/ns_print.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_ttl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/ns_ttl.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/nsap_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/nsap_addr.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/poll.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/read.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/recv.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/recvfrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/recvfrom.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_comp.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_config.h -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_data.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_debug.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_init.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_mkquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_mkquery.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_mkupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_mkupdate.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_query.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_send.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/res_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/res_update.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/send.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/sendto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/sendto.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/sethostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/sethostname.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/setsockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/setsockopt.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/shutdown.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/socket.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/BsdSocketLib/write.c -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/host.conf: -------------------------------------------------------------------------------- 1 | # Order to perform name searches 2 | dns, nis 3 | hosts 4 | 5 | -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Efi/StdLib/etc/hosts -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/networks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Efi/StdLib/etc/networks -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/protocols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Efi/StdLib/etc/protocols -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Efi/StdLib/etc/resolv.conf -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Efi/StdLib/etc/services -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/DxeSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/DxeSupport.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/EfiSocketLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/EfiSocketLib.inf -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Init.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Ip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Ip4.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/ReleaseNotes.txt -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Service.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Socket.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Socket.h -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Tcp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Tcp4.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Tcp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Tcp6.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Udp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Udp4.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Udp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/Udp6.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/UseEfiSocketLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/EfiSocketLib/UseEfiSocketLib.c -------------------------------------------------------------------------------- /StdLib/Fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Fixes.txt -------------------------------------------------------------------------------- /StdLib/ISSUES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/ISSUES.txt -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/arm-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/arm-gcc.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/ansi.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/bswap.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/byte_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/byte_swap.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/endian.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/fenv.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/float.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/ieee.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/ieeefp.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/int_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/int_const.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/int_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/int_limits.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/int_types.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/limits.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/math.h: -------------------------------------------------------------------------------- 1 | /* $NetBSD: math.h,v 1.2 2002/02/19 13:08:14 simonb Exp $ */ 2 | 3 | #define __HAVE_NANF 4 | -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/param.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/signal.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/machine/types.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/milieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/milieu.h -------------------------------------------------------------------------------- /StdLib/Include/Aarch64/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Aarch64/softfloat.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/arm-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/arm-gcc.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/_math.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/ansi.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/asm.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/atomic.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/bswap.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/byte_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/byte_swap.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/cpufunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/cpufunc.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/endian.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/endian_machdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/endian_machdep.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/fenv.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/float.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/frame.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/ieee.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/ieeefp.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/int_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/int_const.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/int_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/int_limits.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/int_mwgwtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/int_mwgwtypes.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/int_types.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/limits.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/lock.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/math.h: -------------------------------------------------------------------------------- 1 | /* $NetBSD: math.h,v 1.2 2002/02/19 13:08:14 simonb Exp $ */ 2 | 3 | #define __HAVE_NANF 4 | -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/mcontext.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/param.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/proc.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/signal.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/machine/types.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/milieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/milieu.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Arm/softfloat.h -------------------------------------------------------------------------------- /StdLib/Include/Containers/Fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Containers/Fifo.h -------------------------------------------------------------------------------- /StdLib/Include/Containers/ModuloUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Containers/ModuloUtil.h -------------------------------------------------------------------------------- /StdLib/Include/Efi/EfiSocketLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Efi/EfiSocketLib.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/_math.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/ansi.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/asm.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/bswap.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/byte_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/byte_swap.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/endian.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/float.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/ieee.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/int_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/int_const.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/int_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/int_limits.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/int_mwgwtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/int_mwgwtypes.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/int_types.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/limits.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/math.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/param.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/signal.h -------------------------------------------------------------------------------- /StdLib/Include/Ia32/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Ia32/machine/types.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/loongarch-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/loongarch-gcc.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/ansi.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/bswap.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/endian.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/fenv.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/float.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/ieee.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/ieeefp.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/limits.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/math.h: -------------------------------------------------------------------------------- 1 | /* $NetBSD: math.h,v 1.2 2002/02/19 13:08:14 simonb Exp $ */ 2 | 3 | #define __HAVE_NANF 4 | -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/machine/param.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/milieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/milieu.h -------------------------------------------------------------------------------- /StdLib/Include/LoongArch64/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/LoongArch64/softfloat.h -------------------------------------------------------------------------------- /StdLib/Include/Lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Lua/lauxlib.h -------------------------------------------------------------------------------- /StdLib/Include/Lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Lua/lua.h -------------------------------------------------------------------------------- /StdLib/Include/Lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Lua/luaconf.h -------------------------------------------------------------------------------- /StdLib/Include/Lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Lua/lualib.h -------------------------------------------------------------------------------- /StdLib/Include/Protocol/EfiSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/Protocol/EfiSocket.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/ansi.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/asm.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/atomic.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/bswap.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/byte_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/byte_swap.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/endian.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/float.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/fpu.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/ieee.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/int_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/int_const.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/int_fmtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/int_fmtio.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/int_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/int_limits.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/int_types.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/limits.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/math.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/param.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/signal.h -------------------------------------------------------------------------------- /StdLib/Include/X64/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/X64/machine/types.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/arpa/ftp.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/arpa/inet.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/arpa/nameser.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/arpa/nameser_compat.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/arpa/telnet.h -------------------------------------------------------------------------------- /StdLib/Include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/assert.h -------------------------------------------------------------------------------- /StdLib/Include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/ctype.h -------------------------------------------------------------------------------- /StdLib/Include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/dirent.h -------------------------------------------------------------------------------- /StdLib/Include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/err.h -------------------------------------------------------------------------------- /StdLib/Include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/errno.h -------------------------------------------------------------------------------- /StdLib/Include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /StdLib/Include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/float.h -------------------------------------------------------------------------------- /StdLib/Include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/glob.h -------------------------------------------------------------------------------- /StdLib/Include/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/ieeefp.h -------------------------------------------------------------------------------- /StdLib/Include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/inttypes.h -------------------------------------------------------------------------------- /StdLib/Include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/iso646.h -------------------------------------------------------------------------------- /StdLib/Include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/langinfo.h -------------------------------------------------------------------------------- /StdLib/Include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/libgen.h -------------------------------------------------------------------------------- /StdLib/Include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/limits.h -------------------------------------------------------------------------------- /StdLib/Include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/locale.h -------------------------------------------------------------------------------- /StdLib/Include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/math.h -------------------------------------------------------------------------------- /StdLib/Include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/net/if.h -------------------------------------------------------------------------------- /StdLib/Include/net/if_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/net/if_dl.h -------------------------------------------------------------------------------- /StdLib/Include/net/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/net/radix.h -------------------------------------------------------------------------------- /StdLib/Include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/net/route.h -------------------------------------------------------------------------------- /StdLib/Include/net/servent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/net/servent.h -------------------------------------------------------------------------------- /StdLib/Include/netatalk/at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netatalk/at.h -------------------------------------------------------------------------------- /StdLib/Include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netdb.h -------------------------------------------------------------------------------- /StdLib/Include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netinet/in.h -------------------------------------------------------------------------------- /StdLib/Include/netinet/in_systm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netinet/in_systm.h -------------------------------------------------------------------------------- /StdLib/Include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netinet/ip.h -------------------------------------------------------------------------------- /StdLib/Include/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netinet/tcp.h -------------------------------------------------------------------------------- /StdLib/Include/netinet6/in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netinet6/in6.h -------------------------------------------------------------------------------- /StdLib/Include/netns/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/netns/ns.h -------------------------------------------------------------------------------- /StdLib/Include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/nl_types.h -------------------------------------------------------------------------------- /StdLib/Include/nsswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/nsswitch.h -------------------------------------------------------------------------------- /StdLib/Include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/paths.h -------------------------------------------------------------------------------- /StdLib/Include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/pwd.h -------------------------------------------------------------------------------- /StdLib/Include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/resolv.h -------------------------------------------------------------------------------- /StdLib/Include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/setjmp.h -------------------------------------------------------------------------------- /StdLib/Include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/signal.h -------------------------------------------------------------------------------- /StdLib/Include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/stdarg.h -------------------------------------------------------------------------------- /StdLib/Include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/stdbool.h -------------------------------------------------------------------------------- /StdLib/Include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/stddef.h -------------------------------------------------------------------------------- /StdLib/Include/stdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /StdLib/Include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/stdio.h -------------------------------------------------------------------------------- /StdLib/Include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/stdlib.h -------------------------------------------------------------------------------- /StdLib/Include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/string.h -------------------------------------------------------------------------------- /StdLib/Include/stringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/stringlist.h -------------------------------------------------------------------------------- /StdLib/Include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/strings.h -------------------------------------------------------------------------------- /StdLib/Include/sys/EfiCdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/EfiCdefs.h -------------------------------------------------------------------------------- /StdLib/Include/sys/EfiSysCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/EfiSysCall.h -------------------------------------------------------------------------------- /StdLib/Include/sys/_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/_ctype.h -------------------------------------------------------------------------------- /StdLib/Include/sys/_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/_posix.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/ansi.h -------------------------------------------------------------------------------- /StdLib/Include/sys/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/bswap.h -------------------------------------------------------------------------------- /StdLib/Include/sys/callout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/callout.h -------------------------------------------------------------------------------- /StdLib/Include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/cdefs.h -------------------------------------------------------------------------------- /StdLib/Include/sys/cdefs_aout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/cdefs_aout.h -------------------------------------------------------------------------------- /StdLib/Include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/dirent.h -------------------------------------------------------------------------------- /StdLib/Include/sys/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/endian.h -------------------------------------------------------------------------------- /StdLib/Include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/errno.h -------------------------------------------------------------------------------- /StdLib/Include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/fcntl.h -------------------------------------------------------------------------------- /StdLib/Include/sys/fd_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/fd_set.h -------------------------------------------------------------------------------- /StdLib/Include/sys/featuretest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/featuretest.h -------------------------------------------------------------------------------- /StdLib/Include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/file.h -------------------------------------------------------------------------------- /StdLib/Include/sys/filio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/filio.h -------------------------------------------------------------------------------- /StdLib/Include/sys/float_ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/float_ieee754.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/ieee754.h -------------------------------------------------------------------------------- /StdLib/Include/sys/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/inttypes.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ioccom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/ioccom.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/ioctl.h -------------------------------------------------------------------------------- /StdLib/Include/sys/localedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/localedef.h -------------------------------------------------------------------------------- /StdLib/Include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/param.h -------------------------------------------------------------------------------- /StdLib/Include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/poll.h -------------------------------------------------------------------------------- /StdLib/Include/sys/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/pool.h -------------------------------------------------------------------------------- /StdLib/Include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/resource.h -------------------------------------------------------------------------------- /StdLib/Include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/select.h -------------------------------------------------------------------------------- /StdLib/Include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/signal.h -------------------------------------------------------------------------------- /StdLib/Include/sys/sigtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/sigtypes.h -------------------------------------------------------------------------------- /StdLib/Include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/socket.h -------------------------------------------------------------------------------- /StdLib/Include/sys/sockio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/sockio.h -------------------------------------------------------------------------------- /StdLib/Include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/stat.h -------------------------------------------------------------------------------- /StdLib/Include/sys/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/stdint.h -------------------------------------------------------------------------------- /StdLib/Include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/sysctl.h -------------------------------------------------------------------------------- /StdLib/Include/sys/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/syslimits.h -------------------------------------------------------------------------------- /StdLib/Include/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/termios.h -------------------------------------------------------------------------------- /StdLib/Include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/time.h -------------------------------------------------------------------------------- /StdLib/Include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/types.h -------------------------------------------------------------------------------- /StdLib/Include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/uio.h -------------------------------------------------------------------------------- /StdLib/Include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/unistd.h -------------------------------------------------------------------------------- /StdLib/Include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sys/wait.h -------------------------------------------------------------------------------- /StdLib/Include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/sysexits.h -------------------------------------------------------------------------------- /StdLib/Include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/time.h -------------------------------------------------------------------------------- /StdLib/Include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/unistd.h -------------------------------------------------------------------------------- /StdLib/Include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/utime.h -------------------------------------------------------------------------------- /StdLib/Include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/wchar.h -------------------------------------------------------------------------------- /StdLib/Include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/wctype.h -------------------------------------------------------------------------------- /StdLib/Include/x86/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/x86/float.h -------------------------------------------------------------------------------- /StdLib/Include/x86/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/x86/ieee.h -------------------------------------------------------------------------------- /StdLib/Include/x86/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/x86/limits.h -------------------------------------------------------------------------------- /StdLib/Include/x86/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/Include/x86/math.h -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Gcc.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/ashrdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/ashrdi3.S -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/lldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/lldiv.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/lldvrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/lldvrm.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/llmul.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/llrem.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/llshl.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llshr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/llshr.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/mulll.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/mulll.S -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/shldi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/shldi3.S -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/udivdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/udivdi3.S -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/ulldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/ulldiv.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/ulldvrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/ulldvrm.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/ullrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/ullrem.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/ullshr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/ullshr.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/umoddi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/CRT/Ia32/umoddi3.S -------------------------------------------------------------------------------- /StdLib/LibC/Containers/ContainerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Containers/ContainerLib.inf -------------------------------------------------------------------------------- /StdLib/LibC/Containers/Queues/Fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Containers/Queues/Fifo.c -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/CClass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Ctype/CClass.c -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/CConv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Ctype/CConv.c -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/Ctype.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Ctype/Ctype.inf -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/iCtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Ctype/iCtype.c -------------------------------------------------------------------------------- /StdLib/LibC/LibC.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/LibC.inf -------------------------------------------------------------------------------- /StdLib/LibC/Locale/Locale.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/Locale.inf -------------------------------------------------------------------------------- /StdLib/LibC/Locale/__mb_cur_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/__mb_cur_max.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/__wctoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/__wctoint.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_def_messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/_def_messages.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_def_monetary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/_def_monetary.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_def_numeric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/_def_numeric.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_def_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/_def_time.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_wcstod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/_wcstod.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_wcstol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/_wcstol.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_wcstoul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/_wcstoul.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/aliasname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/aliasname.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/aliasname_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/aliasname_local.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/ctypeio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/ctypeio.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/ctypeio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/ctypeio.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/iswctype_sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/iswctype_sb.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/localeconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/localeconv.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/multibyte_Utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/multibyte_Utf8.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/multibyte_sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/multibyte_sb.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/nl_langinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/nl_langinfo.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/rune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/rune.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/runetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/runetype.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/setlocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/setlocale.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/setlocale1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/setlocale1.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/setlocale32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/setlocale32.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcscoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcscoll.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcsftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcsftime.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstod.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstof.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstoimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstoimax.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstol.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstold.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstoll.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstoul.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstoull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstoull.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstoumax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcstoumax.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcsxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Locale/wcsxfrm.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/fixunsdfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/fixunsdfsi.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/floatunsidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/floatunsidf.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/flt_rounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/flt_rounds.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/fp_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/fp_lib.h -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/int_endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/int_endianness.h -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/int_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/int_lib.h -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/int_types.h -------------------------------------------------------------------------------- /StdLib/LibC/Main/Arm/int_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Arm/int_util.h -------------------------------------------------------------------------------- /StdLib/LibC/Main/ByteSwap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/ByteSwap.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/HtoNtoH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/HtoNtoH.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Ia32/fpu_rmode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Ia32/fpu_rmode.S -------------------------------------------------------------------------------- /StdLib/LibC/Main/Ia32/fpu_rmode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Ia32/fpu_rmode.asm -------------------------------------------------------------------------------- /StdLib/LibC/Main/Ia32/ftol2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Ia32/ftol2.obj -------------------------------------------------------------------------------- /StdLib/LibC/Main/Ia32/isinfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Ia32/isinfl.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Ia32/isnanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Ia32/isnanl.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/Main.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/X64/fpu_rmode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/X64/fpu_rmode.S -------------------------------------------------------------------------------- /StdLib/LibC/Main/X64/fpu_rmode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/X64/fpu_rmode.asm -------------------------------------------------------------------------------- /StdLib/LibC/Main/X64/isinfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/X64/isinfl.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/X64/isnanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/X64/isnanl.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/assert.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/bswap16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/bswap16.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/bswap32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/bswap32.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/bswap64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/bswap64.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/errno.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/infinityf_ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/infinityf_ieee754.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/isinfd_ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/isinfd_ieee754.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/isinff_ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/isinff_ieee754.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/isnand_ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/isnand_ieee754.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/isnanf_ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/isnanf_ieee754.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/longjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/longjmp.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/nanf_ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/nanf_ieee754.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/x86flt_rounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Main/x86flt_rounds.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/Math.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/Math.inf -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_acos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_asin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_atan2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_cosh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_exp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_fmod.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_log.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_log10.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_log2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_pow.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_rem_pio2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_sinh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/e_sqrt.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/k_cos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/k_rem_pio2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/k_sin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/k_tan.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/math_private.h -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_atan.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_ceil.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_copysign.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_cos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_expm1.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_fabs.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_finite.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_floor.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_frexp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_infinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_infinity.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_ldexp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_modf.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_scalbn.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_sin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_tan.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/s_tanh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_acos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_asin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_atan2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_cosh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_exp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_fmod.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_log.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_log10.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_log2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_pow.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_sinh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Math/w_sqrt.c -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/NetUtil.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/NetUtil.inf -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/inet_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/inet_addr.c -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/inet_lnaof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/inet_lnaof.c -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/inet_makeaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/inet_makeaddr.c -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/inet_netof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/inet_netof.c -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/inet_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/inet_network.c -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/inet_ntoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/inet_ntoa.c -------------------------------------------------------------------------------- /StdLib/LibC/NetUtil/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/NetUtil/inet_ntop.c -------------------------------------------------------------------------------- /StdLib/LibC/Signal/Signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Signal/Signal.c -------------------------------------------------------------------------------- /StdLib/LibC/Signal/Signal.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Signal/Signal.inf -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/Makefile.inc -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/README.NetBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/README.NetBSD -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/README.txt -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/Softfloat.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/Softfloat.inf -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/bits32/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/bits32/softfloat.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/bits64/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/bits64/softfloat.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/eqdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/eqdf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/eqsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/eqsf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/eqtf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/eqtf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/fpgetmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/fpgetmask.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/fpgetround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/fpgetround.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/fpgetsticky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/fpgetsticky.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/fpsetmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/fpsetmask.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/fpsetround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/fpsetround.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/fpsetsticky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/fpsetsticky.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/gedf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/gedf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/gesf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/gesf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/getf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/getf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/gexf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/gexf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/gtdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/gtdf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/gtsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/gtsf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/gttf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/gttf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/gtxf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/gtxf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/ledf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/ledf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/lesf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/lesf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/letf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/letf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/ltdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/ltdf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/ltsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/ltsf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/lttf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/lttf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/nedf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/nedf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/negdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/negdf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/negsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/negsf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/negtf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/negtf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/negxf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/negxf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/nesf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/nesf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/netf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/netf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/nexf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/nexf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/softfloat-for-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/softfloat-for-gcc.h -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/softfloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/softfloat.txt -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/templates/milieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/templates/milieu.h -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/timesoftfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/timesoftfloat.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/timesoftfloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/timesoftfloat.txt -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/unorddf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/unorddf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/unordsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/unordsf2.c -------------------------------------------------------------------------------- /StdLib/LibC/Softfloat/unordtf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Softfloat/unordtf2.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/Bsearch.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Environs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/Environs.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/Malloc.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/NumericInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/NumericInt.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/Qsort.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/Rand.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/StdLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/StdLib.inf -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Xabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/Xabs.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Xdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/Xdiv.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/realpath.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/setprogname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/setprogname.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/strtoimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/strtoimax.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/strtoumax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/StdLib/strtoumax.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/Stdio.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/Stdio.inf -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/clrerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/clrerr.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fclose.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fdopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/feof.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/ferror.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fflush.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fgetc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fgetln.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fgetpos.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fgets.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fgetstr.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fgetwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fgetws.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fileext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fileext.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fileno.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/findfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/findfp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/flags.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/floatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/floatio.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/flockfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/flockfile.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fparseln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fparseln.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fpurge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fpurge.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fputc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fputs.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fputwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fputws.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fread.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/freopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/freopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fseek.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fseeko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fseeko.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fsetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fsetpos.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/ftell.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ftello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/ftello.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/funopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/funopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fvwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fvwrite.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fvwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fvwrite.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fwalk.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fwide.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fwprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fwrite.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/fwscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/getc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/getchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/gets.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/gettemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/gettemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/getwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/getwchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/glue.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/local.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/makebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/makebuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/mkdtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/mkdtemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/mkstemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/mkstemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/mktemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/perror.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/printf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/putc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/putchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/puts.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/putwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/putwchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/refill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/refill.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/remove.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/rewind.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/rget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/rget.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/scanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/setbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/setbuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/setbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/setbuffer.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/setvbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/setvbuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/snprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/snprintf_ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/snprintf_ss.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/sprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/sscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/stdio.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/swprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/swprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/swscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/swscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/tempnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/tempnam.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/tmpfile.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/tmpnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/tmpnam.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/ungetc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ungetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/ungetwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vasprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vasprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vfprintf.c: -------------------------------------------------------------------------------- 1 | #define NARROW 2 | #include "vfwprintf.c" 3 | -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vfscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vfwprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vfwprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vfwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vfwscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vsnprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vsnprintf_ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vsnprintf_ss.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vsprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vsscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vsscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vswprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vswprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vswscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vswscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vwprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vwprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/vwscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/wbuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/wcio.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/wprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/wscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wsetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Stdio/wsetup.c -------------------------------------------------------------------------------- /StdLib/LibC/String/Comparison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/Comparison.c -------------------------------------------------------------------------------- /StdLib/LibC/String/Concatenation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/Concatenation.c -------------------------------------------------------------------------------- /StdLib/LibC/String/Copying.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/Copying.c -------------------------------------------------------------------------------- /StdLib/LibC/String/ErrorList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/ErrorList.c -------------------------------------------------------------------------------- /StdLib/LibC/String/Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/Misc.c -------------------------------------------------------------------------------- /StdLib/LibC/String/Searching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/Searching.c -------------------------------------------------------------------------------- /StdLib/LibC/String/String.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/String.inf -------------------------------------------------------------------------------- /StdLib/LibC/String/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/strlcat.c -------------------------------------------------------------------------------- /StdLib/LibC/String/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/strlcpy.c -------------------------------------------------------------------------------- /StdLib/LibC/String/strncasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/strncasecmp.c -------------------------------------------------------------------------------- /StdLib/LibC/String/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/String/strsep.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/Theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/Theory.txt -------------------------------------------------------------------------------- /StdLib/LibC/Time/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/Time.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/Time.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/Time.inf -------------------------------------------------------------------------------- /StdLib/LibC/Time/TimeEfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/TimeEfi.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/TimeVals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/TimeVals.h -------------------------------------------------------------------------------- /StdLib/LibC/Time/ZoneProc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/ZoneProc.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/gettimeofday.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/itimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/itimer.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/strftime.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/strptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/strptime.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/timegm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/timegm.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Time/tzfile.h -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Devices/Utility/Path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/Devices/Utility/Path.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Devices/daConsole.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/Devices/daConsole.inf -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Devices/daShell.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/Devices/daShell.inf -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Devices/daUtility.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/Devices/daUtility.inf -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/InteractiveIO/IIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/InteractiveIO/IIO.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/InteractiveIO/IIO.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/InteractiveIO/IIO.inf -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/InteractiveIO/IIOecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/InteractiveIO/IIOecho.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/InteractiveIO/IIOwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/InteractiveIO/IIOwrite.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/StubFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/StubFunctions.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/SysCalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/SysCalls.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Uefi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/Uefi.inf -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Xform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/Xform.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/compat.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/select.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/writev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Uefi/writev.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/Comparison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Wchar/Comparison.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/Concatenation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Wchar/Concatenation.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/ConsDecons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Wchar/ConsDecons.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/Copying.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Wchar/Copying.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/Searching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Wchar/Searching.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Wchar/String.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/Wchar.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/Wchar/Wchar.inf -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/Ipf/strtold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/Ipf/strtold.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/_strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/_strtof.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/_strtold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/_strtold.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/atof.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/dmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/dmisc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/dtoa.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/gdtoa.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/gdtoa.h -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoa.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/gdtoa.inf -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoaimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/gdtoaimp.h -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gethex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/gethex.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/gmisc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/hd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/hd_init.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/hexnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/hexnan.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/ldtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/ldtoa.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/misc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/smisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/smisc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/strtod.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtodg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/strtodg.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/strtof.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtold_px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/strtold_px.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtold_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/strtold_subr.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtopx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/strtopx.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/sum.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/ulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/LibC/gdtoa/ulp.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Err/LibErr.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Err/LibErr.inf -------------------------------------------------------------------------------- /StdLib/PosixLib/Err/warn_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Err/warn_err.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/LibGen.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Gen/LibGen.inf -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Gen/access.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/closedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Gen/closedir.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Gen/dirname.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Gen/opendir.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Gen/readdir.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Gen/utime.c -------------------------------------------------------------------------------- /StdLib/PosixLib/GetPass/GetPass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/GetPass/GetPass.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Glob/LibGlob.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Glob/LibGlob.inf -------------------------------------------------------------------------------- /StdLib/PosixLib/Glob/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Glob/glob.c -------------------------------------------------------------------------------- /StdLib/PosixLib/PosixLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/PosixLib.inf -------------------------------------------------------------------------------- /StdLib/PosixLib/Stringlist/stringlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/PosixLib/Stringlist/stringlist.c -------------------------------------------------------------------------------- /StdLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/ReadMe.txt -------------------------------------------------------------------------------- /StdLib/SocketDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/SocketDxe/ComponentName.c -------------------------------------------------------------------------------- /StdLib/SocketDxe/DriverBinding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/SocketDxe/DriverBinding.c -------------------------------------------------------------------------------- /StdLib/SocketDxe/EntryUnload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/SocketDxe/EntryUnload.c -------------------------------------------------------------------------------- /StdLib/SocketDxe/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/SocketDxe/Socket.h -------------------------------------------------------------------------------- /StdLib/SocketDxe/SocketDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/SocketDxe/SocketDxe.inf -------------------------------------------------------------------------------- /StdLib/StdLib.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/StdLib.dec -------------------------------------------------------------------------------- /StdLib/StdLib.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/StdLib.dsc -------------------------------------------------------------------------------- /StdLib/StdLib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/StdLib.inc -------------------------------------------------------------------------------- /StdLib/UseSocketDxe/UseSocketDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/UseSocketDxe/UseSocketDxe.c -------------------------------------------------------------------------------- /StdLib/UseSocketDxe/UseSocketDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLib/UseSocketDxe/UseSocketDxe.inf -------------------------------------------------------------------------------- /StdLibPrivateInternalFiles/DoNotUse.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLibPrivateInternalFiles/DoNotUse.dec -------------------------------------------------------------------------------- /StdLibPrivateInternalFiles/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk2-libc/HEAD/StdLibPrivateInternalFiles/ReadMe.txt --------------------------------------------------------------------------------