| /xsrc/external/mit/xedit/dist/lisp/ |
| H A D | compile.c | 46 ComVariableSetFlag(com, atom, VARIABLE_USED) 48 ComVariableSetFlag(com, atom, VARIABLE_ARGUMENT) 75 Com_And(LispCom *com, LispBuiltin *builtin) argument 86 ComEval(com, CAR(args)); 97 ComEval(com, CAR(args)); 112 com_Bytecode(com, XBC_T); 116 Com_Block(LispCom *com, LispBuiltin *builtin) argument 131 CompileIniBlock(com, LispBlockTag, name); 132 ComProgn(com, body); 133 CompileFiniBlock(com); 141 Com_C_r(LispCom * com,LispBuiltin * builtin) argument 168 Com_Cond(LispCom * com,LispBuiltin * builtin) argument 210 Com_Cons(LispCom * com,LispBuiltin * builtin) argument 235 Com_Consp(LispCom * com,LispBuiltin * builtin) argument 244 Com_Dolist(LispCom * com,LispBuiltin * builtin) argument 387 Com_Eq(LispCom * com,LispBuiltin * builtin) argument 428 Com_Go(LispCom * com,LispBuiltin * builtin) argument 461 Com_If(LispCom * com,LispBuiltin * builtin) argument 500 Com_Last(LispCom * com,LispBuiltin * builtin) argument 521 Com_Length(LispCom * com,LispBuiltin * builtin) argument 535 Com_Let(LispCom * com,LispBuiltin * builtin) argument 601 Com_Letx(LispCom * com,LispBuiltin * builtin) argument 665 Com_Listp(LispCom * com,LispBuiltin * builtin) argument 674 Com_Loop(LispCom * com,LispBuiltin * builtin) argument 708 Com_Nthcdr(LispCom * com,LispBuiltin * builtin) argument 727 Com_Null(LispCom * com,LispBuiltin * builtin) argument 747 Com_Numberp(LispCom * com,LispBuiltin * builtin) argument 756 Com_Or(LispCom * com,LispBuiltin * builtin) argument 796 Com_Progn(LispCom * com,LispBuiltin * builtin) argument 809 Com_Return(LispCom * com,LispBuiltin * builtin) argument 818 Com_ReturnFrom(LispCom * com,LispBuiltin * builtin) argument 827 Com_Rplac_(LispCom * com,LispBuiltin * builtin) argument 846 Com_Setq(LispCom * com,LispBuiltin * builtin) argument 875 Com_Tagbody(LispCom * com,LispBuiltin * builtin) argument 897 Com_Unless(LispCom * com,LispBuiltin * builtin) argument 922 Com_Until(LispCom * com,LispBuiltin * builtin) argument 957 Com_When(LispCom * com,LispBuiltin * builtin) argument 982 Com_While(LispCom * com,LispBuiltin * builtin) argument 1021 ComPredicate(LispCom * com,LispBuiltin * builtin,LispBytePredicate predicate) argument 1052 ComReturnFrom(LispCom * com,LispBuiltin * builtin,int from) argument 1099 ComConstantp(LispCom * com,LispObj * object) argument 1174 ComAddVariable(LispCom * com,LispObj * symbol,LispObj * value) argument 1203 ComGetVariable(LispCom * com,LispObj * symbol) argument 1249 ComVariableSetFlag(LispCom * com,LispAtom * atom,int flag) argument 1274 ComLabel(LispCom * com,LispObj * label) argument 1302 ComPush(LispCom * com,LispObj * symbol,LispObj * value,int eval,int builtin,int compile) argument 1393 ComCall(LispCom * com,LispArgList * alist,LispObj * name,LispObj * values,int eval,int builtin,int compile) argument 1760 ComFuncall(LispCom * com,LispObj * function,LispObj * arguments,int eval) argument 1911 ComProgn(LispCom * com,LispObj * code) argument 1924 ComEval(LispCom * com,LispObj * object) argument 2004 ComRecursiveCall(LispCom * com,LispArgList * alist,LispObj * name,LispObj * arguments) argument 2044 ComInlineCall(LispCom * com,LispArgList * alist,LispObj * name,LispObj * arguments,LispObj * lambda) argument 2089 ComMacroExpandBackquote(LispCom * com,LispObj * object) argument 2095 ComMacroExpandFuncall(LispCom * com,LispObj * function,LispObj * arguments) argument 2101 ComMacroExpandEval(LispCom * com,LispObj * object) argument 2143 ComMacroExpand(LispCom * com,LispObj * lambda) argument 2193 ComMacroCall(LispCom * com,LispArgList * alist,LispObj * name,LispObj * lambda,LispObj * arguments) argument 2212 ComMacroBackquote(LispCom * com,LispObj * lambda) argument [all...] |
| H A D | bytecode.c | 103 #define NEW_TREE(type) CompileNewTree(com, type) 106 #define IN_TAGBODY() (com->block->type == LispBlockBody && \ 107 com->level == com->tagbody) 108 #define FORM_ENTER() ++com->level 109 #define FORM_LEAVE() --com->level 113 longjmp(com->jmp, 1) 397 LispCom com; local in function:Lisp_Compile 409 memset(&com, 0, sizeof(LispCom)); 410 com 1196 LispCom com; local in function:LispCompileForm 1234 MakeBytecodeObject(LispCom * com,LispObj * name,LispObj * plist) argument 1353 CompileFreeState(LispCom * com) argument 1365 CompileNewTree(LispCom * com,CodeTreeType type) argument 1382 CompileIniBlock(LispCom * com,LispBlockType type,LispObj * tag) argument 1401 CompileFiniBlock(LispCom * com) argument 1409 com_BytecodeChar(LispCom * com,LispByteOpcode code,char value) argument 1418 com_BytecodeShort(LispCom * com,LispByteOpcode code,short value) argument 1427 com_BytecodeAtom(LispCom * com,LispByteOpcode code,LispAtom * atom) argument 1436 com_BytecodeObject(LispCom * com,LispByteOpcode code,LispObj * object) argument 1445 com_BytecodeCons(LispCom * com,LispByteOpcode code,LispObj * car,LispObj * cdr) argument 1455 com_Bytecode(LispCom * com,LispByteOpcode code) argument 1463 com_Load(LispCom * com,short offset) argument 1469 com_LoadLet(LispCom * com,short offset,LispAtom * name) argument 1479 com_LoadPush(LispCom * com,short offset) argument 1485 com_Let(LispCom * com,LispAtom * name) argument 1491 com_Bind(LispCom * com,short count) argument 1498 com_Unbind(LispCom * com,short count) argument 1505 com_LoadSym(LispCom * com,LispAtom * atom) argument 1511 com_LoadSymLet(LispCom * com,LispAtom * symbol,LispAtom * name) argument 1521 com_LoadSymPush(LispCom * com,LispAtom * name) argument 1527 com_LoadCon(LispCom * com,LispObj * constant) argument 1541 com_LoadConLet(LispCom * com,LispObj * constant,LispAtom * name) argument 1555 com_LoadConPush(LispCom * com,LispObj * constant) argument 1568 com_Set(LispCom * com,short offset) argument 1574 com_SetSym(LispCom * com,LispAtom * symbol) argument 1580 com_Struct(LispCom * com,short offset,LispObj * definition) argument 1590 com_Structp(LispCom * com,LispObj * definition) argument 1596 com_Call(LispCom * com,unsigned char num_arguments,LispBuiltin * builtin) argument 1606 com_Bytecall(LispCom * com,unsigned char num_arguments,LispObj * code) argument 1616 com_Funcall(LispCom * com,LispObj * function,LispObj * arguments) argument 1622 CompileStackEnter(LispCom * com,int count,int builtin) argument 1639 CompileStackLeave(LispCom * com,int count,int builtin) argument 1650 LinkWarnUnused(LispCom * com,CodeBlock * block) argument 1671 LinkBuildOffsets(LispCom * com,CodeTree * tree,long offset) argument 1810 LinkDoOptimize_0(LispCom * com,CodeBlock * block) argument 2109 LinkOptimize_0(LispCom * com) argument 2116 LinkResolveLabels(LispCom * com,CodeBlock * block) argument 2135 LinkResolveJumps(LispCom * com,CodeBlock * block) argument 2234 LinkFixupOffsets(LispCom * com,CodeTree * tree,long adjust) argument 2279 LinkSkipPadding(LispCom * com,CodeTree * tree) argument 2338 LinkCalculateJump(LispCom * com,CodeTree * tree,LispByteOpcode code) argument 2356 LinkFixupJumps(LispCom * com,CodeTree * tree) argument 2396 LinkBuildTableSymbol(LispCom * com,LispAtom * symbol) argument 2405 LinkBuildTableConstant(LispCom * com,LispObj * constant) argument 2414 LinkBuildTableBuiltin(LispCom * com,LispBuiltin * builtin) argument 2423 LinkBuildTableBytecode(LispCom * com,LispObj * bytecode) argument 2432 LinkBuildTables(LispCom * com,CodeBlock * block) argument 2500 LinkEmmitBytecode(LispCom * com,CodeTree * tree,unsigned char * bytecode,long offset) argument 2743 LinkBytecode(LispCom * com) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/docs/drivers/ |
| H A D | freedreno.rst | 11 See the `Freedreno Wiki <https://github.com/freedreno/freedreno/wiki>`__
|
| H A D | llvmpipe.rst | 129 ; https://technet.microsoft.com/en-us/library/cc749368.aspx 160 `Gprof2Dot <https://github.com/jrfonseca/gprof2dot#linux-perf>`__. 192 example <https://npcontemplation.blogspot.com/2008/06/secret-of-llvm-c-bindings.html>`__. 205 Larrabee <http://www.drdobbs.com/parallel/rasterization-on-larrabee/217200602>`__ 213 Culling <https://fgiesen.wordpress.com/2013/02/17/optimizing-sw-occlusion-culling-index/>`__ 218 Mapping <http://chrishecker.com/Miscellaneous_Technical_Articles#Perspective_Texture_Mapping>`__ 220 Unreal <https://www.flipcode.com/archives/Texturing_As_In_Unreal.shtml>`__ 222 Filtering <http://www.gamasutra.com/view/feature/3301/runtime_mipmap_filtering.php>`__ 226 filtering <http://ixbtlabs.com/articles2/gffx/nv40-rx800-3.html>`__ 238 Processors <http://www.drdobbs.com/optimizin [all...] |
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/ |
| H A D | MESA_release_buffers.spec | 11 Brian Paul (brian.paul 'at' tungstengraphics.com)
|
| H A D | MESA_pack_invert.spec | 11 Brian Paul, Tungsten Graphics, Inc. (brian.paul 'at' tungstengraphics.com) 12 Keith Whitwell, Tungsten Graphics, Inc. (keith 'at' tungstengraphics.com)
|
| /xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/ |
| H A D | build-fossilize.sh | 5 git clone https://github.com/ValveSoftware/Fossilize.git
|
| H A D | build-crosvm.sh | 14 git clone --single-branch --no-checkout https://chromium.googlesource.com/chromiumos/platform2 $PLATFORM2_ROOT 21 git clone --single-branch --no-checkout https://android.googlesource.com/platform/external/minijail $AOSP_EXTERNAL_ROOT/minijail 30 git clone --single-branch --no-checkout https://chromium.googlesource.com/chromiumos/third_party/adhd $THIRD_PARTY_ROOT/adhd 37 git clone --single-branch --no-checkout https://chromium.googlesource.com/chromiumos/third_party/rust-vmm/vhost $THIRD_PARTY_ROOT/rust-vmm/vhost 43 git clone --single-branch --no-checkout https://chromium.googlesource.com/chromiumos/platform/crosvm /platform/crosvm
|
| H A D | build-apitrace.sh | 7 git clone https://github.com/apitrace/apitrace.git --single-branch --no-checkout /apitrace
|
| H A D | build-va-tools.sh | 5 git config --global user.email "mesa@example.com" 8 https://github.com/intel/libva-utils.git \
|
| H A D | build-virglrenderer.sh | 7 wget -qO- https://github.com/anholt/libepoxy/releases/download/1.5.8/libepoxy-1.5.8.tar.xz | tar -xJ --strip-components=1
|
| H A D | build-gfxreconstruct.sh | 7 git clone https://github.com/LunarG/gfxreconstruct.git --single-branch -b master --no-checkout /gfxreconstruct
|
| H A D | build-libclc.sh | 9 git config --global user.email "mesa@example.com" 12 https://github.com/llvm/llvm-project \
|
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/ |
| H A D | MESA_release_buffers.spec | 11 Brian Paul (brian.paul 'at' tungstengraphics.com)
|
| H A D | MESA_pack_invert.spec | 11 Brian Paul, Tungsten Graphics, Inc. (brian.paul 'at' tungstengraphics.com) 12 Keith Whitwell, Tungsten Graphics, Inc. (keith 'at' tungstengraphics.com)
|
| /xsrc/external/mit/brotli/dist/ |
| H A D | README.md | 22 https://groups.google.com/forum/#!forum/brotli 25 [](https://ci.appveyor.com/project/szabadka/brotli) 26 [](https://oss-fuzz-build-logs.storage.googleapis.com/index.html#brotli) 32 You can download and install brotli using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager: 34 git clone https://github.com/Microsoft/vcpkg.git 40 The brotli port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository. 44 [configure-cmake](https://github.com/nemequ/configure-cmake) is an 83 $ pip install --upgrade git+https://github.com/googl [all...] |
| H A D | configure.ac | 4 AC_INIT([brotli], [0.0.0], [https://groups.google.com/forum/#!forum/brotli])
|
| /xsrc/external/mit/MesaLib/dist/bin/ |
| H A D | update-android-headers.sh | 11 git clone --depth 1 https://android.googlesource.com/platform/frameworks/native platform-frameworks-native 12 git clone --depth 1 https://android.googlesource.com/platform/hardware/libhardware platform-hardware-libhardware 13 git clone --depth 1 https://android.googlesource.com/platform/system/core platform-system-core 14 git clone --depth 1 https://android.googlesource.com/platform/system/logging platform-system-logging 15 git clone --depth 1 https://android.googlesource.com/platform/system/unwinding platform-system-unwinding
|
| /xsrc/external/mit/MesaLib/dist/docs/ |
| H A D | utilities.rst | 8 `ApiTrace <https://github.com/apitrace/apitrace>`__ 13 `Coverity <https://scan.coverity.com/projects/mesa>`__
|
| H A D | developers.rst | 6 `VMware <https://www.vmware.com/>`__ employs several of the main Mesa 21 `LunarG <https://www.lunarg.com/>`__ can be contacted for custom Mesa /
|
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/OLD/ |
| H A D | MESA_agp_offset.spec | 11 Brian Paul, Tungsten Graphics, Inc. (brian.paul 'at' tungstengraphics.com) 12 Keith Whitwell, Tungsten Graphics, Inc. (keith 'at' tungstengraphics.com)
|
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/OLD/ |
| H A D | MESA_agp_offset.spec | 11 Brian Paul, Tungsten Graphics, Inc. (brian.paul 'at' tungstengraphics.com) 12 Keith Whitwell, Tungsten Graphics, Inc. (keith 'at' tungstengraphics.com)
|
| /xsrc/external/mit/libXdamage/dist/ |
| H A D | README.md | 7 keithp@keithp.com
|
| /xsrc/external/mit/xf86-input-elographics/dist/ |
| H A D | missing | 105 flex_URL=https://github.com/westes/flex
|
| /xsrc/external/mit/MesaLib/dist/.gitlab/issue_templates/ |
| H A D | Bug Report - AMD Radeon Vulkan.md | 5 - For any logs, backtraces, etc - use [code blocks](https://docs.gitlab.com/ee/user/markdown.html#code-spans-and-blocks) 43 Please post `inxi -GSC -xx` output ([fenced with triple backticks](https://docs.gitlab.com/ee/user/markdown.html#code-spans-and-blocks)) OR fill information below manually 65 Consider recording a [GFXReconstruct](https://github.com/LunarG/gfxreconstruct/blob/dev/USAGE_desktop.md) (preferred), [RenderDoc](https://renderdoc.org/), or [apitrace](https://github.com/apitrace/apitrace/blob/master/docs/USAGE.markdown) capture of the issue with the RADV driver active. This can tremendously help when debugging issues, but you're still encouraged to report issues if you can't provide a capture file.
|