├── .gitignore ├── Beef.sln ├── BeefBoot ├── BeefBoot.cpp ├── BeefBoot.h ├── BeefBoot.vcxproj ├── BeefBoot.vcxproj.filters ├── BootApp.cpp ├── BootApp.h └── CMakeLists.txt ├── BeefBuild ├── BeefProj.toml ├── BeefSpace.toml └── src │ ├── BuildApp.bf │ └── Program.bf ├── BeefFuzz ├── BeefFuzz.cpp ├── BeefFuzz.h ├── BeefFuzz.vcxproj ├── BeefFuzz.vcxproj.filters ├── CMakeLists.txt ├── FuzzApp.cpp └── FuzzApp.h ├── BeefLibs ├── Beefy2D │ ├── BeefProj.toml │ ├── dist │ │ └── holder.txt │ └── src │ │ ├── BFApp.bf │ │ ├── BFWindow.bf │ │ ├── Rand.bf │ │ ├── Utils.bf │ │ ├── events │ │ ├── DialogEvent.bf │ │ ├── DragEvent.bf │ │ ├── EditEvent.bf │ │ ├── Event.bf │ │ ├── KeyboardEvent.bf │ │ ├── MouseEvent.bf │ │ ├── ScrollEvent.bf │ │ └── WidgetParentEvent.bf │ │ ├── geom │ │ ├── BoundingBox.bf │ │ ├── Matrix4.bf │ │ ├── Oval.bf │ │ ├── Plane.bf │ │ ├── Point.bf │ │ ├── Quaternion.bf │ │ ├── Rect.bf │ │ ├── Vector2.bf │ │ ├── Vector3.bf │ │ ├── Vector4.bf │ │ └── Viewport.bf │ │ ├── gfx │ │ ├── Color.bf │ │ ├── ConstantDataDefinition.bf │ │ ├── ConstantDataMemberAttribute.bf │ │ ├── DefaultVertex.bf │ │ ├── DrawLayer.bf │ │ ├── Font.bf │ │ ├── Graphics.bf │ │ ├── IDrawable.bf │ │ ├── Image.bf │ │ ├── ImageAtlas.bf │ │ ├── Matrix.bf │ │ ├── Model.bf │ │ ├── PixelSnapping.bf │ │ ├── RenderCmd.bf │ │ ├── RenderState.bf │ │ ├── Shader.bf │ │ ├── TexCoords.bf │ │ ├── Vertex3D.bf │ │ ├── VertexDefinition.bf │ │ ├── VertexElementUsage.bf │ │ ├── VertexLayout.bf │ │ └── VertexMemberAttribute.bf │ │ ├── input │ │ └── InputManager.bf │ │ ├── res │ │ ├── FilePack.bf │ │ ├── PEFile.bf │ │ ├── PSDReader.bf │ │ ├── ResourceManager.bf │ │ ├── SoundBank.bf │ │ ├── SoundEvent.bf │ │ ├── SoundGameObject.bf │ │ └── SoundParameter.bf │ │ ├── sound │ │ ├── SoundInstance.bf │ │ └── SoundManager.bf │ │ ├── sys │ │ ├── SysBitmap.bf │ │ └── SysMenu.bf │ │ ├── theme │ │ ├── ThemeFactory.bf │ │ └── dark │ │ │ ├── DarkButton.bf │ │ │ ├── DarkCheckBox.bf │ │ │ ├── DarkComboBox.bf │ │ │ ├── DarkDialog.bf │ │ │ ├── DarkDockingFrame.bf │ │ │ ├── DarkEditWidget.bf │ │ │ ├── DarkIconButton.bf │ │ │ ├── DarkInfiniteScrollbar.bf │ │ │ ├── DarkListView.bf │ │ │ ├── DarkMenu.bf │ │ │ ├── DarkScrollbar.bf │ │ │ ├── DarkSmartEdit.bf │ │ │ ├── DarkTabbedView.bf │ │ │ ├── DarkTheme.bf │ │ │ ├── DarkTooltip.bf │ │ │ └── DarkVirtualListViewItem.bf │ │ ├── utils │ │ ├── BeefPerf.bf │ │ ├── Compression.bf │ │ ├── DisposeProxy.bf │ │ ├── HTTP.bf │ │ ├── ISerializable.bf │ │ ├── IdSpan.bf │ │ ├── ManualBreak.bf │ │ ├── PerfTimer.bf │ │ ├── SmoothValue.bf │ │ ├── StableIndexedList.bf │ │ ├── StructuredData.bf │ │ ├── TextSearcher.bf │ │ └── UndoManager.bf │ │ └── widgets │ │ ├── ButtonWidget.bf │ │ ├── Checkbox.bf │ │ ├── ComboBox.bf │ │ ├── Composition.bf │ │ ├── DesignEditableAttribute.bf │ │ ├── Dialog.bf │ │ ├── DockedWidget.bf │ │ ├── DockingFrame.bf │ │ ├── DragHelper.bf │ │ ├── EditWidget.bf │ │ ├── IMenu.bf │ │ ├── ImageWidget.bf │ │ ├── InfiniteScrollbar.bf │ │ ├── Insets.bf │ │ ├── KeyCode.bf │ │ ├── LabelWidget.bf │ │ ├── ListView.bf │ │ ├── Menu.bf │ │ ├── ScrollableWidget.bf │ │ ├── Scrollbar.bf │ │ ├── TabbedView.bf │ │ ├── Widget.bf │ │ └── WidgetWindow.bf ├── FMOD │ ├── BeefProj.toml │ └── src │ │ ├── FMod.bf │ │ ├── FMod_DSP.bf │ │ └── FMod_Errors.bf ├── MiniZ │ ├── BeefProj.toml │ └── src │ │ └── Zip.bf ├── SDL2 │ ├── BeefProj.toml │ ├── dist │ │ ├── LICENSE.FLAC.txt │ │ ├── LICENSE.freetype.txt │ │ ├── LICENSE.harfbuzz.txt │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.modplug.txt │ │ ├── LICENSE.mpg123.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.opus.txt │ │ ├── LICENSE.opusfile.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.txt │ │ ├── README.txt │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2_image.dll │ │ ├── SDL2_image.lib │ │ ├── SDL2_mixer.dll │ │ ├── SDL2_mixer.lib │ │ ├── SDL2_ttf.dll │ │ ├── SDL2_ttf.lib │ │ ├── libFLAC-8.dll │ │ ├── libfreetype-6.dll │ │ ├── libjpeg-9.dll │ │ ├── libmodplug-1.dll │ │ ├── libmpg123-0.dll │ │ ├── libogg-0.dll │ │ ├── libopus-0.dll │ │ ├── libopusfile-0.dll │ │ ├── libpng16-16.dll │ │ ├── libtiff-5.dll │ │ ├── libvorbis-0.dll │ │ ├── libvorbisfile-3.dll │ │ ├── libwebp-7.dll │ │ └── zlib1.dll │ ├── include │ │ └── SDL2 │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_emscripten.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_ngage.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wingdk.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_xbox.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ └── src │ │ ├── BitmapFont.bf │ │ ├── SDL2.bf │ │ ├── SDL2_image.bf │ │ ├── SDL2_mixer.bf │ │ ├── SDL2_ttf.bf │ │ └── SDLApp.bf ├── corlib │ ├── BeefProj.toml │ ├── BeefSpace.toml │ ├── cpp │ │ └── sys.cpp │ ├── main.bf │ └── src │ │ ├── Allocator.bf │ │ ├── Array.bf │ │ ├── AsyncCallback.bf │ │ ├── Attribute.bf │ │ ├── BitConverter.bf │ │ ├── Bitfield.bf │ │ ├── Boolean.bf │ │ ├── BumpAllocator.bf │ │ ├── Char16.bf │ │ ├── Char32.bf │ │ ├── Char8.bf │ │ ├── Collections │ │ ├── BinaryHeap.bf │ │ ├── CompactList.bf │ │ ├── Dictionary.bf │ │ ├── HashSet.bf │ │ ├── ICollection.bf │ │ ├── IEnumerator.bf │ │ ├── IEqualityComparer.bf │ │ ├── LinkedList.bf │ │ ├── List.bf │ │ ├── Queue.bf │ │ ├── Sorter.bf │ │ └── SplitList.bf │ │ ├── Compiler.bf │ │ ├── Console.bf │ │ ├── ConsoleColor.bf │ │ ├── DateTime.bf │ │ ├── DateTimeKind.bf │ │ ├── DateTimeOffset.bf │ │ ├── DayOfWeek.bf │ │ ├── Delegate.bf │ │ ├── Diagnostics │ │ ├── AsyncStreamReader.bf │ │ ├── Check.bf │ │ ├── Contracts │ │ │ ├── Contracts.bf │ │ │ └── ContractsBcl.bf │ │ ├── DataReceivedEventArgs.bf │ │ ├── Debug.bf │ │ ├── FileVersionInfo.bf │ │ ├── Process.bf │ │ ├── ProcessManager.bf │ │ ├── ProcessPriorityClass.bf │ │ ├── ProcessStartInfo.bf │ │ ├── ProcessWindowStyle.bf │ │ ├── Profiler.bf │ │ ├── SpawnedProcess.bf │ │ └── Stopwatch.bf │ │ ├── Double.bf │ │ ├── Enum.bf │ │ ├── Environment.bf │ │ ├── Event.bf │ │ ├── EventArgs.bf │ │ ├── EventHandler.bf │ │ ├── FFI │ │ └── Function.bf │ │ ├── Float.bf │ │ ├── GC.bf │ │ ├── Globalization │ │ ├── Calendar.bf │ │ ├── CalendarAlgorithmType.bf │ │ ├── CalendarData.bf │ │ ├── CalendarWeekRule.bf │ │ ├── CultureData.bf │ │ ├── CultureInfo.bf │ │ ├── DateTimeFormat.bf │ │ ├── DateTimeFormatInfo.bf │ │ ├── DateTimeFormatInfoScanner.bf │ │ ├── DateTimeStyles.bf │ │ ├── DaylightTime.bf │ │ ├── GregorianCalendar.bf │ │ ├── NumberFormatInfo.bf │ │ ├── NumberStyles.bf │ │ └── TimeSpanFormat.bf │ │ ├── Guid.bf │ │ ├── HashCode.bf │ │ ├── IAsyncResult.bf │ │ ├── IComparable.bf │ │ ├── IEquatable.bf │ │ ├── IFormatProvider.bf │ │ ├── IFormattable.bf │ │ ├── IHashable.bf │ │ ├── IMinMaxValue.bf │ │ ├── IO │ │ ├── BufferedStream.bf │ │ ├── Directory.bf │ │ ├── DynMemStream.bf │ │ ├── File.bf │ │ ├── FileAccess.bf │ │ ├── FileAttributes.bf │ │ ├── FileDialog.bf │ │ ├── FileMode.bf │ │ ├── FileOptions.bf │ │ ├── FileShare.bf │ │ ├── FileStream.bf │ │ ├── FileSystemWatcher.bf │ │ ├── FolderBrowserDialog.bf │ │ ├── MemoryStream.bf │ │ ├── NotifyFilters.bf │ │ ├── NullStream.bf │ │ ├── OpenFileDialog.bf │ │ ├── Path.bf │ │ ├── Pipe.bf │ │ ├── SaveFileDialog.bf │ │ ├── SearchOption.bf │ │ ├── SecurityAttributes.bf │ │ ├── Shell.bf │ │ ├── Stream.bf │ │ ├── StreamReader.bf │ │ ├── StreamWriter.bf │ │ ├── StringStream.bf │ │ ├── Substream.bf │ │ └── WatcherChangeTypes.bf │ │ ├── IParseable.bf │ │ ├── IPrintable.bf │ │ ├── IRefCounted.bf │ │ ├── Int.bf │ │ ├── Int16.bf │ │ ├── Int32.bf │ │ ├── Int64.bf │ │ ├── Int8.bf │ │ ├── Internal.bf │ │ ├── Interop.bf │ │ ├── Lazy.bf │ │ ├── Linux.bf │ │ ├── LittleEndian.bf │ │ ├── Math.bf │ │ ├── MethodReference.bf │ │ ├── MidpointRounding.bf │ │ ├── Native.bf │ │ ├── Net │ │ └── Socket.bf │ │ ├── Nullable.bf │ │ ├── NumberFormatter.bf │ │ ├── Numerics │ │ ├── Bool2.bf │ │ ├── Bool4.bf │ │ ├── Float2.bf │ │ ├── Float4.bf │ │ ├── Int32_4.bf │ │ ├── V128.bf │ │ └── X86 │ │ │ ├── SSE.bf │ │ │ └── SSE2.bf │ │ ├── Object.bf │ │ ├── OperatingSystem.bf │ │ ├── Platform.bf │ │ ├── PlatformID.bf │ │ ├── Pointer.bf │ │ ├── Predicate.bf │ │ ├── PropertyBag.bf │ │ ├── Random.bf │ │ ├── Range.bf │ │ ├── Reflection │ │ ├── AttributeInfo.bf │ │ ├── BindingFlags.bf │ │ ├── Convert.bf │ │ ├── FieldInfo.bf │ │ ├── MethodInfo.bf │ │ └── TypeInstance.bf │ │ ├── Result.bf │ │ ├── Runtime.bf │ │ ├── Runtime │ │ └── CompilerServices │ │ │ └── TaskAwaiter.bf │ │ ├── Security │ │ └── Cryptography │ │ │ ├── MD5.bf │ │ │ └── SHA256.bf │ │ ├── SizedArray.bf │ │ ├── Span.bf │ │ ├── StaticHookAttribute.bf │ │ ├── String.bf │ │ ├── StringComparison.bf │ │ ├── StringSplitOptions.bf │ │ ├── System.bf │ │ ├── Test.bf │ │ ├── Text │ │ ├── Decoder.bf │ │ ├── Encoding.bf │ │ ├── UTF16.bf │ │ ├── UTF32.bf │ │ └── UTF8.bf │ │ ├── Threading │ │ ├── CancellationToken.bf │ │ ├── CancellationTokenSource.bf │ │ ├── Event.bf │ │ ├── Interlocked.bf │ │ ├── Monitor.bf │ │ ├── SemaphoreSlim.bf │ │ ├── SpinWait.bf │ │ ├── Tasks │ │ │ ├── Future.bf │ │ │ ├── Task.bf │ │ │ ├── TaskScheduler.bf │ │ │ └── ThreadPoolTaskScheduler.bf │ │ ├── Thread.bf │ │ ├── ThreadPool.bf │ │ ├── ThreadPriority.bf │ │ ├── ThreadState.bf │ │ ├── Timeout.bf │ │ └── Volatile.bf │ │ ├── TimeSpan.bf │ │ ├── TimeZoneInfo.bf │ │ ├── Tuple.bf │ │ ├── Type.bf │ │ ├── UInt.bf │ │ ├── UInt16.bf │ │ ├── UInt32.bf │ │ ├── UInt64.bf │ │ ├── UInt8.bf │ │ ├── ValueType.bf │ │ ├── Variant.bf │ │ ├── Version.bf │ │ ├── Void.bf │ │ ├── WebAssembly.bf │ │ └── Windows.bf ├── curl │ ├── BeefProj.toml │ └── src │ │ ├── Curl.bf │ │ └── Transfer.bf └── libgit2 │ ├── BeefProj.toml │ └── src │ └── Git.bf ├── BeefLink ├── BeefLink.cpp └── BeefLink.vcxproj ├── BeefManaged └── BeefManaged.toml ├── BeefRT ├── BeefDbg │ ├── BeefDbg.vcxproj │ └── BeefDbg.vcxproj.filters ├── BeefRT.def ├── BeefRT.props ├── BeefRT.vcxproj ├── BeefRT.vcxproj.filters ├── CMakeLists.txt ├── JEMalloc │ ├── .appveyor.yml │ ├── .autom4te.cfg │ ├── COPYING │ ├── INSTALL.md │ ├── Makefile.in │ ├── README │ ├── VERSION │ ├── autogen.sh │ ├── bin │ │ ├── jemalloc-config.in │ │ ├── jemalloc.sh.in │ │ └── jeprof.in │ ├── build-aux │ │ └── install-sh │ ├── configure.ac │ ├── include │ │ ├── jemalloc │ │ │ ├── internal │ │ │ │ ├── activity_callback.h │ │ │ │ ├── arena_externs.h │ │ │ │ ├── arena_inlines_a.h │ │ │ │ ├── arena_inlines_b.h │ │ │ │ ├── arena_stats.h │ │ │ │ ├── arena_structs.h │ │ │ │ ├── arena_types.h │ │ │ │ ├── assert.h │ │ │ │ ├── atomic.h │ │ │ │ ├── atomic_c11.h │ │ │ │ ├── atomic_gcc_atomic.h │ │ │ │ ├── atomic_gcc_sync.h │ │ │ │ ├── atomic_msvc.h │ │ │ │ ├── background_thread_externs.h │ │ │ │ ├── background_thread_inlines.h │ │ │ │ ├── background_thread_structs.h │ │ │ │ ├── base.h │ │ │ │ ├── bin.h │ │ │ │ ├── bin_info.h │ │ │ │ ├── bin_stats.h │ │ │ │ ├── bin_types.h │ │ │ │ ├── bit_util.h │ │ │ │ ├── bitmap.h │ │ │ │ ├── buf_writer.h │ │ │ │ ├── cache_bin.h │ │ │ │ ├── ckh.h │ │ │ │ ├── counter.h │ │ │ │ ├── ctl.h │ │ │ │ ├── decay.h │ │ │ │ ├── div.h │ │ │ │ ├── ecache.h │ │ │ │ ├── edata.h │ │ │ │ ├── edata_cache.h │ │ │ │ ├── ehooks.h │ │ │ │ ├── emap.h │ │ │ │ ├── emitter.h │ │ │ │ ├── eset.h │ │ │ │ ├── exp_grow.h │ │ │ │ ├── extent.h │ │ │ │ ├── extent_dss.h │ │ │ │ ├── extent_mmap.h │ │ │ │ ├── fb.h │ │ │ │ ├── fxp.h │ │ │ │ ├── hash.h │ │ │ │ ├── hook.h │ │ │ │ ├── hpa.h │ │ │ │ ├── hpa_hooks.h │ │ │ │ ├── hpa_opts.h │ │ │ │ ├── hpdata.h │ │ │ │ ├── inspect.h │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ ├── jemalloc_internal_defs.h │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ ├── jemalloc_internal_externs.h │ │ │ │ ├── jemalloc_internal_includes.h │ │ │ │ ├── jemalloc_internal_inlines_a.h │ │ │ │ ├── jemalloc_internal_inlines_b.h │ │ │ │ ├── jemalloc_internal_inlines_c.h │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ ├── jemalloc_internal_types.h │ │ │ │ ├── jemalloc_preamble.h │ │ │ │ ├── jemalloc_preamble.h.in │ │ │ │ ├── large_externs.h │ │ │ │ ├── lockedint.h │ │ │ │ ├── log.h │ │ │ │ ├── malloc_io.h │ │ │ │ ├── mpsc_queue.h │ │ │ │ ├── mutex.h │ │ │ │ ├── mutex_prof.h │ │ │ │ ├── nstime.h │ │ │ │ ├── pa.h │ │ │ │ ├── pac.h │ │ │ │ ├── pages.h │ │ │ │ ├── pai.h │ │ │ │ ├── peak.h │ │ │ │ ├── peak_event.h │ │ │ │ ├── ph.h │ │ │ │ ├── private_namespace.sh │ │ │ │ ├── private_symbols.awk │ │ │ │ ├── private_symbols.sh │ │ │ │ ├── private_symbols_jet.awk │ │ │ │ ├── prng.h │ │ │ │ ├── prof_data.h │ │ │ │ ├── prof_externs.h │ │ │ │ ├── prof_hook.h │ │ │ │ ├── prof_inlines.h │ │ │ │ ├── prof_log.h │ │ │ │ ├── prof_recent.h │ │ │ │ ├── prof_stats.h │ │ │ │ ├── prof_structs.h │ │ │ │ ├── prof_sys.h │ │ │ │ ├── prof_types.h │ │ │ │ ├── psset.h │ │ │ │ ├── public_namespace.h │ │ │ │ ├── public_namespace.sh │ │ │ │ ├── public_symbols.txt │ │ │ │ ├── public_unnamespace.h │ │ │ │ ├── public_unnamespace.sh │ │ │ │ ├── ql.h │ │ │ │ ├── qr.h │ │ │ │ ├── quantum.h │ │ │ │ ├── rb.h │ │ │ │ ├── rtree.h │ │ │ │ ├── rtree_tsd.h │ │ │ │ ├── safety_check.h │ │ │ │ ├── san.h │ │ │ │ ├── san_bump.h │ │ │ │ ├── sc.h │ │ │ │ ├── sec.h │ │ │ │ ├── sec_opts.h │ │ │ │ ├── seq.h │ │ │ │ ├── slab_data.h │ │ │ │ ├── smoothstep.h │ │ │ │ ├── smoothstep.sh │ │ │ │ ├── spin.h │ │ │ │ ├── stats.h │ │ │ │ ├── sz.h │ │ │ │ ├── tcache_externs.h │ │ │ │ ├── tcache_inlines.h │ │ │ │ ├── tcache_structs.h │ │ │ │ ├── tcache_types.h │ │ │ │ ├── test_hooks.h │ │ │ │ ├── thread_event.h │ │ │ │ ├── ticker.h │ │ │ │ ├── tsd.h │ │ │ │ ├── tsd_generic.h │ │ │ │ ├── tsd_malloc_thread_cleanup.h │ │ │ │ ├── tsd_tls.h │ │ │ │ ├── tsd_types.h │ │ │ │ ├── tsd_win.h │ │ │ │ ├── typed_list.h │ │ │ │ ├── util.h │ │ │ │ └── witness.h │ │ │ ├── jemalloc.h │ │ │ ├── jemalloc.sh │ │ │ ├── jemalloc_defs.h │ │ │ ├── jemalloc_defs.h.in │ │ │ ├── jemalloc_macros.h │ │ │ ├── jemalloc_macros.h.in │ │ │ ├── jemalloc_mangle.h │ │ │ ├── jemalloc_mangle.sh │ │ │ ├── jemalloc_mangle_jet.h │ │ │ ├── jemalloc_protos.h │ │ │ ├── jemalloc_protos.h.in │ │ │ ├── jemalloc_protos_jet.h │ │ │ ├── jemalloc_rename.h │ │ │ ├── jemalloc_rename.sh │ │ │ ├── jemalloc_typedefs.h │ │ │ └── jemalloc_typedefs.h.in │ │ └── msvc_compat │ │ │ ├── C99 │ │ │ ├── stdbool.h │ │ │ └── stdint.h │ │ │ ├── strings.h │ │ │ └── windows_extra.h │ ├── jemalloc.pc.in │ ├── jemalloc.sln │ ├── jemalloc.vcxproj │ ├── jemalloc.vcxproj.filters │ └── src │ │ ├── arena.c │ │ ├── background_thread.c │ │ ├── base.c │ │ ├── bin.c │ │ ├── bin_info.c │ │ ├── bitmap.c │ │ ├── buf_writer.c │ │ ├── cache_bin.c │ │ ├── ckh.c │ │ ├── counter.c │ │ ├── ctl.c │ │ ├── decay.c │ │ ├── div.c │ │ ├── ecache.c │ │ ├── edata.c │ │ ├── edata_cache.c │ │ ├── ehooks.c │ │ ├── emap.c │ │ ├── eset.c │ │ ├── exp_grow.c │ │ ├── extent.c │ │ ├── extent_dss.c │ │ ├── extent_mmap.c │ │ ├── fxp.c │ │ ├── hook.c │ │ ├── hpa.c │ │ ├── hpa_hooks.c │ │ ├── hpdata.c │ │ ├── inspect.c │ │ ├── jemalloc.c │ │ ├── jemalloc_cpp.cpp │ │ ├── large.c │ │ ├── log.c │ │ ├── malloc_io.c │ │ ├── mutex.c │ │ ├── nstime.c │ │ ├── pa.c │ │ ├── pa_extra.c │ │ ├── pac.c │ │ ├── pages.c │ │ ├── pai.c │ │ ├── peak_event.c │ │ ├── prof.c │ │ ├── prof_data.c │ │ ├── prof_log.c │ │ ├── prof_recent.c │ │ ├── prof_stats.c │ │ ├── prof_sys.c │ │ ├── psset.c │ │ ├── rtree.c │ │ ├── safety_check.c │ │ ├── san.c │ │ ├── san_bump.c │ │ ├── sc.c │ │ ├── sec.c │ │ ├── stats.c │ │ ├── sz.c │ │ ├── tcache.c │ │ ├── test_hooks.c │ │ ├── thread_event.c │ │ ├── ticker.c │ │ ├── ticker.py │ │ ├── tsd.c │ │ ├── witness.c │ │ └── zone.c ├── MinRT │ ├── MinRT.cpp │ └── MinRT.vcxproj ├── TCMalloc │ ├── TCMalloc.cpp │ ├── TCMalloc.vcxproj │ └── TCMalloc.vcxproj.filters ├── dbg │ ├── DbgInternal.cpp │ ├── DbgThread.cpp │ ├── DbgThread.h │ ├── dbgmain.cpp │ ├── gc.cpp │ ├── gc.h │ └── gc_raw.cpp ├── gperftools │ ├── AUTHORS │ ├── Backup │ │ └── gperftools.sln │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README_windows.txt │ ├── TODO │ ├── UpgradeLog.htm │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ │ ├── cpuprofile-fileformat.html │ │ ├── cpuprofile.html │ │ ├── designstyle.css │ │ ├── heap-example1.png │ │ ├── heap_checker.html │ │ ├── heapprofile.html │ │ ├── index.html │ │ ├── overview.dot │ │ ├── overview.gif │ │ ├── pageheap.dot │ │ ├── pageheap.gif │ │ ├── pprof-test-big.gif │ │ ├── pprof-test.gif │ │ ├── pprof-vsnprintf-big.gif │ │ ├── pprof-vsnprintf.gif │ │ ├── pprof.1 │ │ ├── pprof_remote_servers.html │ │ ├── spanmap.dot │ │ ├── spanmap.gif │ │ ├── t-test1.times.txt │ │ ├── tcmalloc-opspercpusec.vs.threads.1024.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.128.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.131072.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.16384.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.2048.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.256.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.32768.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.4096.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.512.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.64.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.65536.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.8192.bytes.png │ │ ├── tcmalloc-opspersec.vs.size.1.threads.png │ │ ├── tcmalloc-opspersec.vs.size.12.threads.png │ │ ├── tcmalloc-opspersec.vs.size.16.threads.png │ │ ├── tcmalloc-opspersec.vs.size.2.threads.png │ │ ├── tcmalloc-opspersec.vs.size.20.threads.png │ │ ├── tcmalloc-opspersec.vs.size.3.threads.png │ │ ├── tcmalloc-opspersec.vs.size.4.threads.png │ │ ├── tcmalloc-opspersec.vs.size.5.threads.png │ │ ├── tcmalloc-opspersec.vs.size.8.threads.png │ │ ├── tcmalloc.html │ │ ├── threadheap.dot │ │ └── threadheap.gif │ ├── gperftools.sln │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── m4 │ │ ├── ac_have_attribute.m4 │ │ ├── acx_nanosleep.m4 │ │ ├── acx_pthread.m4 │ │ ├── compiler_characteristics.m4 │ │ ├── install_prefix.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── namespaces.m4 │ │ ├── pc_from_ucontext.m4 │ │ ├── program_invocation_name.m4 │ │ └── stl_namespace.m4 │ ├── missing │ ├── packages │ │ ├── deb.sh │ │ ├── deb │ │ │ ├── README │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── libgperftools-dev.dirs │ │ │ ├── libgperftools-dev.install │ │ │ ├── libgperftools0.dirs │ │ │ ├── libgperftools0.install │ │ │ ├── libgperftools0.manpages │ │ │ └── rules │ │ ├── rpm.sh │ │ └── rpm │ │ │ └── rpm.spec │ ├── src │ │ ├── addressmap-inl.h │ │ ├── base │ │ │ ├── arm_instruction_set_select.h │ │ │ ├── atomicops-internals-arm-generic.h │ │ │ ├── atomicops-internals-arm-v6plus.h │ │ │ ├── atomicops-internals-linuxppc.h │ │ │ ├── atomicops-internals-macosx.h │ │ │ ├── atomicops-internals-windows.h │ │ │ ├── atomicops-internals-x86.cc │ │ │ ├── atomicops-internals-x86.h │ │ │ ├── atomicops.h │ │ │ ├── basictypes.h │ │ │ ├── commandlineflags.h │ │ │ ├── cycleclock.h │ │ │ ├── dynamic_annotations.cc │ │ │ ├── dynamic_annotations.h │ │ │ ├── elf_mem_image.cc │ │ │ ├── elf_mem_image.h │ │ │ ├── elfcore.h │ │ │ ├── googleinit.h │ │ │ ├── linux_syscall_support.h │ │ │ ├── linuxthreads.cc │ │ │ ├── linuxthreads.h │ │ │ ├── logging.cc │ │ │ ├── logging.h │ │ │ ├── low_level_alloc.cc │ │ │ ├── low_level_alloc.h │ │ │ ├── simple_mutex.h │ │ │ ├── spinlock.cc │ │ │ ├── spinlock.h │ │ │ ├── spinlock_internal.cc │ │ │ ├── spinlock_internal.h │ │ │ ├── spinlock_linux-inl.h │ │ │ ├── spinlock_posix-inl.h │ │ │ ├── spinlock_win32-inl.h │ │ │ ├── stl_allocator.h │ │ │ ├── synchronization_profiling.h │ │ │ ├── sysinfo.cc │ │ │ ├── sysinfo.h │ │ │ ├── thread_annotations.h │ │ │ ├── thread_lister.c │ │ │ ├── thread_lister.h │ │ │ ├── vdso_support.cc │ │ │ └── vdso_support.h │ │ ├── central_freelist.cc │ │ ├── central_freelist.h │ │ ├── common.h │ │ ├── config.h.in │ │ ├── config_for_unittests.h │ │ ├── debugallocation.cc │ │ ├── getpc.h │ │ ├── google │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h │ │ ├── gperftools │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h.in │ │ ├── heap-checker-bcad.cc │ │ ├── heap-checker.cc │ │ ├── heap-profile-table.cc │ │ ├── heap-profile-table.h │ │ ├── heap-profiler.cc │ │ ├── internal_logging.cc │ │ ├── internal_logging.h │ │ ├── ios │ │ │ ├── config.h │ │ │ └── gperftools │ │ │ │ └── tcmalloc.h │ │ ├── libc_override.h │ │ ├── libc_override_gcc_and_weak.h │ │ ├── libc_override_glibc.h │ │ ├── libc_override_osx.h │ │ ├── libc_override_redefine.h │ │ ├── linked_list.h │ │ ├── malloc_extension.cc │ │ ├── malloc_hook-inl.h │ │ ├── malloc_hook.cc │ │ ├── malloc_hook_mmap_freebsd.h │ │ ├── malloc_hook_mmap_linux.h │ │ ├── maybe_threads.cc │ │ ├── maybe_threads.h │ │ ├── memfs_malloc.cc │ │ ├── memory_region_map.cc │ │ ├── memory_region_map.h │ │ ├── osx │ │ │ ├── config.h │ │ │ └── gperftools │ │ │ │ └── tcmalloc.h │ │ ├── packed-cache-inl.h │ │ ├── page_heap.cc │ │ ├── page_heap.h │ │ ├── page_heap_allocator.h │ │ ├── pagemap.h │ │ ├── pprof │ │ ├── profile-handler.cc │ │ ├── profile-handler.h │ │ ├── profiledata.cc │ │ ├── profiledata.h │ │ ├── profiler.cc │ │ ├── raw_printer.cc │ │ ├── raw_printer.h │ │ ├── sampler.cc │ │ ├── sampler.h │ │ ├── solaris │ │ │ └── libstdc++.la │ │ ├── span.cc │ │ ├── span.h │ │ ├── stack_trace_table.cc │ │ ├── stack_trace_table.h │ │ ├── stacktrace.cc │ │ ├── stacktrace_arm-inl.h │ │ ├── stacktrace_config.h │ │ ├── stacktrace_generic-inl.h │ │ ├── stacktrace_libunwind-inl.h │ │ ├── stacktrace_powerpc-inl.h │ │ ├── stacktrace_win32-inl.h │ │ ├── stacktrace_x86-inl.h │ │ ├── static_vars.cc │ │ ├── static_vars.h │ │ ├── symbolize.cc │ │ ├── symbolize.h │ │ ├── system-alloc.cc │ │ ├── system-alloc.h │ │ ├── tc_common.cc │ │ ├── tcconfig.h │ │ ├── tcmalloc.cc │ │ ├── tcmalloc.h │ │ ├── tcmalloc_guard.h │ │ ├── tests │ │ │ ├── addressmap_unittest.cc │ │ │ ├── atomicops_unittest.cc │ │ │ ├── current_allocated_bytes_test.cc │ │ │ ├── debugallocation_test.cc │ │ │ ├── debugallocation_test.sh │ │ │ ├── frag_unittest.cc │ │ │ ├── getpc_test.cc │ │ │ ├── heap-checker-death_unittest.sh │ │ │ ├── heap-checker_unittest.cc │ │ │ ├── heap-checker_unittest.sh │ │ │ ├── heap-profiler_unittest.cc │ │ │ ├── heap-profiler_unittest.sh │ │ │ ├── large_heap_fragmentation_unittest.cc │ │ │ ├── low_level_alloc_unittest.cc │ │ │ ├── malloc_extension_c_test.c │ │ │ ├── malloc_extension_test.cc │ │ │ ├── malloc_hook_test.cc │ │ │ ├── markidle_unittest.cc │ │ │ ├── maybe_threads_unittest.sh │ │ │ ├── memalign_unittest.cc │ │ │ ├── packed-cache_test.cc │ │ │ ├── page_heap_test.cc │ │ │ ├── pagemap_unittest.cc │ │ │ ├── profile-handler_unittest.cc │ │ │ ├── profiledata_unittest.cc │ │ │ ├── profiler_unittest.cc │ │ │ ├── profiler_unittest.sh │ │ │ ├── raw_printer_test.cc │ │ │ ├── realloc_unittest.cc │ │ │ ├── sampler_test.cc │ │ │ ├── sampling_test.cc │ │ │ ├── sampling_test.sh │ │ │ ├── simple_compat_test.cc │ │ │ ├── stack_trace_table_test.cc │ │ │ ├── stacktrace_unittest.cc │ │ │ ├── system-alloc_unittest.cc │ │ │ ├── tcmalloc_large_unittest.cc │ │ │ ├── tcmalloc_unittest.cc │ │ │ ├── tcmalloc_unittest.sh │ │ │ ├── testutil.cc │ │ │ ├── testutil.h │ │ │ └── thread_dealloc_unittest.cc │ │ ├── third_party │ │ │ └── valgrind.h │ │ ├── thread_cache.cc │ │ ├── thread_cache.h │ │ ├── unity_tcmalloc_obj.cc │ │ ├── unity_tcmalloc_raw.cc │ │ └── windows │ │ │ ├── addr2line-pdb.c │ │ │ ├── auto_testing_hook.h │ │ │ ├── config.h │ │ │ ├── get_mangled_names.cc │ │ │ ├── gperftools │ │ │ ├── tcmalloc.h │ │ │ └── tcmalloc.h.in │ │ │ ├── ia32_modrm_map.cc │ │ │ ├── ia32_opcode_map.cc │ │ │ ├── mingw.h │ │ │ ├── mini_disassembler.cc │ │ │ ├── mini_disassembler.h │ │ │ ├── mini_disassembler_types.h │ │ │ ├── nm-pdb.c │ │ │ ├── override_functions.cc │ │ │ ├── patch_functions.cc │ │ │ ├── port.cc │ │ │ ├── port.h │ │ │ ├── preamble_patcher.cc │ │ │ ├── preamble_patcher.h │ │ │ ├── preamble_patcher_test.cc │ │ │ ├── preamble_patcher_with_stub.cc │ │ │ └── shortproc.asm │ ├── test-driver │ └── vsprojects │ │ ├── addr2line-pdb │ │ ├── addr2line-pdb.vcproj │ │ ├── addr2line-pdb.vcxproj │ │ └── addr2line-pdb.vcxproj.filters │ │ ├── addressmap_unittest │ │ ├── addressmap_unittest.vcproj │ │ ├── addressmap_unittest.vcxproj │ │ └── addressmap_unittest.vcxproj.filters │ │ ├── current_allocated_bytes_test │ │ ├── current_allocated_bytes_test.vcproj │ │ ├── current_allocated_bytes_test.vcxproj │ │ └── current_allocated_bytes_test.vcxproj.filters │ │ ├── frag_unittest │ │ ├── frag_unittest.vcproj │ │ ├── frag_unittest.vcxproj │ │ └── frag_unittest.vcxproj.filters │ │ ├── libtcmalloc_minimal │ │ ├── UpgradeLog.htm │ │ ├── libtcmalloc_minimal.v12.suo │ │ ├── libtcmalloc_minimal.vcproj │ │ ├── libtcmalloc_minimal.vcxproj │ │ ├── libtcmalloc_minimal.vcxproj.filters │ │ └── libtcmalloc_minimal.vcxproj.user │ │ ├── low_level_alloc_unittest │ │ ├── low_level_alloc_unittest.vcproj │ │ ├── low_level_alloc_unittest.vcxproj │ │ └── low_level_alloc_unittest.vcxproj.filters │ │ ├── malloc_extension_test │ │ ├── malloc_extension_test.vcproj │ │ ├── malloc_extension_test.vcxproj │ │ └── malloc_extension_test.vcxproj.filters │ │ ├── malloc_hook_test │ │ ├── malloc_hook_test.vcproj │ │ ├── malloc_hook_test.vcxproj │ │ └── malloc_hook_test.vcxproj.filters │ │ ├── markidle_unittest │ │ ├── markidle_unittest.vcproj │ │ ├── markidle_unittest.vcxproj │ │ └── markidle_unittest.vcxproj.filters │ │ ├── nm-pdb │ │ ├── nm-pdb.vcproj │ │ ├── nm-pdb.vcxproj │ │ └── nm-pdb.vcxproj.filters │ │ ├── packed-cache_test │ │ ├── packed-cache_test.vcproj │ │ ├── packed-cache_test.vcxproj │ │ └── packed-cache_test.vcxproj.filters │ │ ├── page_heap_test │ │ ├── page_heap_test.vcproj │ │ ├── page_heap_test.vcxproj │ │ └── page_heap_test.vcxproj.filters │ │ ├── pagemap_unittest │ │ ├── pagemap_unittest.vcproj │ │ ├── pagemap_unittest.vcxproj │ │ └── pagemap_unittest.vcxproj.filters │ │ ├── preamble_patcher_test │ │ ├── preamble_patcher_test.vcproj │ │ ├── preamble_patcher_test.vcxproj │ │ └── preamble_patcher_test.vcxproj.filters │ │ ├── realloc_unittest │ │ ├── realloc_unittest.vcproj │ │ ├── realloc_unittest.vcxproj │ │ └── realloc_unittest.vcxproj.filters │ │ ├── sampler_test │ │ ├── sampler_test.vcproj │ │ ├── sampler_test.vcxproj │ │ └── sampler_test.vcxproj.filters │ │ ├── stack_trace_table_test │ │ ├── stack_trace_table_test.vcproj │ │ ├── stack_trace_table_test.vcxproj │ │ └── stack_trace_table_test.vcxproj.filters │ │ ├── tcmalloc_minimal_large │ │ ├── tcmalloc_minimal_large_unittest.vcproj │ │ ├── tcmalloc_minimal_large_unittest.vcxproj │ │ └── tcmalloc_minimal_large_unittest.vcxproj.filters │ │ ├── tcmalloc_minimal_unittest │ │ ├── tcmalloc_minimal_unittest.vcproj │ │ ├── tcmalloc_minimal_unittest.vcxproj │ │ └── tcmalloc_minimal_unittest.vcxproj.filters │ │ ├── thread_dealloc_unittest │ │ ├── thread_dealloc_unittest.vcproj │ │ ├── thread_dealloc_unittest.vcxproj │ │ └── thread_dealloc_unittest.vcxproj.filters │ │ └── tmu-static │ │ ├── tmu-static.vcproj │ │ ├── tmu-static.vcxproj │ │ └── tmu-static.vcxproj.filters └── rt │ ├── BfObjects.h │ ├── Chars.cpp │ ├── Internal.cpp │ ├── Math.cpp │ ├── Object.cpp │ ├── StompAlloc.cpp │ ├── StompAlloc.h │ ├── Test.cpp │ ├── Thread.cpp │ ├── Thread.h │ ├── ThreadLocalStorage.cpp │ └── ThreadLocalStorage.h ├── BeefTools ├── BeefCon │ ├── BeefProj.toml │ ├── BeefSpace.toml │ └── src │ │ └── Program.bf ├── BeefMem │ ├── BeefMem.cpp │ ├── BeefMem.vcxproj │ ├── BeefMem.vcxproj.filters │ ├── CMakeLists.txt │ └── gperftools │ │ ├── AUTHORS │ │ ├── Backup │ │ └── gperftools.sln │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README_windows.txt │ │ ├── TODO │ │ ├── UpgradeLog.htm │ │ ├── aclocal.m4 │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ ├── cpuprofile-fileformat.html │ │ ├── cpuprofile.html │ │ ├── designstyle.css │ │ ├── heap-example1.png │ │ ├── heap_checker.html │ │ ├── heapprofile.html │ │ ├── index.html │ │ ├── overview.dot │ │ ├── overview.gif │ │ ├── pageheap.dot │ │ ├── pageheap.gif │ │ ├── pprof-test-big.gif │ │ ├── pprof-test.gif │ │ ├── pprof-vsnprintf-big.gif │ │ ├── pprof-vsnprintf.gif │ │ ├── pprof.1 │ │ ├── pprof_remote_servers.html │ │ ├── spanmap.dot │ │ ├── spanmap.gif │ │ ├── t-test1.times.txt │ │ ├── tcmalloc-opspercpusec.vs.threads.1024.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.128.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.131072.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.16384.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.2048.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.256.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.32768.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.4096.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.512.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.64.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.65536.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.8192.bytes.png │ │ ├── tcmalloc-opspersec.vs.size.1.threads.png │ │ ├── tcmalloc-opspersec.vs.size.12.threads.png │ │ ├── tcmalloc-opspersec.vs.size.16.threads.png │ │ ├── tcmalloc-opspersec.vs.size.2.threads.png │ │ ├── tcmalloc-opspersec.vs.size.20.threads.png │ │ ├── tcmalloc-opspersec.vs.size.3.threads.png │ │ ├── tcmalloc-opspersec.vs.size.4.threads.png │ │ ├── tcmalloc-opspersec.vs.size.5.threads.png │ │ ├── tcmalloc-opspersec.vs.size.8.threads.png │ │ ├── tcmalloc.html │ │ ├── threadheap.dot │ │ └── threadheap.gif │ │ ├── gperftools.sln │ │ ├── install-sh │ │ ├── libtool │ │ ├── ltmain.sh │ │ ├── m4 │ │ ├── ac_have_attribute.m4 │ │ ├── acx_nanosleep.m4 │ │ ├── acx_pthread.m4 │ │ ├── compiler_characteristics.m4 │ │ ├── install_prefix.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── namespaces.m4 │ │ ├── pc_from_ucontext.m4 │ │ ├── program_invocation_name.m4 │ │ └── stl_namespace.m4 │ │ ├── missing │ │ ├── packages │ │ ├── deb.sh │ │ ├── deb │ │ │ ├── README │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── libgperftools-dev.dirs │ │ │ ├── libgperftools-dev.install │ │ │ ├── libgperftools0.dirs │ │ │ ├── libgperftools0.install │ │ │ ├── libgperftools0.manpages │ │ │ └── rules │ │ ├── rpm.sh │ │ └── rpm │ │ │ └── rpm.spec │ │ ├── src │ │ ├── addressmap-inl.h │ │ ├── base │ │ │ ├── arm_instruction_set_select.h │ │ │ ├── atomicops-internals-arm-generic.h │ │ │ ├── atomicops-internals-arm-v6plus.h │ │ │ ├── atomicops-internals-linuxppc.h │ │ │ ├── atomicops-internals-macosx.h │ │ │ ├── atomicops-internals-windows.h │ │ │ ├── atomicops-internals-x86.cc │ │ │ ├── atomicops-internals-x86.h │ │ │ ├── atomicops.h │ │ │ ├── basictypes.h │ │ │ ├── commandlineflags.h │ │ │ ├── cycleclock.h │ │ │ ├── dynamic_annotations.cc │ │ │ ├── dynamic_annotations.h │ │ │ ├── elf_mem_image.cc │ │ │ ├── elf_mem_image.h │ │ │ ├── elfcore.h │ │ │ ├── googleinit.h │ │ │ ├── linux_syscall_support.h │ │ │ ├── linuxthreads.cc │ │ │ ├── linuxthreads.h │ │ │ ├── logging.cc │ │ │ ├── logging.h │ │ │ ├── low_level_alloc.cc │ │ │ ├── low_level_alloc.h │ │ │ ├── simple_mutex.h │ │ │ ├── spinlock.cc │ │ │ ├── spinlock.h │ │ │ ├── spinlock_internal.cc │ │ │ ├── spinlock_internal.h │ │ │ ├── spinlock_linux-inl.h │ │ │ ├── spinlock_posix-inl.h │ │ │ ├── spinlock_win32-inl.h │ │ │ ├── stl_allocator.h │ │ │ ├── synchronization_profiling.h │ │ │ ├── sysinfo.cc │ │ │ ├── sysinfo.h │ │ │ ├── thread_annotations.h │ │ │ ├── thread_lister.c │ │ │ ├── thread_lister.h │ │ │ ├── vdso_support.cc │ │ │ └── vdso_support.h │ │ ├── central_freelist.cc │ │ ├── central_freelist.h │ │ ├── common.h │ │ ├── config.h.in │ │ ├── config_for_unittests.h │ │ ├── debugallocation.cc │ │ ├── getpc.h │ │ ├── google │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h │ │ ├── gperftools │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h.in │ │ ├── heap-checker-bcad.cc │ │ ├── heap-checker.cc │ │ ├── heap-profile-table.cc │ │ ├── heap-profile-table.h │ │ ├── heap-profiler.cc │ │ ├── internal_logging.cc │ │ ├── internal_logging.h │ │ ├── ios │ │ │ ├── config.h │ │ │ └── gperftools │ │ │ │ └── tcmalloc.h │ │ ├── libc_override.h │ │ ├── libc_override_gcc_and_weak.h │ │ ├── libc_override_glibc.h │ │ ├── libc_override_osx.h │ │ ├── libc_override_redefine.h │ │ ├── linked_list.h │ │ ├── malloc_extension.cc │ │ ├── malloc_hook-inl.h │ │ ├── malloc_hook.cc │ │ ├── malloc_hook_mmap_freebsd.h │ │ ├── malloc_hook_mmap_linux.h │ │ ├── maybe_threads.cc │ │ ├── maybe_threads.h │ │ ├── memfs_malloc.cc │ │ ├── memory_region_map.cc │ │ ├── memory_region_map.h │ │ ├── osx │ │ │ ├── config.h │ │ │ └── gperftools │ │ │ │ └── tcmalloc.h │ │ ├── packed-cache-inl.h │ │ ├── page_heap.cc │ │ ├── page_heap.h │ │ ├── page_heap_allocator.h │ │ ├── pagemap.h │ │ ├── pprof │ │ ├── profile-handler.cc │ │ ├── profile-handler.h │ │ ├── profiledata.cc │ │ ├── profiledata.h │ │ ├── profiler.cc │ │ ├── raw_printer.cc │ │ ├── raw_printer.h │ │ ├── sampler.cc │ │ ├── sampler.h │ │ ├── solaris │ │ │ └── libstdc++.la │ │ ├── span.cc │ │ ├── span.h │ │ ├── stack_trace_table.cc │ │ ├── stack_trace_table.h │ │ ├── stacktrace.cc │ │ ├── stacktrace_arm-inl.h │ │ ├── stacktrace_config.h │ │ ├── stacktrace_generic-inl.h │ │ ├── stacktrace_libunwind-inl.h │ │ ├── stacktrace_powerpc-inl.h │ │ ├── stacktrace_win32-inl.h │ │ ├── stacktrace_x86-inl.h │ │ ├── static_vars.cc │ │ ├── static_vars.h │ │ ├── symbolize.cc │ │ ├── symbolize.h │ │ ├── system-alloc.cc │ │ ├── system-alloc.h │ │ ├── tc_common.cc │ │ ├── tcconfig.h │ │ ├── tcmalloc.cc │ │ ├── tcmalloc.h │ │ ├── tcmalloc_guard.h │ │ ├── tests │ │ │ ├── addressmap_unittest.cc │ │ │ ├── atomicops_unittest.cc │ │ │ ├── current_allocated_bytes_test.cc │ │ │ ├── debugallocation_test.cc │ │ │ ├── debugallocation_test.sh │ │ │ ├── frag_unittest.cc │ │ │ ├── getpc_test.cc │ │ │ ├── heap-checker-death_unittest.sh │ │ │ ├── heap-checker_unittest.cc │ │ │ ├── heap-checker_unittest.sh │ │ │ ├── heap-profiler_unittest.cc │ │ │ ├── heap-profiler_unittest.sh │ │ │ ├── large_heap_fragmentation_unittest.cc │ │ │ ├── low_level_alloc_unittest.cc │ │ │ ├── malloc_extension_c_test.c │ │ │ ├── malloc_extension_test.cc │ │ │ ├── malloc_hook_test.cc │ │ │ ├── markidle_unittest.cc │ │ │ ├── maybe_threads_unittest.sh │ │ │ ├── memalign_unittest.cc │ │ │ ├── packed-cache_test.cc │ │ │ ├── page_heap_test.cc │ │ │ ├── pagemap_unittest.cc │ │ │ ├── profile-handler_unittest.cc │ │ │ ├── profiledata_unittest.cc │ │ │ ├── profiler_unittest.cc │ │ │ ├── profiler_unittest.sh │ │ │ ├── raw_printer_test.cc │ │ │ ├── realloc_unittest.cc │ │ │ ├── sampler_test.cc │ │ │ ├── sampling_test.cc │ │ │ ├── sampling_test.sh │ │ │ ├── simple_compat_test.cc │ │ │ ├── stack_trace_table_test.cc │ │ │ ├── stacktrace_unittest.cc │ │ │ ├── system-alloc_unittest.cc │ │ │ ├── tcmalloc_large_unittest.cc │ │ │ ├── tcmalloc_unittest.cc │ │ │ ├── tcmalloc_unittest.sh │ │ │ ├── testutil.cc │ │ │ ├── testutil.h │ │ │ └── thread_dealloc_unittest.cc │ │ ├── third_party │ │ │ └── valgrind.h │ │ ├── thread_cache.cc │ │ ├── thread_cache.h │ │ └── windows │ │ │ ├── addr2line-pdb.c │ │ │ ├── auto_testing_hook.h │ │ │ ├── config.h │ │ │ ├── get_mangled_names.cc │ │ │ ├── gperftools │ │ │ ├── tcmalloc.h │ │ │ └── tcmalloc.h.in │ │ │ ├── ia32_modrm_map.cc │ │ │ ├── ia32_opcode_map.cc │ │ │ ├── mingw.h │ │ │ ├── mini_disassembler.cc │ │ │ ├── mini_disassembler.h │ │ │ ├── mini_disassembler_types.h │ │ │ ├── nm-pdb.c │ │ │ ├── override_functions.cc │ │ │ ├── patch_functions.cc │ │ │ ├── port.cc │ │ │ ├── port.h │ │ │ ├── preamble_patcher.cc │ │ │ ├── preamble_patcher.h │ │ │ ├── preamble_patcher_test.cc │ │ │ ├── preamble_patcher_with_stub.cc │ │ │ └── shortproc.asm │ │ ├── test-driver │ │ └── vsprojects │ │ ├── addr2line-pdb │ │ ├── addr2line-pdb.vcproj │ │ ├── addr2line-pdb.vcxproj │ │ └── addr2line-pdb.vcxproj.filters │ │ ├── addressmap_unittest │ │ ├── addressmap_unittest.vcproj │ │ ├── addressmap_unittest.vcxproj │ │ └── addressmap_unittest.vcxproj.filters │ │ ├── current_allocated_bytes_test │ │ ├── current_allocated_bytes_test.vcproj │ │ ├── current_allocated_bytes_test.vcxproj │ │ └── current_allocated_bytes_test.vcxproj.filters │ │ ├── frag_unittest │ │ ├── frag_unittest.vcproj │ │ ├── frag_unittest.vcxproj │ │ └── frag_unittest.vcxproj.filters │ │ ├── libtcmalloc_minimal │ │ ├── UpgradeLog.htm │ │ ├── libtcmalloc_minimal.v12.suo │ │ ├── libtcmalloc_minimal.vcproj │ │ ├── libtcmalloc_minimal.vcxproj │ │ └── libtcmalloc_minimal.vcxproj.filters │ │ ├── low_level_alloc_unittest │ │ ├── low_level_alloc_unittest.vcproj │ │ ├── low_level_alloc_unittest.vcxproj │ │ └── low_level_alloc_unittest.vcxproj.filters │ │ ├── malloc_extension_test │ │ ├── malloc_extension_test.vcproj │ │ ├── malloc_extension_test.vcxproj │ │ └── malloc_extension_test.vcxproj.filters │ │ ├── malloc_hook_test │ │ ├── malloc_hook_test.vcproj │ │ ├── malloc_hook_test.vcxproj │ │ └── malloc_hook_test.vcxproj.filters │ │ ├── markidle_unittest │ │ ├── markidle_unittest.vcproj │ │ ├── markidle_unittest.vcxproj │ │ └── markidle_unittest.vcxproj.filters │ │ ├── nm-pdb │ │ ├── nm-pdb.vcproj │ │ ├── nm-pdb.vcxproj │ │ └── nm-pdb.vcxproj.filters │ │ ├── packed-cache_test │ │ ├── packed-cache_test.vcproj │ │ ├── packed-cache_test.vcxproj │ │ └── packed-cache_test.vcxproj.filters │ │ ├── page_heap_test │ │ ├── page_heap_test.vcproj │ │ ├── page_heap_test.vcxproj │ │ └── page_heap_test.vcxproj.filters │ │ ├── pagemap_unittest │ │ ├── pagemap_unittest.vcproj │ │ ├── pagemap_unittest.vcxproj │ │ └── pagemap_unittest.vcxproj.filters │ │ ├── preamble_patcher_test │ │ ├── preamble_patcher_test.vcproj │ │ ├── preamble_patcher_test.vcxproj │ │ └── preamble_patcher_test.vcxproj.filters │ │ ├── realloc_unittest │ │ ├── realloc_unittest.vcproj │ │ ├── realloc_unittest.vcxproj │ │ └── realloc_unittest.vcxproj.filters │ │ ├── sampler_test │ │ ├── sampler_test.vcproj │ │ ├── sampler_test.vcxproj │ │ └── sampler_test.vcxproj.filters │ │ ├── stack_trace_table_test │ │ ├── stack_trace_table_test.vcproj │ │ ├── stack_trace_table_test.vcxproj │ │ └── stack_trace_table_test.vcxproj.filters │ │ ├── tcmalloc_minimal_large │ │ ├── tcmalloc_minimal_large_unittest.vcproj │ │ ├── tcmalloc_minimal_large_unittest.vcxproj │ │ └── tcmalloc_minimal_large_unittest.vcxproj.filters │ │ ├── tcmalloc_minimal_unittest │ │ ├── tcmalloc_minimal_unittest.vcproj │ │ ├── tcmalloc_minimal_unittest.vcxproj │ │ └── tcmalloc_minimal_unittest.vcxproj.filters │ │ ├── thread_dealloc_unittest │ │ ├── thread_dealloc_unittest.vcproj │ │ ├── thread_dealloc_unittest.vcxproj │ │ └── thread_dealloc_unittest.vcxproj.filters │ │ └── tmu-static │ │ ├── tmu-static.vcproj │ │ ├── tmu-static.vcxproj │ │ └── tmu-static.vcxproj.filters ├── BeefPerf │ ├── BeefProj.toml │ ├── BeefSpace.toml │ ├── res │ │ ├── BeefPerf.ico │ │ └── BeefPerf.manifest │ └── src │ │ ├── BPApp.bf │ │ ├── BPClient.bf │ │ ├── BPUtils.bf │ │ ├── Board.bf │ │ ├── BpStateContext.bf │ │ ├── CircularBuffer.bf │ │ ├── FindPanel.bf │ │ ├── Images.bf │ │ ├── MainFrame.bf │ │ ├── PerfView.bf │ │ ├── ProfilePanel.bf │ │ ├── Program.bf │ │ ├── ScriptManager.bf │ │ ├── StatusBar.bf │ │ └── WorkspacePanel.bf ├── BfAeDebug │ ├── App.config │ ├── BfAeDebug.csproj │ ├── BfAeDebug.sln │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── DocPrep │ ├── BeefProj.toml │ ├── BeefSpace.toml │ └── src │ │ └── Program.bf ├── ImgCreate │ ├── ImgCreate.cpp │ ├── ImgCreate.sln │ ├── ImgCreate.vcxproj │ └── ImgCreate.vcxproj.filters ├── LogViewer │ ├── BeefProj.toml │ ├── BeefSpace.toml │ ├── icon.png │ ├── res │ │ ├── LogViewer.ico │ │ └── LogViewer.manifest │ └── src │ │ ├── Board.bf │ │ ├── LVApp.bf │ │ ├── MemLogDialog.bf │ │ ├── Program.bf │ │ └── StatusBar.bf ├── MemProfiler │ ├── BeefProj.toml │ ├── BeefSpace.toml │ ├── Board.bf │ ├── FMod.bf │ ├── FMod_DSP.bf │ ├── FMod_Errors.bf │ ├── Images.bf │ ├── MPApp.bf │ ├── Perlin.bf │ └── Program.bf ├── RandoCode │ ├── BeefProj.toml │ ├── BeefSpace.toml │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── data │ │ ├── 1adj.txt │ │ ├── 1adv.txt │ │ ├── 1noun.txt │ │ ├── 1verb.txt │ │ ├── 2adj.txt │ │ ├── 2adv.txt │ │ ├── 2noun.txt │ │ ├── 2verb.txt │ │ ├── 3adj.txt │ │ ├── 3adv.txt │ │ ├── 3noun.txt │ │ ├── 3verb.txt │ │ ├── 4adj.txt │ │ ├── 4adv.txt │ │ ├── 4noun.txt │ │ └── 4verb.txt │ └── src │ │ └── Program.bf ├── RunAndWait │ ├── RunAndWait.cpp │ ├── RunAndWait.sln │ ├── RunAndWait.vcxproj │ └── RunAndWait.vcxproj.filters ├── RunWithStats │ ├── RunWithStats.cpp │ ├── RunWithStats.sln │ ├── RunWithStats.vcxproj │ └── RunWithStats.vcxproj.filters ├── TestDLL │ ├── TestDLL.cpp │ ├── TestDLL.h │ ├── TestDLL.sln │ ├── TestDLL.vcxproj │ ├── TestDLL.vcxproj.filters │ ├── TestDLL2.cpp │ └── store.bat └── WasmLaunch │ ├── BeefProj.toml │ ├── BeefSpace.toml │ └── src │ └── Program.bf ├── BeefySysLib ├── BFApp.cpp ├── BFApp.h ├── BFSound.cpp ├── BFSound.h ├── BFWindow.cpp ├── BFWindow.h ├── BeefProj.toml ├── BeefySysLib.cpp ├── BeefySysLib.vcxproj ├── BeefySysLib.vcxproj.filters ├── BeefySysLib.vcxproj.user ├── BeefySysLib_static.vcxproj ├── BeefySysLib_static.vcxproj.filters ├── CMakeLists.txt ├── CachedDataStream.cpp ├── CachedDataStream.h ├── Common.cpp ├── Common.h ├── DataStream.cpp ├── DataStream.h ├── FileHandleStream.cpp ├── FileHandleStream.h ├── FileStream.cpp ├── FileStream.h ├── HeadlessApp.cpp ├── HeadlessApp.h ├── MTRand.cpp ├── MemStream.cpp ├── MemStream.h ├── PerfTests.cpp ├── ResLib.cpp ├── Span.h ├── Startup.cpp ├── fbx │ ├── FBXReader.cpp │ └── FBXReader.h ├── gfx │ ├── DrawLayer.cpp │ ├── DrawLayer.h │ ├── FTFont.cpp │ ├── FTFont.h │ ├── Font.h │ ├── ModelDef.cpp │ ├── ModelDef.h │ ├── ModelInstance.cpp │ ├── ModelInstance.h │ ├── RenderCmd.cpp │ ├── RenderCmd.h │ ├── RenderDevice.cpp │ ├── RenderDevice.h │ ├── RenderTarget.cpp │ ├── RenderTarget.h │ ├── Shader.cpp │ ├── Shader.h │ ├── Texture.cpp │ ├── Texture.h │ ├── glTF.cpp │ └── glTF.h ├── img │ ├── BFIData.cpp │ ├── BFIData.h │ ├── BMPData.cpp │ ├── BMPData.h │ ├── ImageAdjustments.cpp │ ├── ImageAdjustments.h │ ├── ImageData.cpp │ ├── ImageData.h │ ├── ImageUtils.cpp │ ├── ImageUtils.h │ ├── ImgEffects.cpp │ ├── ImgEffects.h │ ├── JPEGData.cpp │ ├── JPEGData.h │ ├── PNGData.cpp │ ├── PNGData.h │ ├── PSDReader.cpp │ ├── PSDReader.h │ ├── PVRData.cpp │ ├── PVRData.h │ ├── TGAData.cpp │ └── TGAData.h ├── perf_tests │ ├── fannkuchredux.cpp │ ├── fastaredux.cpp │ └── nbody.cpp ├── platform │ ├── PlatformHelper.h │ ├── PlatformInterface.h │ ├── android │ │ ├── AndroidCommon.cpp │ │ ├── AndroidCommon.h │ │ ├── BFPlatform.cpp │ │ ├── BFPlatform.h │ │ └── PlatformApp.h │ ├── darwin │ │ ├── DarwinCommon.cpp │ │ ├── DarwinCommon.h │ │ └── PlatformApp.h │ ├── ios │ │ ├── BFPlatform.cpp │ │ └── BFPlatform.h │ ├── linux │ │ ├── BFPlatform.cpp │ │ ├── BFPlatform.h │ │ ├── LinuxCommon.cpp │ │ ├── LinuxCommon.h │ │ └── PlatformApp.h │ ├── notwin │ │ └── NotWin.h │ ├── osx │ │ ├── BFPlatform.cpp │ │ └── BFPlatform.h │ ├── posix │ │ └── PosixCommon.cpp │ ├── sdl │ │ ├── GLRenderDevice.cpp │ │ ├── GLRenderDevice.h │ │ ├── SdlBFApp.cpp │ │ └── SdlBFApp.h │ ├── wasm │ │ ├── BFPlatform.cpp │ │ ├── BFPlatform.h │ │ ├── PlatformApp.h │ │ ├── WasmCommon.cpp │ │ └── WasmCommon.h │ └── win │ │ ├── BFPlatform.h │ │ ├── CrashCatcher.cpp │ │ ├── CrashCatcher.h │ │ ├── DDS.h │ │ ├── DInputManager.cpp │ │ ├── DInputManager.h │ │ ├── DSoundInstance.cpp │ │ ├── DSoundInstance.h │ │ ├── DSoundManager.cpp │ │ ├── DSoundManager.h │ │ ├── DXRenderDevice.cpp │ │ ├── DXRenderDevice.h │ │ ├── Platform.cpp │ │ ├── PlatformApp.h │ │ ├── WinBFApp.cpp │ │ └── WinBFApp.h ├── projects │ ├── ios │ │ ├── BeefySysLib.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── brian.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── BeefySysLib │ │ │ └── BeefySysLib.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── brian.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ └── brian.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── BeefySysLib.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ └── fatbuild.sh │ └── osx │ │ └── BeefySysLib │ │ └── BeefySysLib.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── BeefySysLib.xccheckout │ │ └── xcuserdata │ │ │ └── brian.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ └── brian.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── BeefySysLib dylib.xcscheme │ │ ├── BeefySysLib.xcscheme │ │ └── xcschememanagement.plist ├── sound │ ├── Common │ │ ├── AkDefaultLowLevelIODispatcher.cpp │ │ ├── AkDefaultLowLevelIODispatcher.h │ │ ├── AkFileLocationBase.cpp │ │ ├── AkFileLocationBase.h │ │ ├── AkFilePackage.cpp │ │ ├── AkFilePackage.h │ │ ├── AkFilePackageLUT.cpp │ │ ├── AkFilePackageLUT.h │ │ ├── AkFilePackageLowLevelIO.h │ │ └── AkFilePackageLowLevelIO.inl │ ├── Win32 │ │ ├── AkDefaultIOHookBlocking.cpp │ │ ├── AkDefaultIOHookBlocking.h │ │ ├── AkDefaultIOHookDeferred.cpp │ │ ├── AkDefaultIOHookDeferred.h │ │ ├── AkFileHelpers.h │ │ ├── AkFilePackageLowLevelIOBlocking.h │ │ └── AkFilePackageLowLevelIODeferred.h │ ├── WwiseSound.cpp │ └── WwiseSound.h ├── third_party │ ├── codeview │ │ ├── cvconst.h │ │ └── cvinfo.h │ ├── freetype │ │ ├── README │ │ ├── devel │ │ │ ├── ft2build.h │ │ │ └── ftoption.h │ │ ├── include │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftautoh.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftcffdrv.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftfntfmt.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpcfdrv.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── ftttdrv.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── fthash.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpic.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmetric.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ └── svwinfnt.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ │ └── ft2build.h │ │ └── src │ │ │ ├── Jamfile │ │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afpic.c │ │ │ ├── afpic.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── afwrtsys.h │ │ │ ├── autofit.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── base │ │ │ ├── Jamfile │ │ │ ├── basepic.c │ │ │ ├── basepic.h │ │ │ ├── ftadvanc.c │ │ │ ├── ftapi.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── ftfntfmt.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── fthash.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpic.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftwinfnt.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ │ ├── bdf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── bzip2 │ │ │ ├── Jamfile │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ │ ├── cache │ │ │ ├── Jamfile │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ │ ├── cff │ │ │ ├── Jamfile │ │ │ ├── cf2arrst.c │ │ │ ├── cf2arrst.h │ │ │ ├── cf2blues.c │ │ │ ├── cf2blues.h │ │ │ ├── cf2error.c │ │ │ ├── cf2error.h │ │ │ ├── cf2fixed.h │ │ │ ├── cf2font.c │ │ │ ├── cf2font.h │ │ │ ├── cf2ft.c │ │ │ ├── cf2ft.h │ │ │ ├── cf2glue.h │ │ │ ├── cf2hints.c │ │ │ ├── cf2hints.h │ │ │ ├── cf2intrp.c │ │ │ ├── cf2intrp.h │ │ │ ├── cf2read.c │ │ │ ├── cf2read.h │ │ │ ├── cf2stack.c │ │ │ ├── cf2stack.h │ │ │ ├── cf2types.h │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cffpic.c │ │ │ ├── cffpic.h │ │ │ ├── cfftoken.h │ │ │ ├── cfftypes.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── cid │ │ │ ├── Jamfile │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ │ ├── gxvalid │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── gzip │ │ │ ├── Jamfile │ │ │ ├── adler32.c │ │ │ ├── ftgzip.c │ │ │ ├── ftzconf.h │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── rules.mk │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ │ ├── lzw │ │ │ ├── Jamfile │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ │ ├── otvalid │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ │ ├── pcf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ │ ├── pfr │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ │ ├── psaux │ │ │ ├── Jamfile │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── module.mk │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ │ ├── pshinter │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshpic.c │ │ │ ├── pshpic.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ │ ├── psnames │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pspic.c │ │ │ ├── pspic.h │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ │ ├── raster │ │ │ ├── Jamfile │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ ├── rastpic.c │ │ │ ├── rastpic.h │ │ │ └── rules.mk │ │ │ ├── sfnt │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfntpic.c │ │ │ ├── sfntpic.h │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ └── ttsbit.h │ │ │ ├── smooth │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── ftspic.c │ │ │ ├── ftspic.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ │ ├── tools │ │ │ ├── Jamfile │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── docmaker │ │ │ │ ├── content.py │ │ │ │ ├── docbeauty.py │ │ │ │ ├── docmaker.py │ │ │ │ ├── formatter.py │ │ │ │ ├── sources.py │ │ │ │ ├── tohtml.py │ │ │ │ └── utils.py │ │ │ ├── ftfuzzer │ │ │ │ ├── README │ │ │ │ ├── ftfuzzer.cc │ │ │ │ ├── ftmutator.cc │ │ │ │ ├── rasterfuzzer.cc │ │ │ │ └── runinput.cc │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ └── update-copyright-year │ │ │ ├── truetype │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpic.c │ │ │ ├── ttpic.h │ │ │ ├── ttpload.c │ │ │ ├── ttpload.h │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.h │ │ │ ├── type1 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ │ ├── type42 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ │ └── winfonts │ │ │ ├── Jamfile │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── jpeg │ │ ├── ansi2knr.1 │ │ ├── ansi2knr.c │ │ ├── cderror.h │ │ ├── cdjpeg.c │ │ ├── cdjpeg.h │ │ ├── change.log │ │ ├── cjpeg.1 │ │ ├── cjpeg.c │ │ ├── ckconfig.c │ │ ├── coderules.doc │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── djpeg.1 │ │ ├── djpeg.c │ │ ├── example.c │ │ ├── install-sh │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jchuff.h │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.bcc │ │ ├── jconfig.dj │ │ ├── jconfig.h │ │ ├── jconfig.mac │ │ ├── jconfig.manx │ │ ├── jconfig.mc6 │ │ ├── jconfig.sas │ │ ├── jconfig.st │ │ ├── jconfig.vc │ │ ├── jconfig.vms │ │ ├── jconfig.wat │ │ ├── jcparam.c │ │ ├── jcphuff.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdhuff.h │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdphuff.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jidctred.c │ │ ├── jinclude.h │ │ ├── jmemansi.c │ │ ├── jmemdos.c │ │ ├── jmemdosa.asm │ │ ├── jmemmac.c │ │ ├── jmemmgr.c │ │ ├── jmemname.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jpegtran.1 │ │ ├── jpegtran.c │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── ltconfig │ │ ├── ltmain.sh │ │ ├── makcjpeg.st │ │ ├── makdjpeg.st │ │ ├── makefile.ansi │ │ ├── makefile.bcc │ │ ├── makefile.dj │ │ ├── makefile.manx │ │ ├── makefile.mc6 │ │ ├── makefile.mms │ │ ├── makefile.sas │ │ ├── makefile.unix │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── makefile.wat │ │ ├── makeproj.mac │ │ ├── makljpeg.st │ │ ├── maktjpeg.st │ │ ├── makvms.opt │ │ ├── rdbmp.c │ │ ├── rdcolmap.c │ │ ├── rdgif.c │ │ ├── rdjpgcom.1 │ │ ├── rdjpgcom.c │ │ ├── rdppm.c │ │ ├── rdrle.c │ │ ├── rdswitch.c │ │ ├── rdtarga.c │ │ ├── readme │ │ ├── transupp.c │ │ ├── transupp.h │ │ ├── wrbmp.c │ │ ├── wrgif.c │ │ ├── wrjpgcom.1 │ │ ├── wrjpgcom.c │ │ ├── wrppm.c │ │ ├── wrrle.c │ │ └── wrtarga.c │ ├── libffi │ │ ├── ChangeLog │ │ ├── ChangeLog.libffi │ │ ├── ChangeLog.libgcj │ │ ├── ChangeLog.v1 │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── build-ios.sh │ │ ├── build_ios │ │ │ ├── Makefile │ │ │ ├── config.log │ │ │ ├── config.status │ │ │ ├── fficonfig.h │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── ffi.h │ │ │ │ └── ffitarget.h │ │ │ ├── libffi.pc │ │ │ ├── libtool │ │ │ ├── local.exp │ │ │ ├── man │ │ │ │ └── Makefile │ │ │ ├── stamp-h1 │ │ │ └── testsuite │ │ │ │ └── Makefile │ │ ├── build_mac │ │ │ ├── Makefile │ │ │ ├── config.log │ │ │ ├── config.status │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ └── ffi.h │ │ │ ├── local.exp │ │ │ └── testsuite │ │ │ │ └── Makefile │ │ ├── build_simulator │ │ │ ├── Makefile │ │ │ ├── config.log │ │ │ ├── config.status │ │ │ ├── fficonfig.h │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── ffi.h │ │ │ │ └── ffitarget.h │ │ │ ├── libffi.pc │ │ │ ├── libtool │ │ │ ├── local.exp │ │ │ ├── man │ │ │ │ └── Makefile │ │ │ ├── stamp-h1 │ │ │ └── testsuite │ │ │ │ └── Makefile │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.host │ │ ├── depcomp │ │ ├── doc │ │ │ ├── libffi.info │ │ │ ├── libffi.texi │ │ │ ├── stamp-vti │ │ │ └── version.texi │ │ ├── fficonfig.h.in │ │ ├── generate-ios-source-and-headers.py │ │ ├── generate-osx-source-and-headers.py │ │ ├── i686-pc-cygwin │ │ │ ├── .libs │ │ │ │ ├── libffi.lib │ │ │ │ └── libffi_convenience.lib │ │ │ ├── Makefile │ │ │ ├── fficonfig.h │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── ffi.h │ │ │ │ └── ffitarget.h │ │ │ ├── libtool │ │ │ ├── man │ │ │ │ └── Makefile │ │ │ ├── src │ │ │ │ ├── .deps │ │ │ │ │ ├── .dirstamp │ │ │ │ │ ├── closures.Plo │ │ │ │ │ ├── debug.Plo │ │ │ │ │ ├── java_raw_api.Plo │ │ │ │ │ ├── prep_cif.Plo │ │ │ │ │ ├── raw_api.Plo │ │ │ │ │ └── types.Plo │ │ │ │ ├── .dirstamp │ │ │ │ ├── aarch64 │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── alpha │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── osf.Plo │ │ │ │ ├── arm │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ ├── sysv.Plo │ │ │ │ │ │ └── trampoline.Plo │ │ │ │ ├── avr32 │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── bfin │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── closures.asm │ │ │ │ ├── cris │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── frv │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── eabi.Plo │ │ │ │ │ │ └── ffi.Plo │ │ │ │ ├── ia64 │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── unix.Plo │ │ │ │ ├── java_raw_api.asm │ │ │ │ ├── m32r │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── m68k │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── metag │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── microblaze │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── mips │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ ├── n32.Plo │ │ │ │ │ │ └── o32.Plo │ │ │ │ ├── moxie │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── eabi.Plo │ │ │ │ │ │ └── ffi.Plo │ │ │ │ ├── pa │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ ├── hpux32.Plo │ │ │ │ │ │ └── linux.Plo │ │ │ │ ├── powerpc │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── aix.Plo │ │ │ │ │ │ ├── aix_closure.Plo │ │ │ │ │ │ ├── darwin.Plo │ │ │ │ │ │ ├── darwin_closure.Plo │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ ├── ffi_darwin.Plo │ │ │ │ │ │ ├── linux64.Plo │ │ │ │ │ │ ├── linux64_closure.Plo │ │ │ │ │ │ ├── ppc_closure.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── prep_cif.asm │ │ │ │ ├── raw_api.asm │ │ │ │ ├── s390 │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── sh │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── sh64 │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── sysv.Plo │ │ │ │ ├── sparc │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ ├── v8.Plo │ │ │ │ │ │ └── v9.Plo │ │ │ │ ├── tile │ │ │ │ │ └── .deps │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ └── tile.Plo │ │ │ │ ├── types.asm │ │ │ │ ├── x86 │ │ │ │ │ ├── .deps │ │ │ │ │ │ ├── .dirstamp │ │ │ │ │ │ ├── darwin.Plo │ │ │ │ │ │ ├── darwin64.Plo │ │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ │ ├── ffi64.Plo │ │ │ │ │ │ ├── freebsd.Plo │ │ │ │ │ │ ├── sysv.Plo │ │ │ │ │ │ ├── unix64.Plo │ │ │ │ │ │ ├── win32.Plo │ │ │ │ │ │ └── win64.Plo │ │ │ │ │ ├── .dirstamp │ │ │ │ │ ├── ffi.asm │ │ │ │ │ ├── win32.asm │ │ │ │ │ └── win64.asm │ │ │ │ └── xtensa │ │ │ │ │ └── .deps │ │ │ │ │ ├── ffi.Plo │ │ │ │ │ └── sysv.Plo │ │ │ └── testsuite │ │ │ │ └── Makefile │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ffi.h.in │ │ │ └── ffi_common.h │ │ ├── install-sh │ │ ├── ios │ │ │ ├── include │ │ │ │ ├── ffi.h │ │ │ │ ├── ffi_armv7.h │ │ │ │ ├── ffi_common.h │ │ │ │ ├── ffi_i386.h │ │ │ │ ├── fficonfig.h │ │ │ │ ├── fficonfig_armv7.h │ │ │ │ ├── fficonfig_i386.h │ │ │ │ ├── ffitarget.h │ │ │ │ ├── ffitarget_arm.h │ │ │ │ ├── ffitarget_armv7.h │ │ │ │ └── ffitarget_i386.h │ │ │ └── src │ │ │ │ ├── arm │ │ │ │ ├── ffi.c │ │ │ │ ├── gentramp.sh │ │ │ │ ├── sysv.S │ │ │ │ └── trampoline.S │ │ │ │ ├── closures.c │ │ │ │ ├── debug.c │ │ │ │ ├── dlmalloc.c │ │ │ │ ├── java_raw_api.c │ │ │ │ ├── prep_cif.c │ │ │ │ ├── raw_api.c │ │ │ │ ├── types.c │ │ │ │ └── x86 │ │ │ │ ├── darwin.S │ │ │ │ ├── darwin64.S │ │ │ │ ├── ffi.c │ │ │ │ ├── ffi64.c │ │ │ │ ├── freebsd.S │ │ │ │ ├── sysv.S │ │ │ │ ├── unix64.S │ │ │ │ ├── win32.S │ │ │ │ ├── win64.S │ │ │ │ └── win64.S_old │ │ ├── libffi.pc.in │ │ ├── libffi.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ │ └── brian.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── libffi OS X.xcscheme │ │ │ │ ├── libffi iOS.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── libtool-ldflags │ │ ├── libtool-version │ │ ├── ltmain.sh │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ffi.3 │ │ │ ├── ffi_call.3 │ │ │ ├── ffi_prep_cif.3 │ │ │ └── ffi_prep_cif_var.3 │ │ ├── mdate-sh │ │ ├── missing │ │ ├── msvcc.sh │ │ ├── osx │ │ │ ├── include │ │ │ │ ├── ffi.h │ │ │ │ ├── ffi_common.h │ │ │ │ ├── ffi_i386.h │ │ │ │ ├── ffi_x86_64.h │ │ │ │ ├── fficonfig.h │ │ │ │ ├── fficonfig_i386.h │ │ │ │ ├── fficonfig_x86_64.h │ │ │ │ ├── ffitarget.h │ │ │ │ ├── ffitarget_i386.h │ │ │ │ └── ffitarget_x86_64.h │ │ │ └── src │ │ │ │ ├── closures.c │ │ │ │ ├── debug.c │ │ │ │ ├── dlmalloc.c │ │ │ │ ├── java_raw_api.c │ │ │ │ ├── prep_cif.c │ │ │ │ ├── raw_api.c │ │ │ │ ├── types.c │ │ │ │ └── x86 │ │ │ │ ├── darwin.S │ │ │ │ ├── darwin64.S │ │ │ │ ├── ffi.c │ │ │ │ ├── ffi64.c │ │ │ │ ├── freebsd.S │ │ │ │ ├── sysv.S │ │ │ │ ├── unix64.S │ │ │ │ ├── win32.S │ │ │ │ ├── win64.S │ │ │ │ └── win64.S_old │ │ ├── src │ │ │ ├── aarch64 │ │ │ │ ├── ffi.c │ │ │ │ ├── ffitarget.h │ │ │ │ └── sysv.S │ │ │ ├── alpha │ │ │ │ ├── ffi.c │ │ │ │ ├── ffitarget.h │ │ │ │ └── osf.S │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── x86 │ │ │ │ ├── darwin.S │ │ │ │ ├── darwin64.S │ │ │ │ ├── ffi.c │ │ │ │ ├── ffi64.c │ │ │ │ ├── ffitarget.h │ │ │ │ ├── freebsd.S │ │ │ │ ├── sysv.S │ │ │ │ ├── unix64.S │ │ │ │ ├── win32.S │ │ │ │ ├── win64.S │ │ │ │ └── win64.S_old │ │ │ └── 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_stdcall.c │ │ │ │ ├── closure_thiscall.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 │ │ │ │ ├── fastthis1_win32.c │ │ │ │ ├── fastthis2_win32.c │ │ │ │ ├── fastthis3_win32.c │ │ │ │ ├── ffitest.h │ │ │ │ ├── float.c │ │ │ │ ├── float1.c │ │ │ │ ├── float2.c │ │ │ │ ├── float3.c │ │ │ │ ├── float4.c │ │ │ │ ├── float_va.c │ │ │ │ ├── huge_struct.c │ │ │ │ ├── many.c │ │ │ │ ├── many2.c │ │ │ │ ├── many2_win32.c │ │ │ │ ├── many_win32.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_win32.c │ │ │ │ ├── strlen_win32.c │ │ │ │ ├── struct1.c │ │ │ │ ├── struct1_win32.c │ │ │ │ ├── struct2.c │ │ │ │ ├── struct2_win32.c │ │ │ │ ├── struct3.c │ │ │ │ ├── struct4.c │ │ │ │ ├── struct5.c │ │ │ │ ├── struct6.c │ │ │ │ ├── struct7.c │ │ │ │ ├── struct8.c │ │ │ │ ├── struct9.c │ │ │ │ ├── testclosure.c │ │ │ │ ├── uninitialized.c │ │ │ │ ├── va_1.c │ │ │ │ ├── va_struct1.c │ │ │ │ ├── va_struct2.c │ │ │ │ └── va_struct3.c │ │ │ └── libffi.special │ │ │ │ ├── ffitestcxx.h │ │ │ │ ├── special.exp │ │ │ │ ├── unwindtest.cc │ │ │ │ └── unwindtest_ffi_call.cc │ │ └── texinfo.tex │ ├── miniz │ │ ├── LICENSE │ │ ├── miniz.c │ │ └── miniz.h │ ├── png │ │ ├── announce │ │ ├── changes │ │ ├── example.c │ │ ├── install │ │ ├── knownbug │ │ ├── libpng.3 │ │ ├── libpng.txt │ │ ├── libpngpf.3 │ │ ├── license │ │ ├── png.5 │ │ ├── png.c │ │ ├── png.h │ │ ├── pngasmrd.h │ │ ├── pngconf.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pngmem.c │ │ ├── pngnow.png │ │ ├── pngpread.c │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngtest.c │ │ ├── pngtest.png │ │ ├── pngtrans.c │ │ ├── pngvcrd.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ ├── pngwutil.c │ │ ├── readme │ │ ├── todo │ │ └── y2kinfo │ ├── putty │ │ ├── LICENSE │ │ ├── wildcard.c │ │ └── wildcard.h │ ├── sparsehash │ │ ├── config.h.in │ │ ├── config.h.include │ │ ├── google │ │ │ ├── dense_hash_map │ │ │ ├── dense_hash_set │ │ │ ├── sparse_hash_map │ │ │ ├── sparse_hash_set │ │ │ ├── sparsehash │ │ │ │ ├── densehashtable.h │ │ │ │ ├── hashtable-common.h │ │ │ │ ├── libc_allocator_with_realloc.h │ │ │ │ └── sparsehashtable.h │ │ │ ├── sparsetable │ │ │ ├── template_util.h │ │ │ └── type_traits.h │ │ ├── hash_test_interface.h │ │ ├── hashtable_test.cc │ │ ├── libc_allocator_with_realloc_test.cc │ │ ├── simple_compat_test.cc │ │ ├── simple_test.cc │ │ ├── sparsehash │ │ │ ├── dense_hash_map │ │ │ ├── dense_hash_set │ │ │ ├── internal │ │ │ │ ├── densehashtable.h │ │ │ │ ├── hashtable-common.h │ │ │ │ ├── libc_allocator_with_realloc.h │ │ │ │ └── sparsehashtable.h │ │ │ ├── sparse_hash_map │ │ │ ├── sparse_hash_set │ │ │ ├── sparsetable │ │ │ ├── template_util.h │ │ │ └── type_traits.h │ │ ├── sparsetable_unittest.cc │ │ ├── template_util_unittest.cc │ │ ├── testutil.h │ │ ├── time_hash_map.cc │ │ ├── type_traits_unittest.cc │ │ └── windows │ │ │ ├── config.h │ │ │ ├── google │ │ │ └── sparsehash │ │ │ │ └── sparseconfig.h │ │ │ ├── port.cc │ │ │ ├── port.h │ │ │ └── sparsehash │ │ │ └── internal │ │ │ └── sparseconfig.h │ ├── stb │ │ └── stb_sprintf.h │ ├── utf8proc │ │ ├── bench │ │ │ └── bench.c │ │ ├── utf8proc.c │ │ ├── utf8proc.h │ │ └── utf8proc_data.c │ └── zlib │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefile.riscos │ │ ├── adler32.c │ │ ├── algorithm.txt │ │ ├── compress.c │ │ ├── configure │ │ ├── crc32.c │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── descrip.mms │ │ ├── example.c │ │ ├── faq │ │ ├── gzio.c │ │ ├── index │ │ ├── infblock.c │ │ ├── infblock.h │ │ ├── infcodes.c │ │ ├── infcodes.h │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── infutil.c │ │ ├── infutil.h │ │ ├── maketree.c │ │ ├── minigzip.c │ │ ├── readme │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.3 │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h └── util │ ├── AllocDebug.cpp │ ├── AllocDebug.h │ ├── Array.h │ ├── BSpline.cpp │ ├── BSpline.h │ ├── BeefPerf.cpp │ ├── BeefPerf.h │ ├── BinaryHeap.h │ ├── BitSet.h │ ├── BumpAllocator.h │ ├── CabUtil.cpp │ ├── CabUtil.h │ ├── CatmullRom.cpp │ ├── CatmullRom.h │ ├── ChunkedDataBuffer.cpp │ ├── ChunkedDataBuffer.h │ ├── ChunkedVector.h │ ├── Compression.cpp │ ├── Compression.h │ ├── CritSect.h │ ├── CubicFuncSpline.cpp │ ├── CubicFuncSpline.h │ ├── CubicSpline.cpp │ ├── CubicSpline.h │ ├── DLIList.h │ ├── Deque.h │ ├── Dictionary.h │ ├── FileEnumerator.cpp │ ├── FileEnumerator.h │ ├── Hash.cpp │ ├── Hash.h │ ├── HashSet.h │ ├── Heap.cpp │ ├── Heap.h │ ├── Json.cpp │ ├── Json.h │ ├── MTRand.cpp │ ├── MTRand.h │ ├── MappedFile.cpp │ ├── MappedFile.h │ ├── MathUtils.cpp │ ├── MathUtils.h │ ├── Matrix4.cpp │ ├── Matrix4.h │ ├── MemLogger.cpp │ ├── MemLogger.h │ ├── MultiDictionary.h │ ├── MultiHashSet.h │ ├── PerfTimer.cpp │ ├── PerfTimer.h │ ├── Point.cpp │ ├── Point.h │ ├── PolySpline.cpp │ ├── PolySpline.h │ ├── Quaternion.cpp │ ├── Quaternion.h │ ├── Queue.h │ ├── Rect.h │ ├── SLIList.h │ ├── SizedArray.h │ ├── Sphere.cpp │ ├── Sphere.h │ ├── StackHelper.cpp │ ├── StackHelper.h │ ├── String.cpp │ ├── String.h │ ├── TLSingleton.h │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ ├── UTF8.cpp │ ├── UTF8.h │ ├── Vector.cpp │ ├── Vector.h │ ├── WorkThread.cpp │ ├── WorkThread.h │ ├── ZipFile.cpp │ └── ZipFile.h ├── CMakeLists.txt ├── Debugger32 ├── Debugger32.vcxproj └── Debugger32.vcxproj.filters ├── Debugger64 ├── BeefProj.toml ├── Debugger64.vcxproj └── Debugger64.vcxproj.filters ├── IDE ├── BeefProj.toml ├── BeefRT.sln ├── BeefSpace.toml ├── Properties │ └── Resources.resx ├── Resources │ ├── Beef.png │ ├── Beef256.png │ ├── IDE.manifest │ └── beef.ico ├── Tests │ ├── BugW001 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ └── Program.bf │ ├── BugW002 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ └── Program.bf │ ├── BugW003 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ └── Program.bf │ ├── BugW004 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ └── Program.bf │ ├── BugW005 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── Extra.bf │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ └── Program.bf │ ├── BugW006 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ └── Program.bf │ ├── BugW007 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ └── Program.bf │ ├── BugW008 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ ├── Gen.bf │ │ │ └── Program.bf │ ├── BugW009 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Test.txt │ │ └── src │ │ │ ├── Gen.bf │ │ │ └── Program.bf │ ├── CompileFail001 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── CompileFail.txt │ │ └── src │ │ │ ├── Cases.bf │ │ │ ├── Declarations.bf │ │ │ ├── Defer.bf │ │ │ ├── Generics.bf │ │ │ ├── LocalVars.bf │ │ │ ├── Methods.bf │ │ │ ├── Properties.bf │ │ │ └── Protection.bf │ ├── DebuggerTest01 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Container01.txt │ │ └── src │ │ │ ├── Container.bf │ │ │ └── Program.bf │ ├── EmptyTest │ │ ├── dumps │ │ │ ├── Chrome1.dmp │ │ │ └── Chrome2.dmp │ │ └── scripts │ │ │ ├── Minidump.txt │ │ │ ├── NewProject01.txt │ │ │ └── NewProject02.txt │ ├── IndentTest │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── Indent01.txt │ │ └── src │ │ │ └── Indent01.bf │ ├── Rando │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── cloc.bat │ │ └── scripts │ │ │ ├── Test001.toml │ │ │ ├── Test002.toml │ │ │ └── Test003.toml │ ├── SlotTest │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── SlotTest001.txt │ │ └── src │ │ │ ├── Program.bf │ │ │ └── SlotTest001.bf │ ├── SysMSVCRT │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ └── src │ │ │ └── Program.bf │ ├── Test1 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ ├── Assembly.txt │ │ │ ├── Break.txt │ │ │ ├── Breakpoints.txt │ │ │ ├── Breakpoints02.txt │ │ │ ├── Bug001.txt │ │ │ ├── Bug002.txt │ │ │ ├── Data01.txt │ │ │ ├── Enums.txt │ │ │ ├── HotSwap_BaseChange.txt │ │ │ ├── HotSwap_BaseChange02.txt │ │ │ ├── HotSwap_Breakpoints.txt │ │ │ ├── HotSwap_Data01.txt │ │ │ ├── HotSwap_Data02.txt │ │ │ ├── HotSwap_Data03.txt │ │ │ ├── HotSwap_Data04.txt │ │ │ ├── HotSwap_Funcs.txt │ │ │ ├── HotSwap_GetUnused.txt │ │ │ ├── HotSwap_Interfaces.txt │ │ │ ├── HotSwap_Interfaces2.txt │ │ │ ├── HotSwap_Lambdas01.txt │ │ │ ├── HotSwap_LocateSym01.txt │ │ │ ├── HotSwap_Reflection.txt │ │ │ ├── HotSwap_TLS.txt │ │ │ ├── HotSwap_Virtual.txt │ │ │ ├── HotSwap_Virtual02.txt │ │ │ ├── HotSwap_VirtualRemap.txt │ │ │ ├── Inline.txt │ │ │ ├── Lambdas.txt │ │ │ ├── MemoryBreakpoints.txt │ │ │ ├── Methods.txt │ │ │ ├── Mixins.txt │ │ │ ├── Multithread.txt │ │ │ ├── Multithread02.txt │ │ │ ├── Properties.txt │ │ │ ├── Splats.txt │ │ │ ├── Stepping_Scope.txt │ │ │ ├── TypedPrimitives.txt │ │ │ ├── Unions.txt │ │ │ ├── UsingFields.txt │ │ │ └── Virtuals.txt │ │ └── src │ │ │ ├── Assembly.bf │ │ │ ├── Break.bf │ │ │ ├── Breakpoints.bf │ │ │ ├── Breakpoints02.bf │ │ │ ├── Data01.bf │ │ │ ├── Enums.bf │ │ │ ├── HotSwap.bf │ │ │ ├── HotSwap_BaseChange.bf │ │ │ ├── HotSwap_Data.bf │ │ │ ├── HotSwap_GetUnused.bf │ │ │ ├── HotSwap_Interfaces2.bf │ │ │ ├── HotSwap_Lambdas01.bf │ │ │ ├── HotSwap_LocateSym01.bf │ │ │ ├── HotSwap_Reflection.bf │ │ │ ├── HotSwap_TLS.bf │ │ │ ├── HotSwap_Virtuals02.bf │ │ │ ├── Inline.bf │ │ │ ├── Lambdas.bf │ │ │ ├── MemoryBreakpoints.bf │ │ │ ├── Methods.bf │ │ │ ├── Mixins.bf │ │ │ ├── Multithread.bf │ │ │ ├── Multithread02.bf │ │ │ ├── Program.bf │ │ │ ├── Properties.bf │ │ │ ├── Splats.bf │ │ │ ├── Stepping_Scope.bf │ │ │ ├── TypedPrimitives.bf │ │ │ ├── Unions.bf │ │ │ ├── UsingFields.bf │ │ │ ├── Virtuals.bf │ │ │ └── bugs │ │ │ ├── Bug001.bf │ │ │ └── Bug002.bf │ ├── TestDynCrt1 │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ ├── scripts │ │ │ └── HotSwap_LocateSym01.txt │ │ └── src │ │ │ ├── HotSwap_LocateSym01.bf │ │ │ └── Program.bf │ ├── Tiny │ │ ├── BeefProj.toml │ │ ├── BeefSpace.toml │ │ └── src │ │ │ └── Program.bf │ └── scripts │ │ └── DebugAndExit.txt ├── dist │ ├── BeefConfig.toml │ ├── BeefConfig_host.toml │ ├── BeefConfig_install.toml │ ├── BeefDbgVis.toml │ ├── IDE_CreateStable.bat │ ├── IDE_RunCopy.bat │ ├── IDE_RunCopyD.bat │ ├── IDE_RunOrig.bat │ ├── Standard.dbgvis │ ├── en_US.aff │ ├── en_US.dic │ ├── fonts │ │ └── SourceCodePro-Regular.ttf │ ├── git2.dll │ ├── git2.lib │ ├── images │ │ ├── BoneTex.png │ │ ├── Circle.png │ │ ├── DarkTheme.png │ │ ├── DarkUI.png │ │ ├── DarkUI.psd │ │ ├── DarkUI_2.png │ │ ├── DarkUI_4.png │ │ ├── DarkUI_4.psd │ │ ├── IconError.png │ │ ├── IconError_2.png │ │ ├── IconError_4.png │ │ ├── IconWarning.png │ │ ├── IconWarning_2.png │ │ ├── IconWarning_4.png │ │ ├── ImgCreate.exe │ │ ├── LaoUI.ttf │ │ ├── Squiggle.png │ │ ├── TransparencyGrid.png │ │ ├── welcome_sample0.png │ │ ├── welcome_sample1.png │ │ └── whiteDot.tga │ ├── lib │ │ ├── gen │ │ │ ├── BeefProj.toml │ │ │ ├── BeefSpace.toml │ │ │ └── src │ │ │ │ └── Program.bf │ │ ├── x64 │ │ │ ├── comdlg32.lib │ │ │ ├── gdi32.lib │ │ │ ├── kernel32.lib │ │ │ ├── msvcrt.lib │ │ │ ├── netapi32.lib │ │ │ ├── ntdll.lib │ │ │ ├── ole32.lib │ │ │ ├── rpcrt4.lib │ │ │ ├── user32.lib │ │ │ ├── version.lib │ │ │ └── winmm.lib │ │ └── x86 │ │ │ └── msvcrt.lib │ ├── make_pdb.bat │ ├── make_pdb_d.bat │ ├── notes.txt │ ├── shaders │ │ ├── Std.frag │ │ ├── Std.fx │ │ ├── Std.vert │ │ ├── Std_es.frag │ │ ├── Std_es.vert │ │ ├── Std_font.frag │ │ ├── Std_font.fx │ │ ├── Std_font.vert │ │ ├── Std_font_es.frag │ │ ├── Std_font_es.vert │ │ ├── Std_hue.fx │ │ ├── Std_hue_font.fx │ │ └── std.fxo │ └── userdict_install.txt ├── include │ └── BeefDbg.h ├── mintest │ ├── BeefProj.toml │ ├── BeefSpace.toml │ ├── LibA │ │ ├── BeefProj.toml │ │ └── src │ │ │ └── a1.bf │ ├── LibB │ │ ├── BeefProj.toml │ │ └── src │ │ │ └── b1.bf │ ├── min_shared.cs │ ├── minlib │ │ ├── BeefProj.toml │ │ └── src │ │ │ └── System │ │ │ ├── Array.bf │ │ │ ├── Attribute.bf │ │ │ ├── BitConverter.bf │ │ │ ├── Collections │ │ │ ├── IEnumerator.bf │ │ │ ├── List.bf │ │ │ └── Sorter.bf │ │ │ ├── Compiler.bf │ │ │ ├── Diagnostics │ │ │ ├── Contracts │ │ │ │ ├── Contracts.bf │ │ │ │ └── ContractsBcl.bf │ │ │ ├── Debug.bf │ │ │ ├── Profiler.bf │ │ │ └── Stopwatch.bf │ │ │ ├── Double.bf │ │ │ ├── Environment.bf │ │ │ ├── Event.bf │ │ │ ├── GC.bf │ │ │ ├── IComparable.bf │ │ │ ├── IHashable.bf │ │ │ ├── Internal.bf │ │ │ ├── Math.bf │ │ │ ├── MidpointRounding.bf │ │ │ ├── Nullable.bf │ │ │ ├── Object.bf │ │ │ ├── Platform.bf │ │ │ ├── Range.bf │ │ │ ├── Reflection │ │ │ ├── BindingFlags.bf │ │ │ └── FieldInfo.bf │ │ │ ├── Result.bf │ │ │ ├── Runtime.bf │ │ │ ├── Span.bf │ │ │ ├── String.bf │ │ │ ├── TClass.bf │ │ │ ├── Threading │ │ │ ├── Monitor.bf │ │ │ ├── Thread.bf │ │ │ ├── ThreadPriority.bf │ │ │ ├── ThreadState.bf │ │ │ └── Timeout.bf │ │ │ ├── TimeSpan.bf │ │ │ ├── Type.bf │ │ │ └── Variant.bf │ ├── mintest.proj.cdep │ ├── mintest.user │ ├── mintest2 │ │ ├── BeefProj.toml │ │ └── src │ │ │ └── main4.bf │ └── src │ │ ├── Test.cpp │ │ ├── cpp │ │ ├── sys.cpp │ │ ├── sys.h │ │ ├── test1.cpp │ │ ├── test2.cpp │ │ ├── testA.h │ │ ├── testB.h │ │ ├── testC.h │ │ ├── testD.h │ │ └── testE.h │ │ ├── main.bf │ │ ├── main2.bf │ │ ├── main3.bf │ │ └── zop │ │ └── Zoggle.bf ├── screenshot0.gif └── src │ ├── BeefConfig.bf │ ├── Board.bf │ ├── BookmarkManager.bf │ ├── BuildContext.bf │ ├── BuildOptions.bf │ ├── Clang │ ├── ClangCompiler.bf │ └── ClangHelper.bf │ ├── CmdTarget.bf │ ├── CommandQueueManager.bf │ ├── Commands.bf │ ├── Compiler │ ├── BfCompiler.bf │ ├── BfParser.bf │ ├── BfPassInstance.bf │ ├── BfProject.bf │ ├── BfResolveHelper.bf │ ├── BfResolvePassData.bf │ ├── BfSystem.bf │ └── CompilerBase.bf │ ├── CompositeFile.bf │ ├── CustomBuildProperties.bf │ ├── Debugger │ ├── Breakpoint.bf │ ├── Callbacks.bf │ ├── DebugManager.bf │ ├── Profiler.bf │ └── StepFilter.bf │ ├── FileEditData.bf │ ├── FileRecovery.bf │ ├── FileWatcher.bf │ ├── HistoryManager.bf │ ├── IDEApp.bf │ ├── IDEUtils.bf │ ├── IPCHelper.bf │ ├── Popup.bf │ ├── Program.bf │ ├── Project.bf │ ├── ScriptManager.bf │ ├── Settings.bf │ ├── SimpleProgram.bf │ ├── SourceControl.bf │ ├── SpellChecker.bf │ ├── Targets.bf │ ├── TestManager.bf │ ├── VertDir.bf │ ├── WakaTime.bf │ ├── Workspace.bf │ ├── ui │ ├── AboutDialog.bf │ ├── AttachDialog.bf │ ├── AutoComplete.bf │ ├── AutoCompletePanel.bf │ ├── BinaryDataWidget.bf │ ├── BookmarksPanel.bf │ ├── BoundCheckbox.bf │ ├── BreakpointPanel.bf │ ├── BuildPropertiesDialog.bf │ ├── CallStackPanel.bf │ ├── ClassViewPanel.bf │ ├── ConditionDialog.bf │ ├── ConsolePanel.bf │ ├── DiagnosticsPanel.bf │ ├── DisassemblyPanel.bf │ ├── ErrorsPanel.bf │ ├── FileChangedDialog.bf │ ├── FindAndReplaceDialog.bf │ ├── FindClassDialog.bf │ ├── FindResultsPanel.bf │ ├── GenerateDialog.bf │ ├── GoToAddressDialog.bf │ ├── GoToLineDialog.bf │ ├── HoverWatch.bf │ ├── IDEDialog.bf │ ├── IDEListView.bf │ ├── ImmediatePanel.bf │ ├── ImmediateWidget.bf │ ├── InstalledProjectDialog.bf │ ├── LaunchDialog.bf │ ├── LeakWidget.bf │ ├── LocatorAnim.bf │ ├── MainFrame.bf │ ├── MemoryPanel.bf │ ├── ModulePanel.bf │ ├── MultiSelectDialog.bf │ ├── NavigationBar.bf │ ├── NewBreakpointDialog.bf │ ├── NewProjectDialog.bf │ ├── OpenFileInSolutionDialog.bf │ ├── OutputPanel.bf │ ├── OutputWidget.bf │ ├── Panel.bf │ ├── PanelHeader.bf │ ├── PanelPopup.bf │ ├── PanelSplitter.bf │ ├── PathEditWidget.bf │ ├── PersistentTextPosition.bf │ ├── ProfileDialog.bf │ ├── ProfilePanel.bf │ ├── ProjectPanel.bf │ ├── ProjectProperties.bf │ ├── PropertiesDialog.bf │ ├── PropertiesPanel.bf │ ├── QuickFind.bf │ ├── QuickWatchDialog.bf │ ├── RecentFileSelector.bf │ ├── RemoteProjectDialog.bf │ ├── RenameSymbolDialog.bf │ ├── SettingsDialog.bf │ ├── SingleLineEditWidget.bf │ ├── SourceEditWidgetContent.bf │ ├── SourceViewPanel.bf │ ├── StartupPanel.bf │ ├── StatusBar.bf │ ├── TargetedPropertiesDialog.bf │ ├── TerminalPanel.bf │ ├── TextPanel.bf │ ├── ThreadPanel.bf │ ├── ToggleButton.bf │ ├── Tooltip.bf │ ├── TypeWildcardEditWidget.bf │ ├── VirtualListView.bf │ ├── WatchPanel.bf │ ├── WelcomePanel.bf │ ├── WorkspaceProperties.bf │ └── WrappedMenuValue.bf │ └── util │ ├── BfLog.bf │ ├── ConsoleProvider.bf │ ├── DefinesSet.bf │ ├── GitManager.bf │ ├── GlobalUndoManager.bf │ ├── PackMan.bf │ ├── RecentFiles.bf │ ├── ResourceGen.bf │ ├── SemVer.bf │ ├── SettingHistoryManager.bf │ ├── SourceHash.bf │ ├── TargetTriple.bf │ └── VerSpec.bf ├── IDEHelper ├── Backend │ ├── BeCOFFObject.cpp │ ├── BeCOFFObject.h │ ├── BeContext.cpp │ ├── BeContext.h │ ├── BeDbgModule.h │ ├── BeIRCodeGen.cpp │ ├── BeIRCodeGen.h │ ├── BeLibManger.cpp │ ├── BeLibManger.h │ ├── BeMCContext.cpp │ ├── BeMCContext.h │ ├── BeMCX86.h │ ├── BeModule.cpp │ └── BeModule.h ├── Beef │ ├── BfCommon.cpp │ └── BfCommon.h ├── BeefProj.toml ├── BfDiff.cpp ├── BumpList.h ├── CMakeLists.txt ├── COFF.cpp ├── COFF.h ├── COFFData.h ├── CPU.h ├── Clang │ ├── CDepChecker.cpp │ ├── CDepChecker.h │ ├── ClangHelper.cpp │ └── ClangHelper.h ├── Compiler │ ├── BfAst.cpp │ ├── BfAst.h │ ├── BfAstAllocator.cpp │ ├── BfAstAllocator.h │ ├── BfAutoComplete.cpp │ ├── BfAutoComplete.h │ ├── BfCodeGen.cpp │ ├── BfCodeGen.h │ ├── BfCompiler.cpp │ ├── BfCompiler.h │ ├── BfConstResolver.cpp │ ├── BfConstResolver.h │ ├── BfContext.cpp │ ├── BfContext.h │ ├── BfDefBuilder.cpp │ ├── BfDefBuilder.h │ ├── BfDeferEvalChecker.cpp │ ├── BfDeferEvalChecker.h │ ├── BfDemangler.cpp │ ├── BfDemangler.h │ ├── BfElementVisitor.cpp │ ├── BfElementVisitor.h │ ├── BfExprEvaluator.cpp │ ├── BfExprEvaluator.h │ ├── BfFixits.h │ ├── BfIRBuilder.cpp │ ├── BfIRBuilder.h │ ├── BfIRCodeGen.cpp │ ├── BfIRCodeGen.h │ ├── BfMangler.cpp │ ├── BfMangler.h │ ├── BfModule.cpp │ ├── BfModule.h │ ├── BfModuleTypeUtils.cpp │ ├── BfNamespaceVisitor.cpp │ ├── BfNamespaceVisitor.h │ ├── BfParser.cpp │ ├── BfParser.h │ ├── BfPrinter.cpp │ ├── BfPrinter.h │ ├── BfReducer.cpp │ ├── BfReducer.h │ ├── BfResolvePass.cpp │ ├── BfResolvePass.h │ ├── BfResolvedTypeUtils.cpp │ ├── BfResolvedTypeUtils.h │ ├── BfSource.cpp │ ├── BfSource.h │ ├── BfSourceClassifier.cpp │ ├── BfSourceClassifier.h │ ├── BfSourcePositionFinder.cpp │ ├── BfSourcePositionFinder.h │ ├── BfStmtEvaluator.cpp │ ├── BfSystem.cpp │ ├── BfSystem.h │ ├── BfTargetTriple.cpp │ ├── BfTargetTriple.h │ ├── BfType.h │ ├── BfUtil.cpp │ ├── BfUtil.h │ ├── BfVarDeclChecker.cpp │ ├── BfVarDeclChecker.h │ ├── CeDebugger.cpp │ ├── CeDebugger.h │ ├── CeMachine.cpp │ ├── CeMachine.h │ ├── MemReporter.cpp │ └── MemReporter.h ├── DWARFInfo.h ├── DbgEvalPool.cpp ├── DbgEvalPool.h ├── DbgExprEvaluator.cpp ├── DbgExprEvaluator.h ├── DbgMiniDump.cpp ├── DbgMiniDump.h ├── DbgModule.cpp ├── DbgModule.h ├── DbgSymSrv.cpp ├── DbgSymSrv.h ├── DbgTypeMap.cpp ├── DbgTypeMap.h ├── DebugCommon.h ├── DebugManager.cpp ├── DebugManager.h ├── DebugTarget.cpp ├── DebugTarget.h ├── DebugVisualizers.cpp ├── DebugVisualizers.h ├── Debugger.cpp ├── Debugger.h ├── DwAutoComplete.h ├── HandleDbg.cpp ├── HandleDbg.h ├── HotHeap.cpp ├── HotHeap.h ├── HotScanner.cpp ├── HotScanner.h ├── IDEHelper.vcxproj ├── IDEHelper.vcxproj.filters ├── IDEHelper.vcxproj.user ├── LLVMUtils.h ├── Linker │ ├── BlCodeView.cpp │ ├── BlCodeView.h │ ├── BlContext.cpp │ ├── BlContext.h │ ├── BlCvParser.cpp │ ├── BlCvParser.h │ ├── BlCvTypeSource.cpp │ ├── BlCvTypeSource.h │ ├── BlHash.cpp │ ├── BlHash.h │ ├── BlMsf.cpp │ ├── BlMsf.h │ ├── BlPdbParser.cpp │ ├── BlPdbParser.h │ ├── BlSymTable.cpp │ └── BlSymTable.h ├── LinuxDebugger.cpp ├── LinuxDebugger.h ├── MiniDumpDebugger.cpp ├── MiniDumpDebugger.h ├── NetManager.cpp ├── NetManager.h ├── Profiler.cpp ├── Profiler.h ├── RadixMap.h ├── SpellChecker.cpp ├── StrBloomMap.h ├── StrHashMap.h ├── Targets.cpp ├── Tests │ ├── BeefLinq │ │ ├── BeefSpace.toml │ │ └── src │ │ │ ├── BeefProj.toml │ │ │ ├── src │ │ │ └── Enumerable.bf │ │ │ └── test │ │ │ ├── BeefProj.toml │ │ │ └── src │ │ │ └── EnumerableTests.bf │ ├── BeefProj.toml │ ├── BeefSpace.toml │ ├── CLib │ │ ├── CLib.sln │ │ ├── CLib.vcxproj │ │ ├── CLib.vcxproj.filters │ │ └── main.cpp │ ├── LibA │ │ ├── BeefProj.toml │ │ └── src │ │ │ └── LibA0.bf │ ├── LibB │ │ ├── BeefProj.toml │ │ └── src │ │ │ └── LibB0.bf │ ├── LibC │ │ ├── BeefProj.toml │ │ └── src │ │ │ └── LibC0.bf │ ├── Test0.txt │ ├── TestsB │ │ ├── BeefProj.toml │ │ └── src │ │ │ ├── Program.bf │ │ │ └── TestsB0.bf │ ├── scripts │ │ ├── PlatformChange.txt │ │ └── Reify.txt │ └── src │ │ ├── Aliases.bf │ │ ├── Anonymous.bf │ │ ├── Append.bf │ │ ├── Arrays.bf │ │ ├── Bitfields.bf │ │ ├── Boxing.bf │ │ ├── Cascades.bf │ │ ├── Comptime.bf │ │ ├── ConstEval.bf │ │ ├── ConstExprs.bf │ │ ├── Constraints.bf │ │ ├── Defaults.bf │ │ ├── Delegates.bf │ │ ├── Enums.bf │ │ ├── Expressions.bf │ │ ├── ExtensionMethods.bf │ │ ├── Extensions.bf │ │ ├── Floats.bf │ │ ├── FuncRefs.bf │ │ ├── Functions.bf │ │ ├── Generics.bf │ │ ├── Generics2.bf │ │ ├── Globals.bf │ │ ├── Helper.bf │ │ ├── Indexers.bf │ │ ├── Initializers.bf │ │ ├── Interfaces.bf │ │ ├── Interop.bf │ │ ├── Ints.bf │ │ ├── Lambdas.bf │ │ ├── LocalFunctions.bf │ │ ├── Lookups.bf │ │ ├── Loops.bf │ │ ├── MethodCalls.bf │ │ ├── MethodSelection.bf │ │ ├── Mixins.bf │ │ ├── NullConditional.bf │ │ ├── Nullable.bf │ │ ├── Numerics.bf │ │ ├── Objects.bf │ │ ├── Opaques.bf │ │ ├── Operators.bf │ │ ├── Params.bf │ │ ├── Precedence.bf │ │ ├── Program.bf │ │ ├── Properties.bf │ │ ├── Reflection.bf │ │ ├── Reflection2.bf │ │ ├── Scopes.bf │ │ ├── SizedArrays.bf │ │ ├── Spaceship.bf │ │ ├── Strings.bf │ │ ├── StructInit.bf │ │ ├── Structs.bf │ │ ├── Switches.bf │ │ ├── TrackedAlloc.bf │ │ ├── Tuples.bf │ │ ├── TypeLookup.bf │ │ ├── Unions.bf │ │ ├── UsingField.bf │ │ ├── UsingStatic.bf │ │ ├── VarArgs.bf │ │ └── Virtuals.bf ├── VSSupport.cpp ├── WinDebugger.cpp ├── WinDebugger.h ├── X64.cpp ├── X64.h ├── X86.cpp ├── X86.h ├── X86InstrInfo.h ├── X86Target.cpp ├── X86Target.h ├── X86XmmInfo.cpp ├── dbg.txt └── third_party │ └── FtsFuzzyMatch.h ├── LICENSE.TXT ├── LICENSES.TXT ├── README.md ├── bin ├── AeDebug.reg ├── Beef.natvis ├── Beefy.natvis ├── BfAeDebug.exe ├── ForegroundLockTimeout.reg ├── OpenFileLine.exe ├── RunAndWait.exe ├── RunWithStats.exe ├── WER.reg ├── WasmLaunch.exe ├── build.bat ├── build.sh ├── build_android.bat ├── build_ios.sh ├── build_rt.bat ├── build_rt.sh ├── cloc_all.bat ├── curl.exe ├── ios.toolchain.cmake ├── linecount.bat ├── makeinstall.bat ├── miniserve.exe ├── msbuild.bat ├── tar.exe ├── test_build.bat ├── test_ide.bat ├── vswhere.exe └── xcopy_exclude_build.txt ├── extern ├── curl │ ├── builds │ │ └── libcurl-vc15-x64-release-static-zlib-static-ipv6-sspi-winssl │ │ │ ├── include │ │ │ └── curl │ │ │ │ ├── curl.h │ │ │ │ ├── curlver.h │ │ │ │ ├── easy.h │ │ │ │ ├── mprintf.h │ │ │ │ ├── multi.h │ │ │ │ ├── stdcheaders.h │ │ │ │ ├── system.h │ │ │ │ └── typecheck-gcc.h │ │ │ └── lib │ │ │ ├── libcurl_a.lib │ │ │ └── zlib_a.pdb │ └── winbuild │ │ ├── Makefile.vc │ │ ├── MakefileBuild.vc │ │ └── build.bat ├── hunspell │ ├── AUTHORS │ ├── AUTHORS.myspell │ ├── BUGS │ ├── CMakeLists.txt │ ├── COPYING │ ├── COPYING.LGPL │ ├── COPYING.MPL │ ├── NEWS │ ├── README │ ├── THANKS │ ├── intl │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── VERSION │ │ ├── bindtextdom.c │ │ ├── config.charset │ │ ├── dcgettext.c │ │ ├── dcigettext.c │ │ ├── dcngettext.c │ │ ├── dgettext.c │ │ ├── dngettext.c │ │ ├── eval-plural.h │ │ ├── explodename.c │ │ ├── export.h │ │ ├── finddomain.c │ │ ├── gettext.c │ │ ├── gettextP.h │ │ ├── gmo.h │ │ ├── hash-string.c │ │ ├── hash-string.h │ │ ├── intl-compat.c │ │ ├── intl-exports.c │ │ ├── l10nflist.c │ │ ├── langprefs.c │ │ ├── libgnuintl.h.in │ │ ├── libintl.rc │ │ ├── loadinfo.h │ │ ├── loadmsgcat.c │ │ ├── localcharset.c │ │ ├── localcharset.h │ │ ├── locale.alias │ │ ├── localealias.c │ │ ├── localename.c │ │ ├── lock.c │ │ ├── lock.h │ │ ├── log.c │ │ ├── ngettext.c │ │ ├── os2compat.c │ │ ├── os2compat.h │ │ ├── osdep.c │ │ ├── plural-exp.c │ │ ├── plural-exp.h │ │ ├── plural.c │ │ ├── plural.y │ │ ├── printf-args.c │ │ ├── printf-args.h │ │ ├── printf-parse.c │ │ ├── printf-parse.h │ │ ├── printf.c │ │ ├── ref-add.sin │ │ ├── ref-del.sin │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ ├── textdomain.c │ │ ├── tsearch.c │ │ ├── tsearch.h │ │ ├── vasnprintf.c │ │ ├── vasnprintf.h │ │ ├── vasnwprintf.h │ │ ├── version.c │ │ ├── wprintf-parse.h │ │ └── xsize.h │ ├── license.hunspell │ ├── license.myspell │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hunspell │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── affentry.cxx │ │ ├── affentry.hxx │ │ ├── affixmgr.cxx │ │ ├── affixmgr.hxx │ │ ├── atypes.hxx │ │ ├── baseaffix.hxx │ │ ├── csutil.cxx │ │ ├── csutil.hxx │ │ ├── dictmgr.cxx │ │ ├── dictmgr.hxx │ │ ├── filemgr.cxx │ │ ├── filemgr.hxx │ │ ├── hashmgr.cxx │ │ ├── hashmgr.hxx │ │ ├── htypes.hxx │ │ ├── hunspell.cxx │ │ ├── hunspell.dsp │ │ ├── hunspell.h │ │ ├── hunspell.hxx │ │ ├── hunvisapi.h │ │ ├── hunvisapi.h.in │ │ ├── hunzip.cxx │ │ ├── hunzip.hxx │ │ ├── langnum.hxx │ │ ├── license.hunspell │ │ ├── license.myspell │ │ ├── makefile.mk │ │ ├── phonet.cxx │ │ ├── phonet.hxx │ │ ├── replist.cxx │ │ ├── replist.hxx │ │ ├── suggestmgr.cxx │ │ ├── suggestmgr.hxx │ │ ├── utf_info.cxx │ │ └── w_char.hxx │ │ ├── linux │ │ └── config.h │ │ └── win_api │ │ ├── Hunspell.rc │ │ ├── Makefile.am │ │ ├── Makefile.cygwin │ │ ├── Makefile.in │ │ ├── config.h │ │ ├── hunspelldll.c │ │ ├── hunspelldll.dev │ │ ├── hunspelldll.h │ │ ├── libhunspell.vcproj │ │ ├── libhunspell.vcxproj │ │ ├── libhunspell.vcxproj.filters │ │ └── libhunspell.vcxproj.user ├── llvm_build.bat ├── llvm_build.sh ├── llvm_targets.txt └── toml │ ├── LICENSE │ └── toml.h ├── qthelper.py ├── readme.txt └── wasm ├── build_wasm.bat └── fetch_wasm.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/.gitignore -------------------------------------------------------------------------------- /Beef.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/Beef.sln -------------------------------------------------------------------------------- /BeefBoot/BeefBoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBoot/BeefBoot.cpp -------------------------------------------------------------------------------- /BeefBoot/BeefBoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBoot/BeefBoot.h -------------------------------------------------------------------------------- /BeefBoot/BeefBoot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBoot/BeefBoot.vcxproj -------------------------------------------------------------------------------- /BeefBoot/BootApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBoot/BootApp.cpp -------------------------------------------------------------------------------- /BeefBoot/BootApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBoot/BootApp.h -------------------------------------------------------------------------------- /BeefBoot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBoot/CMakeLists.txt -------------------------------------------------------------------------------- /BeefBuild/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBuild/BeefProj.toml -------------------------------------------------------------------------------- /BeefBuild/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBuild/BeefSpace.toml -------------------------------------------------------------------------------- /BeefBuild/src/BuildApp.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBuild/src/BuildApp.bf -------------------------------------------------------------------------------- /BeefBuild/src/Program.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefBuild/src/Program.bf -------------------------------------------------------------------------------- /BeefFuzz/BeefFuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefFuzz/BeefFuzz.cpp -------------------------------------------------------------------------------- /BeefFuzz/BeefFuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefFuzz/BeefFuzz.h -------------------------------------------------------------------------------- /BeefFuzz/BeefFuzz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefFuzz/BeefFuzz.vcxproj -------------------------------------------------------------------------------- /BeefFuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefFuzz/CMakeLists.txt -------------------------------------------------------------------------------- /BeefFuzz/FuzzApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefFuzz/FuzzApp.cpp -------------------------------------------------------------------------------- /BeefFuzz/FuzzApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefFuzz/FuzzApp.h -------------------------------------------------------------------------------- /BeefLibs/Beefy2D/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/Beefy2D/BeefProj.toml -------------------------------------------------------------------------------- /BeefLibs/Beefy2D/dist/holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefLibs/Beefy2D/src/BFApp.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/Beefy2D/src/BFApp.bf -------------------------------------------------------------------------------- /BeefLibs/Beefy2D/src/Rand.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/Beefy2D/src/Rand.bf -------------------------------------------------------------------------------- /BeefLibs/Beefy2D/src/Utils.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/Beefy2D/src/Utils.bf -------------------------------------------------------------------------------- /BeefLibs/FMOD/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/FMOD/BeefProj.toml -------------------------------------------------------------------------------- /BeefLibs/FMOD/src/FMod.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/FMOD/src/FMod.bf -------------------------------------------------------------------------------- /BeefLibs/FMOD/src/FMod_DSP.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/FMOD/src/FMod_DSP.bf -------------------------------------------------------------------------------- /BeefLibs/MiniZ/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/MiniZ/BeefProj.toml -------------------------------------------------------------------------------- /BeefLibs/MiniZ/src/Zip.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/MiniZ/src/Zip.bf -------------------------------------------------------------------------------- /BeefLibs/SDL2/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/BeefProj.toml -------------------------------------------------------------------------------- /BeefLibs/SDL2/dist/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/dist/README.txt -------------------------------------------------------------------------------- /BeefLibs/SDL2/dist/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/dist/SDL2.dll -------------------------------------------------------------------------------- /BeefLibs/SDL2/dist/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/dist/SDL2.lib -------------------------------------------------------------------------------- /BeefLibs/SDL2/dist/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/dist/SDL2_ttf.dll -------------------------------------------------------------------------------- /BeefLibs/SDL2/dist/SDL2_ttf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/dist/SDL2_ttf.lib -------------------------------------------------------------------------------- /BeefLibs/SDL2/dist/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/dist/libogg-0.dll -------------------------------------------------------------------------------- /BeefLibs/SDL2/dist/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/dist/zlib1.dll -------------------------------------------------------------------------------- /BeefLibs/SDL2/src/BitmapFont.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/src/BitmapFont.bf -------------------------------------------------------------------------------- /BeefLibs/SDL2/src/SDL2.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/src/SDL2.bf -------------------------------------------------------------------------------- /BeefLibs/SDL2/src/SDL2_image.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/src/SDL2_image.bf -------------------------------------------------------------------------------- /BeefLibs/SDL2/src/SDL2_mixer.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/src/SDL2_mixer.bf -------------------------------------------------------------------------------- /BeefLibs/SDL2/src/SDL2_ttf.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/src/SDL2_ttf.bf -------------------------------------------------------------------------------- /BeefLibs/SDL2/src/SDLApp.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/SDL2/src/SDLApp.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/BeefProj.toml -------------------------------------------------------------------------------- /BeefLibs/corlib/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/BeefSpace.toml -------------------------------------------------------------------------------- /BeefLibs/corlib/cpp/sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/cpp/sys.cpp -------------------------------------------------------------------------------- /BeefLibs/corlib/main.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/main.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Array.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Array.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Bitfield.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Bitfield.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Boolean.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Boolean.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Char16.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Char16.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Char32.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Char32.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Char8.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Char8.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Compiler.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Compiler.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Console.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Console.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/DateTime.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/DateTime.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Delegate.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Delegate.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Double.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Double.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Enum.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Enum.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Event.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Event.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Float.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Float.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/GC.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/GC.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Guid.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Guid.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/HashCode.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/HashCode.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/IO/File.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/IO/File.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/IO/Path.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/IO/Path.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/IO/Pipe.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/IO/Pipe.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/IO/SearchOption.bf: -------------------------------------------------------------------------------- 1 | namespace System.IO 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /BeefLibs/corlib/src/IO/Shell.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/IO/Shell.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Int.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Int.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Int16.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Int16.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Int32.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Int32.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Int64.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Int64.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Int8.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Int8.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Internal.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Internal.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Interop.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Interop.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Lazy.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Lazy.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Linux.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Linux.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Math.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Math.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Native.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Native.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Nullable.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Nullable.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Object.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Object.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Platform.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Platform.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Pointer.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Pointer.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Predicate.bf: -------------------------------------------------------------------------------- 1 | namespace System 2 | { 3 | delegate bool Predicate(T val); 4 | } 5 | -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Random.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Random.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Range.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Range.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Result.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Result.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Runtime.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Runtime.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Span.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Span.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/String.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/String.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/System.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/System.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Test.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Test.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/TimeSpan.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/TimeSpan.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Tuple.bf: -------------------------------------------------------------------------------- 1 | namespace System; 2 | 3 | struct Tuple 4 | { 5 | } -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Type.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Type.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/UInt.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/UInt.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/UInt16.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/UInt16.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/UInt32.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/UInt32.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/UInt64.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/UInt64.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/UInt8.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/UInt8.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Variant.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Variant.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Version.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Version.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Void.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Void.bf -------------------------------------------------------------------------------- /BeefLibs/corlib/src/Windows.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/corlib/src/Windows.bf -------------------------------------------------------------------------------- /BeefLibs/curl/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/curl/BeefProj.toml -------------------------------------------------------------------------------- /BeefLibs/curl/src/Curl.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/curl/src/Curl.bf -------------------------------------------------------------------------------- /BeefLibs/curl/src/Transfer.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/curl/src/Transfer.bf -------------------------------------------------------------------------------- /BeefLibs/libgit2/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/libgit2/BeefProj.toml -------------------------------------------------------------------------------- /BeefLibs/libgit2/src/Git.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLibs/libgit2/src/Git.bf -------------------------------------------------------------------------------- /BeefLink/BeefLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLink/BeefLink.cpp -------------------------------------------------------------------------------- /BeefLink/BeefLink.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefLink/BeefLink.vcxproj -------------------------------------------------------------------------------- /BeefManaged/BeefManaged.toml: -------------------------------------------------------------------------------- 1 | FileVersion = 1 -------------------------------------------------------------------------------- /BeefRT/BeefDbg/BeefDbg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/BeefDbg/BeefDbg.vcxproj -------------------------------------------------------------------------------- /BeefRT/BeefRT.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/BeefRT.def -------------------------------------------------------------------------------- /BeefRT/BeefRT.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/BeefRT.props -------------------------------------------------------------------------------- /BeefRT/BeefRT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/BeefRT.vcxproj -------------------------------------------------------------------------------- /BeefRT/BeefRT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/BeefRT.vcxproj.filters -------------------------------------------------------------------------------- /BeefRT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/CMakeLists.txt -------------------------------------------------------------------------------- /BeefRT/JEMalloc/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/.appveyor.yml -------------------------------------------------------------------------------- /BeefRT/JEMalloc/.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/.autom4te.cfg -------------------------------------------------------------------------------- /BeefRT/JEMalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/COPYING -------------------------------------------------------------------------------- /BeefRT/JEMalloc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/INSTALL.md -------------------------------------------------------------------------------- /BeefRT/JEMalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/Makefile.in -------------------------------------------------------------------------------- /BeefRT/JEMalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/README -------------------------------------------------------------------------------- /BeefRT/JEMalloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/VERSION -------------------------------------------------------------------------------- /BeefRT/JEMalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/autogen.sh -------------------------------------------------------------------------------- /BeefRT/JEMalloc/bin/jeprof.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/bin/jeprof.in -------------------------------------------------------------------------------- /BeefRT/JEMalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/configure.ac -------------------------------------------------------------------------------- /BeefRT/JEMalloc/jemalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/jemalloc.pc.in -------------------------------------------------------------------------------- /BeefRT/JEMalloc/jemalloc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/jemalloc.sln -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/arena.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/base.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/bin.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/bin_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/bin_info.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/bitmap.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/cache_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/cache_bin.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/ckh.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/counter.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/ctl.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/decay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/decay.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/div.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/ecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/ecache.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/edata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/edata.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/ehooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/ehooks.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/emap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/emap.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/eset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/eset.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/exp_grow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/exp_grow.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/extent.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/fxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/fxp.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/hook.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/hpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/hpa.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/hpa_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/hpa_hooks.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/hpdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/hpdata.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/inspect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/inspect.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/jemalloc.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/large.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/log.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/malloc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/malloc_io.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/mutex.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/nstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/nstime.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/pa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/pa.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/pa_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/pa_extra.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/pac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/pac.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/pages.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/pai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/pai.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/prof.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/prof_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/prof_data.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/prof_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/prof_log.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/prof_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/prof_sys.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/psset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/psset.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/rtree.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/san.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/san.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/san_bump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/san_bump.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/sc.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/sec.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/stats.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/sz.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/tcache.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/ticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/ticker.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/ticker.py -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/tsd.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/witness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/witness.c -------------------------------------------------------------------------------- /BeefRT/JEMalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/JEMalloc/src/zone.c -------------------------------------------------------------------------------- /BeefRT/MinRT/MinRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/MinRT/MinRT.cpp -------------------------------------------------------------------------------- /BeefRT/MinRT/MinRT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/MinRT/MinRT.vcxproj -------------------------------------------------------------------------------- /BeefRT/TCMalloc/TCMalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/TCMalloc/TCMalloc.cpp -------------------------------------------------------------------------------- /BeefRT/dbg/DbgInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/dbg/DbgInternal.cpp -------------------------------------------------------------------------------- /BeefRT/dbg/DbgThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/dbg/DbgThread.cpp -------------------------------------------------------------------------------- /BeefRT/dbg/DbgThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/dbg/DbgThread.h -------------------------------------------------------------------------------- /BeefRT/dbg/dbgmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/dbg/dbgmain.cpp -------------------------------------------------------------------------------- /BeefRT/dbg/gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/dbg/gc.cpp -------------------------------------------------------------------------------- /BeefRT/dbg/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/dbg/gc.h -------------------------------------------------------------------------------- /BeefRT/dbg/gc_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/dbg/gc_raw.cpp -------------------------------------------------------------------------------- /BeefRT/gperftools/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/AUTHORS -------------------------------------------------------------------------------- /BeefRT/gperftools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/COPYING -------------------------------------------------------------------------------- /BeefRT/gperftools/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/ChangeLog -------------------------------------------------------------------------------- /BeefRT/gperftools/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/INSTALL -------------------------------------------------------------------------------- /BeefRT/gperftools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/LICENSE -------------------------------------------------------------------------------- /BeefRT/gperftools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/Makefile.am -------------------------------------------------------------------------------- /BeefRT/gperftools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/Makefile.in -------------------------------------------------------------------------------- /BeefRT/gperftools/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/NEWS -------------------------------------------------------------------------------- /BeefRT/gperftools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/README -------------------------------------------------------------------------------- /BeefRT/gperftools/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/TODO -------------------------------------------------------------------------------- /BeefRT/gperftools/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/aclocal.m4 -------------------------------------------------------------------------------- /BeefRT/gperftools/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/compile -------------------------------------------------------------------------------- /BeefRT/gperftools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/config.guess -------------------------------------------------------------------------------- /BeefRT/gperftools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/config.sub -------------------------------------------------------------------------------- /BeefRT/gperftools/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/configure -------------------------------------------------------------------------------- /BeefRT/gperftools/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/configure.ac -------------------------------------------------------------------------------- /BeefRT/gperftools/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/depcomp -------------------------------------------------------------------------------- /BeefRT/gperftools/doc/pprof.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/doc/pprof.1 -------------------------------------------------------------------------------- /BeefRT/gperftools/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/install-sh -------------------------------------------------------------------------------- /BeefRT/gperftools/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/libtool -------------------------------------------------------------------------------- /BeefRT/gperftools/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/ltmain.sh -------------------------------------------------------------------------------- /BeefRT/gperftools/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/m4/libtool.m4 -------------------------------------------------------------------------------- /BeefRT/gperftools/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/m4/ltsugar.m4 -------------------------------------------------------------------------------- /BeefRT/gperftools/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/missing -------------------------------------------------------------------------------- /BeefRT/gperftools/packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /BeefRT/gperftools/packages/deb/libgperftools0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/bin 3 | -------------------------------------------------------------------------------- /BeefRT/gperftools/packages/deb/libgperftools0.manpages: -------------------------------------------------------------------------------- 1 | doc/pprof.1 2 | -------------------------------------------------------------------------------- /BeefRT/gperftools/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/src/common.h -------------------------------------------------------------------------------- /BeefRT/gperftools/src/getpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/src/getpc.h -------------------------------------------------------------------------------- /BeefRT/gperftools/src/pagemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/src/pagemap.h -------------------------------------------------------------------------------- /BeefRT/gperftools/src/pprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/src/pprof -------------------------------------------------------------------------------- /BeefRT/gperftools/src/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/src/sampler.h -------------------------------------------------------------------------------- /BeefRT/gperftools/src/span.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/src/span.cc -------------------------------------------------------------------------------- /BeefRT/gperftools/src/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/src/span.h -------------------------------------------------------------------------------- /BeefRT/gperftools/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/gperftools/test-driver -------------------------------------------------------------------------------- /BeefRT/rt/BfObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/BfObjects.h -------------------------------------------------------------------------------- /BeefRT/rt/Chars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/Chars.cpp -------------------------------------------------------------------------------- /BeefRT/rt/Internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/Internal.cpp -------------------------------------------------------------------------------- /BeefRT/rt/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/Math.cpp -------------------------------------------------------------------------------- /BeefRT/rt/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/Object.cpp -------------------------------------------------------------------------------- /BeefRT/rt/StompAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/StompAlloc.cpp -------------------------------------------------------------------------------- /BeefRT/rt/StompAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/StompAlloc.h -------------------------------------------------------------------------------- /BeefRT/rt/Test.cpp: -------------------------------------------------------------------------------- 1 | int TestO() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /BeefRT/rt/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/Thread.cpp -------------------------------------------------------------------------------- /BeefRT/rt/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/Thread.h -------------------------------------------------------------------------------- /BeefRT/rt/ThreadLocalStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefRT/rt/ThreadLocalStorage.h -------------------------------------------------------------------------------- /BeefTools/BeefCon/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BeefCon/BeefProj.toml -------------------------------------------------------------------------------- /BeefTools/BeefMem/BeefMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BeefMem/BeefMem.cpp -------------------------------------------------------------------------------- /BeefTools/BeefMem/gperftools/packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /BeefTools/BeefMem/gperftools/packages/deb/libgperftools0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/bin 3 | -------------------------------------------------------------------------------- /BeefTools/BeefMem/gperftools/packages/deb/libgperftools0.manpages: -------------------------------------------------------------------------------- 1 | doc/pprof.1 2 | -------------------------------------------------------------------------------- /BeefTools/BeefPerf/src/BPApp.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BeefPerf/src/BPApp.bf -------------------------------------------------------------------------------- /BeefTools/BeefPerf/src/Board.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BeefPerf/src/Board.bf -------------------------------------------------------------------------------- /BeefTools/BfAeDebug/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BfAeDebug/App.config -------------------------------------------------------------------------------- /BeefTools/BfAeDebug/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BfAeDebug/Form1.cs -------------------------------------------------------------------------------- /BeefTools/BfAeDebug/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BfAeDebug/Form1.resx -------------------------------------------------------------------------------- /BeefTools/BfAeDebug/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/BfAeDebug/Program.cs -------------------------------------------------------------------------------- /BeefTools/DocPrep/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/DocPrep/BeefProj.toml -------------------------------------------------------------------------------- /BeefTools/LogViewer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/LogViewer/icon.png -------------------------------------------------------------------------------- /BeefTools/MemProfiler/Board.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/MemProfiler/Board.bf -------------------------------------------------------------------------------- /BeefTools/MemProfiler/FMod.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/MemProfiler/FMod.bf -------------------------------------------------------------------------------- /BeefTools/MemProfiler/Images.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/MemProfiler/Images.bf -------------------------------------------------------------------------------- /BeefTools/MemProfiler/MPApp.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/MemProfiler/MPApp.bf -------------------------------------------------------------------------------- /BeefTools/MemProfiler/Perlin.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/MemProfiler/Perlin.bf -------------------------------------------------------------------------------- /BeefTools/TestDLL/TestDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/TestDLL/TestDLL.cpp -------------------------------------------------------------------------------- /BeefTools/TestDLL/TestDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/TestDLL/TestDLL.h -------------------------------------------------------------------------------- /BeefTools/TestDLL/TestDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/TestDLL/TestDLL.sln -------------------------------------------------------------------------------- /BeefTools/TestDLL/TestDLL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/TestDLL/TestDLL2.cpp -------------------------------------------------------------------------------- /BeefTools/TestDLL/store.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefTools/TestDLL/store.bat -------------------------------------------------------------------------------- /BeefySysLib/BFApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BFApp.cpp -------------------------------------------------------------------------------- /BeefySysLib/BFApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BFApp.h -------------------------------------------------------------------------------- /BeefySysLib/BFSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BFSound.cpp -------------------------------------------------------------------------------- /BeefySysLib/BFSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BFSound.h -------------------------------------------------------------------------------- /BeefySysLib/BFWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BFWindow.cpp -------------------------------------------------------------------------------- /BeefySysLib/BFWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BFWindow.h -------------------------------------------------------------------------------- /BeefySysLib/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BeefProj.toml -------------------------------------------------------------------------------- /BeefySysLib/BeefySysLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BeefySysLib.cpp -------------------------------------------------------------------------------- /BeefySysLib/BeefySysLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/BeefySysLib.vcxproj -------------------------------------------------------------------------------- /BeefySysLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/CMakeLists.txt -------------------------------------------------------------------------------- /BeefySysLib/CachedDataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/CachedDataStream.h -------------------------------------------------------------------------------- /BeefySysLib/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/Common.cpp -------------------------------------------------------------------------------- /BeefySysLib/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/Common.h -------------------------------------------------------------------------------- /BeefySysLib/DataStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/DataStream.cpp -------------------------------------------------------------------------------- /BeefySysLib/DataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/DataStream.h -------------------------------------------------------------------------------- /BeefySysLib/FileHandleStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/FileHandleStream.h -------------------------------------------------------------------------------- /BeefySysLib/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/FileStream.cpp -------------------------------------------------------------------------------- /BeefySysLib/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/FileStream.h -------------------------------------------------------------------------------- /BeefySysLib/HeadlessApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/HeadlessApp.cpp -------------------------------------------------------------------------------- /BeefySysLib/HeadlessApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/HeadlessApp.h -------------------------------------------------------------------------------- /BeefySysLib/MTRand.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/MemStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/MemStream.cpp -------------------------------------------------------------------------------- /BeefySysLib/MemStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/MemStream.h -------------------------------------------------------------------------------- /BeefySysLib/PerfTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/PerfTests.cpp -------------------------------------------------------------------------------- /BeefySysLib/ResLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/ResLib.cpp -------------------------------------------------------------------------------- /BeefySysLib/Span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/Span.h -------------------------------------------------------------------------------- /BeefySysLib/Startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/Startup.cpp -------------------------------------------------------------------------------- /BeefySysLib/fbx/FBXReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/fbx/FBXReader.cpp -------------------------------------------------------------------------------- /BeefySysLib/fbx/FBXReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/fbx/FBXReader.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/DrawLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/DrawLayer.cpp -------------------------------------------------------------------------------- /BeefySysLib/gfx/DrawLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/DrawLayer.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/FTFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/FTFont.cpp -------------------------------------------------------------------------------- /BeefySysLib/gfx/FTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/FTFont.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/Font.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | -------------------------------------------------------------------------------- /BeefySysLib/gfx/ModelDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/ModelDef.cpp -------------------------------------------------------------------------------- /BeefySysLib/gfx/ModelDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/ModelDef.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/ModelInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/ModelInstance.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/RenderCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/RenderCmd.cpp -------------------------------------------------------------------------------- /BeefySysLib/gfx/RenderCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/RenderCmd.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/RenderDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/RenderDevice.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/RenderTarget.cpp: -------------------------------------------------------------------------------- 1 | #include "RenderTarget.h" 2 | 3 | -------------------------------------------------------------------------------- /BeefySysLib/gfx/RenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/RenderTarget.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/Shader.cpp -------------------------------------------------------------------------------- /BeefySysLib/gfx/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/Shader.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/Texture.cpp -------------------------------------------------------------------------------- /BeefySysLib/gfx/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/Texture.h -------------------------------------------------------------------------------- /BeefySysLib/gfx/glTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/glTF.cpp -------------------------------------------------------------------------------- /BeefySysLib/gfx/glTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/gfx/glTF.h -------------------------------------------------------------------------------- /BeefySysLib/img/BFIData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/BFIData.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/BFIData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/BFIData.h -------------------------------------------------------------------------------- /BeefySysLib/img/BMPData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/BMPData.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/BMPData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/BMPData.h -------------------------------------------------------------------------------- /BeefySysLib/img/ImageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/ImageData.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/ImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/ImageData.h -------------------------------------------------------------------------------- /BeefySysLib/img/ImageUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/ImageUtils.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/ImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/ImageUtils.h -------------------------------------------------------------------------------- /BeefySysLib/img/ImgEffects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/ImgEffects.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/ImgEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/ImgEffects.h -------------------------------------------------------------------------------- /BeefySysLib/img/JPEGData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/JPEGData.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/JPEGData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/JPEGData.h -------------------------------------------------------------------------------- /BeefySysLib/img/PNGData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/PNGData.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/PNGData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/PNGData.h -------------------------------------------------------------------------------- /BeefySysLib/img/PSDReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/PSDReader.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/PSDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/PSDReader.h -------------------------------------------------------------------------------- /BeefySysLib/img/PVRData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/PVRData.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/PVRData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/PVRData.h -------------------------------------------------------------------------------- /BeefySysLib/img/TGAData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/TGAData.cpp -------------------------------------------------------------------------------- /BeefySysLib/img/TGAData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/img/TGAData.h -------------------------------------------------------------------------------- /BeefySysLib/platform/win/DDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/platform/win/DDS.h -------------------------------------------------------------------------------- /BeefySysLib/sound/WwiseSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/sound/WwiseSound.h -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/build_ios/include/ffitarget.h: -------------------------------------------------------------------------------- 1 | ../../src/arm/ffitarget.h -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/build_ios/local.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/build_ios/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for fficonfig.h 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/build_mac/local.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/build_simulator/include/ffitarget.h: -------------------------------------------------------------------------------- 1 | ../../src/x86/ffitarget.h -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/build_simulator/local.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/build_simulator/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for fficonfig.h 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/include/ffitarget.h: -------------------------------------------------------------------------------- 1 | #include "../../src/x86/ffitarget.h" -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.deps/closures.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.deps/debug.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.deps/java_raw_api.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.deps/prep_cif.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.deps/raw_api.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.deps/types.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/aarch64/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/aarch64/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/alpha/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/alpha/.deps/osf.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/arm/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/arm/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/arm/.deps/trampoline.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/avr32/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/avr32/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/bfin/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/bfin/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/cris/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/cris/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/frv/.deps/eabi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/frv/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/ia64/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/ia64/.deps/unix.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/m32r/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/m32r/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/m68k/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/m68k/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/metag/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/metag/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/microblaze/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/microblaze/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/mips/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/mips/.deps/n32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/mips/.deps/o32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/moxie/.deps/eabi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/moxie/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/pa/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/pa/.deps/hpux32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/pa/.deps/linux.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/aix.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/aix_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/darwin.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/darwin_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/ffi_darwin.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/linux64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/linux64_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/ppc_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/powerpc/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/s390/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/s390/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/sh/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/sh/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/sh64/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/sh64/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/sparc/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/sparc/.deps/v8.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/sparc/.deps/v9.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/tile/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/tile/.deps/tile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/darwin.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/darwin64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/ffi64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/freebsd.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/unix64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/win32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.deps/win64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/x86/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/xtensa/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/i686-pc-cygwin/src/xtensa/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/osx/include/ffi.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/osx/include/fficonfig.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /BeefySysLib/third_party/libffi/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /BeefySysLib/util/AllocDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/AllocDebug.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/AllocDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/AllocDebug.h -------------------------------------------------------------------------------- /BeefySysLib/util/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Array.h -------------------------------------------------------------------------------- /BeefySysLib/util/BSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/BSpline.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/BSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/BSpline.h -------------------------------------------------------------------------------- /BeefySysLib/util/BeefPerf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/BeefPerf.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/BeefPerf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/BeefPerf.h -------------------------------------------------------------------------------- /BeefySysLib/util/BinaryHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/BinaryHeap.h -------------------------------------------------------------------------------- /BeefySysLib/util/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/BitSet.h -------------------------------------------------------------------------------- /BeefySysLib/util/CabUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/CabUtil.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/CabUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/CabUtil.h -------------------------------------------------------------------------------- /BeefySysLib/util/CatmullRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/CatmullRom.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/CatmullRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/CatmullRom.h -------------------------------------------------------------------------------- /BeefySysLib/util/Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Compression.h -------------------------------------------------------------------------------- /BeefySysLib/util/CritSect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/CritSect.h -------------------------------------------------------------------------------- /BeefySysLib/util/CubicSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/CubicSpline.h -------------------------------------------------------------------------------- /BeefySysLib/util/DLIList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/DLIList.h -------------------------------------------------------------------------------- /BeefySysLib/util/Deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Deque.h -------------------------------------------------------------------------------- /BeefySysLib/util/Dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Dictionary.h -------------------------------------------------------------------------------- /BeefySysLib/util/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Hash.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Hash.h -------------------------------------------------------------------------------- /BeefySysLib/util/HashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/HashSet.h -------------------------------------------------------------------------------- /BeefySysLib/util/Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Heap.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Heap.h -------------------------------------------------------------------------------- /BeefySysLib/util/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Json.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Json.h -------------------------------------------------------------------------------- /BeefySysLib/util/MTRand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MTRand.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/MTRand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MTRand.h -------------------------------------------------------------------------------- /BeefySysLib/util/MappedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MappedFile.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/MappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MappedFile.h -------------------------------------------------------------------------------- /BeefySysLib/util/MathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MathUtils.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MathUtils.h -------------------------------------------------------------------------------- /BeefySysLib/util/Matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Matrix4.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/Matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Matrix4.h -------------------------------------------------------------------------------- /BeefySysLib/util/MemLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MemLogger.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/MemLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MemLogger.h -------------------------------------------------------------------------------- /BeefySysLib/util/MultiHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/MultiHashSet.h -------------------------------------------------------------------------------- /BeefySysLib/util/PerfTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/PerfTimer.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/PerfTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/PerfTimer.h -------------------------------------------------------------------------------- /BeefySysLib/util/Point.cpp: -------------------------------------------------------------------------------- 1 | //#include "Point.h" 2 | 3 | -------------------------------------------------------------------------------- /BeefySysLib/util/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Point.h -------------------------------------------------------------------------------- /BeefySysLib/util/PolySpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/PolySpline.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/PolySpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/PolySpline.h -------------------------------------------------------------------------------- /BeefySysLib/util/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Quaternion.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Quaternion.h -------------------------------------------------------------------------------- /BeefySysLib/util/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Queue.h -------------------------------------------------------------------------------- /BeefySysLib/util/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Rect.h -------------------------------------------------------------------------------- /BeefySysLib/util/SLIList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/SLIList.h -------------------------------------------------------------------------------- /BeefySysLib/util/SizedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/SizedArray.h -------------------------------------------------------------------------------- /BeefySysLib/util/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Sphere.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Sphere.h -------------------------------------------------------------------------------- /BeefySysLib/util/StackHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/StackHelper.h -------------------------------------------------------------------------------- /BeefySysLib/util/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/String.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/String.h -------------------------------------------------------------------------------- /BeefySysLib/util/TLSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/TLSingleton.h -------------------------------------------------------------------------------- /BeefySysLib/util/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/ThreadPool.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/ThreadPool.h -------------------------------------------------------------------------------- /BeefySysLib/util/UTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/UTF8.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/UTF8.h -------------------------------------------------------------------------------- /BeefySysLib/util/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Vector.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/Vector.h -------------------------------------------------------------------------------- /BeefySysLib/util/WorkThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/WorkThread.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/WorkThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/WorkThread.h -------------------------------------------------------------------------------- /BeefySysLib/util/ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/ZipFile.cpp -------------------------------------------------------------------------------- /BeefySysLib/util/ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/BeefySysLib/util/ZipFile.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Debugger32/Debugger32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/Debugger32/Debugger32.vcxproj -------------------------------------------------------------------------------- /Debugger64/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/Debugger64/BeefProj.toml -------------------------------------------------------------------------------- /Debugger64/Debugger64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/Debugger64/Debugger64.vcxproj -------------------------------------------------------------------------------- /IDE/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/BeefProj.toml -------------------------------------------------------------------------------- /IDE/BeefRT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/BeefRT.sln -------------------------------------------------------------------------------- /IDE/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/BeefSpace.toml -------------------------------------------------------------------------------- /IDE/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Properties/Resources.resx -------------------------------------------------------------------------------- /IDE/Resources/Beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Resources/Beef.png -------------------------------------------------------------------------------- /IDE/Resources/Beef256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Resources/Beef256.png -------------------------------------------------------------------------------- /IDE/Resources/IDE.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Resources/IDE.manifest -------------------------------------------------------------------------------- /IDE/Resources/beef.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Resources/beef.ico -------------------------------------------------------------------------------- /IDE/Tests/BugW001/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW001/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW002/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW002/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW003/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW003/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW004/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW004/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW005/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW005/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW005/Extra.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW005/Extra.bf -------------------------------------------------------------------------------- /IDE/Tests/BugW006/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW006/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW007/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW007/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW008/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW008/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW008/src/Gen.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW008/src/Gen.bf -------------------------------------------------------------------------------- /IDE/Tests/BugW009/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW009/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/BugW009/src/Gen.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/BugW009/src/Gen.bf -------------------------------------------------------------------------------- /IDE/Tests/Rando/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Rando/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/Rando/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Rando/BeefSpace.toml -------------------------------------------------------------------------------- /IDE/Tests/Rando/cloc.bat: -------------------------------------------------------------------------------- 1 | \bin\cloc . --force-lang="C#",bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/Test1/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/BeefSpace.toml -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Assembly.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Assembly.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Break.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Break.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Data01.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Data01.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Enums.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Enums.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/HotSwap.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/HotSwap.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Inline.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Inline.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Lambdas.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Lambdas.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Methods.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Methods.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Mixins.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Mixins.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Program.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Program.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Splats.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Splats.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Unions.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Unions.bf -------------------------------------------------------------------------------- /IDE/Tests/Test1/src/Virtuals.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Test1/src/Virtuals.bf -------------------------------------------------------------------------------- /IDE/Tests/Tiny/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Tiny/BeefProj.toml -------------------------------------------------------------------------------- /IDE/Tests/Tiny/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Tiny/BeefSpace.toml -------------------------------------------------------------------------------- /IDE/Tests/Tiny/src/Program.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/Tests/Tiny/src/Program.bf -------------------------------------------------------------------------------- /IDE/Tests/scripts/DebugAndExit.txt: -------------------------------------------------------------------------------- 1 | RunWithStep() 2 | AssertEvalEquals("args != null", "true") -------------------------------------------------------------------------------- /IDE/dist/BeefConfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/BeefConfig.toml -------------------------------------------------------------------------------- /IDE/dist/BeefConfig_host.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/BeefConfig_host.toml -------------------------------------------------------------------------------- /IDE/dist/BeefDbgVis.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/BeefDbgVis.toml -------------------------------------------------------------------------------- /IDE/dist/IDE_CreateStable.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/IDE_CreateStable.bat -------------------------------------------------------------------------------- /IDE/dist/IDE_RunCopy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/IDE_RunCopy.bat -------------------------------------------------------------------------------- /IDE/dist/IDE_RunCopyD.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/IDE_RunCopyD.bat -------------------------------------------------------------------------------- /IDE/dist/IDE_RunOrig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/IDE_RunOrig.bat -------------------------------------------------------------------------------- /IDE/dist/Standard.dbgvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/Standard.dbgvis -------------------------------------------------------------------------------- /IDE/dist/en_US.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/en_US.aff -------------------------------------------------------------------------------- /IDE/dist/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/en_US.dic -------------------------------------------------------------------------------- /IDE/dist/git2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/git2.dll -------------------------------------------------------------------------------- /IDE/dist/git2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/git2.lib -------------------------------------------------------------------------------- /IDE/dist/images/BoneTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/BoneTex.png -------------------------------------------------------------------------------- /IDE/dist/images/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/Circle.png -------------------------------------------------------------------------------- /IDE/dist/images/DarkTheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/DarkTheme.png -------------------------------------------------------------------------------- /IDE/dist/images/DarkUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/DarkUI.png -------------------------------------------------------------------------------- /IDE/dist/images/DarkUI.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/DarkUI.psd -------------------------------------------------------------------------------- /IDE/dist/images/DarkUI_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/DarkUI_2.png -------------------------------------------------------------------------------- /IDE/dist/images/DarkUI_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/DarkUI_4.png -------------------------------------------------------------------------------- /IDE/dist/images/DarkUI_4.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/DarkUI_4.psd -------------------------------------------------------------------------------- /IDE/dist/images/IconError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/IconError.png -------------------------------------------------------------------------------- /IDE/dist/images/IconError_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/IconError_2.png -------------------------------------------------------------------------------- /IDE/dist/images/IconError_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/IconError_4.png -------------------------------------------------------------------------------- /IDE/dist/images/IconWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/IconWarning.png -------------------------------------------------------------------------------- /IDE/dist/images/ImgCreate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/ImgCreate.exe -------------------------------------------------------------------------------- /IDE/dist/images/LaoUI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/LaoUI.ttf -------------------------------------------------------------------------------- /IDE/dist/images/Squiggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/Squiggle.png -------------------------------------------------------------------------------- /IDE/dist/images/whiteDot.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/images/whiteDot.tga -------------------------------------------------------------------------------- /IDE/dist/lib/gen/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/gen/BeefProj.toml -------------------------------------------------------------------------------- /IDE/dist/lib/gen/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/gen/BeefSpace.toml -------------------------------------------------------------------------------- /IDE/dist/lib/gen/src/Program.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/gen/src/Program.bf -------------------------------------------------------------------------------- /IDE/dist/lib/x64/comdlg32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/comdlg32.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/gdi32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/gdi32.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/kernel32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/kernel32.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/msvcrt.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/netapi32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/netapi32.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/ntdll.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/ole32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/ole32.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/rpcrt4.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/rpcrt4.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/user32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/user32.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/version.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/version.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x64/winmm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x64/winmm.lib -------------------------------------------------------------------------------- /IDE/dist/lib/x86/msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/lib/x86/msvcrt.lib -------------------------------------------------------------------------------- /IDE/dist/make_pdb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/make_pdb.bat -------------------------------------------------------------------------------- /IDE/dist/make_pdb_d.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/make_pdb_d.bat -------------------------------------------------------------------------------- /IDE/dist/notes.txt: -------------------------------------------------------------------------------- 1 | Hey -------------------------------------------------------------------------------- /IDE/dist/shaders/Std.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std.frag -------------------------------------------------------------------------------- /IDE/dist/shaders/Std.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std.fx -------------------------------------------------------------------------------- /IDE/dist/shaders/Std.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std.vert -------------------------------------------------------------------------------- /IDE/dist/shaders/Std_es.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std_es.frag -------------------------------------------------------------------------------- /IDE/dist/shaders/Std_es.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std_es.vert -------------------------------------------------------------------------------- /IDE/dist/shaders/Std_font.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std_font.frag -------------------------------------------------------------------------------- /IDE/dist/shaders/Std_font.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std_font.fx -------------------------------------------------------------------------------- /IDE/dist/shaders/Std_font.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std_font.vert -------------------------------------------------------------------------------- /IDE/dist/shaders/Std_hue.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/Std_hue.fx -------------------------------------------------------------------------------- /IDE/dist/shaders/std.fxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/dist/shaders/std.fxo -------------------------------------------------------------------------------- /IDE/dist/userdict_install.txt: -------------------------------------------------------------------------------- 1 | workspace 2 | -------------------------------------------------------------------------------- /IDE/include/BeefDbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/include/BeefDbg.h -------------------------------------------------------------------------------- /IDE/mintest/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/BeefProj.toml -------------------------------------------------------------------------------- /IDE/mintest/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/BeefSpace.toml -------------------------------------------------------------------------------- /IDE/mintest/LibA/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/LibA/BeefProj.toml -------------------------------------------------------------------------------- /IDE/mintest/LibA/src/a1.bf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IDE/mintest/LibB/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/LibB/BeefProj.toml -------------------------------------------------------------------------------- /IDE/mintest/LibB/src/b1.bf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IDE/mintest/min_shared.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IDE/mintest/mintest.proj.cdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/mintest.proj.cdep -------------------------------------------------------------------------------- /IDE/mintest/mintest.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/mintest.user -------------------------------------------------------------------------------- /IDE/mintest/src/Test.cpp: -------------------------------------------------------------------------------- 1 | //1 2 | Hey man! -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/sys.cpp -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/sys.h -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/test1.cpp -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/test2.cpp -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/testA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/testA.h -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/testB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/testB.h -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/testC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/testC.h -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/testD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/testD.h -------------------------------------------------------------------------------- /IDE/mintest/src/cpp/testE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/cpp/testE.h -------------------------------------------------------------------------------- /IDE/mintest/src/main.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/main.bf -------------------------------------------------------------------------------- /IDE/mintest/src/main2.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/main2.bf -------------------------------------------------------------------------------- /IDE/mintest/src/main3.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/main3.bf -------------------------------------------------------------------------------- /IDE/mintest/src/zop/Zoggle.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/mintest/src/zop/Zoggle.bf -------------------------------------------------------------------------------- /IDE/screenshot0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/screenshot0.gif -------------------------------------------------------------------------------- /IDE/src/BeefConfig.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/BeefConfig.bf -------------------------------------------------------------------------------- /IDE/src/Board.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Board.bf -------------------------------------------------------------------------------- /IDE/src/BookmarkManager.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/BookmarkManager.bf -------------------------------------------------------------------------------- /IDE/src/BuildContext.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/BuildContext.bf -------------------------------------------------------------------------------- /IDE/src/BuildOptions.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/BuildOptions.bf -------------------------------------------------------------------------------- /IDE/src/Clang/ClangCompiler.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Clang/ClangCompiler.bf -------------------------------------------------------------------------------- /IDE/src/Clang/ClangHelper.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Clang/ClangHelper.bf -------------------------------------------------------------------------------- /IDE/src/CmdTarget.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/CmdTarget.bf -------------------------------------------------------------------------------- /IDE/src/CommandQueueManager.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/CommandQueueManager.bf -------------------------------------------------------------------------------- /IDE/src/Commands.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Commands.bf -------------------------------------------------------------------------------- /IDE/src/Compiler/BfCompiler.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Compiler/BfCompiler.bf -------------------------------------------------------------------------------- /IDE/src/Compiler/BfParser.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Compiler/BfParser.bf -------------------------------------------------------------------------------- /IDE/src/Compiler/BfProject.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Compiler/BfProject.bf -------------------------------------------------------------------------------- /IDE/src/Compiler/BfSystem.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Compiler/BfSystem.bf -------------------------------------------------------------------------------- /IDE/src/CompositeFile.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/CompositeFile.bf -------------------------------------------------------------------------------- /IDE/src/Debugger/Breakpoint.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Debugger/Breakpoint.bf -------------------------------------------------------------------------------- /IDE/src/Debugger/Callbacks.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Debugger/Callbacks.bf -------------------------------------------------------------------------------- /IDE/src/Debugger/Profiler.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Debugger/Profiler.bf -------------------------------------------------------------------------------- /IDE/src/Debugger/StepFilter.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Debugger/StepFilter.bf -------------------------------------------------------------------------------- /IDE/src/FileEditData.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/FileEditData.bf -------------------------------------------------------------------------------- /IDE/src/FileRecovery.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/FileRecovery.bf -------------------------------------------------------------------------------- /IDE/src/FileWatcher.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/FileWatcher.bf -------------------------------------------------------------------------------- /IDE/src/HistoryManager.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/HistoryManager.bf -------------------------------------------------------------------------------- /IDE/src/IDEApp.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/IDEApp.bf -------------------------------------------------------------------------------- /IDE/src/IDEUtils.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/IDEUtils.bf -------------------------------------------------------------------------------- /IDE/src/IPCHelper.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/IPCHelper.bf -------------------------------------------------------------------------------- /IDE/src/Popup.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Popup.bf -------------------------------------------------------------------------------- /IDE/src/Program.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Program.bf -------------------------------------------------------------------------------- /IDE/src/Project.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Project.bf -------------------------------------------------------------------------------- /IDE/src/ScriptManager.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ScriptManager.bf -------------------------------------------------------------------------------- /IDE/src/Settings.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Settings.bf -------------------------------------------------------------------------------- /IDE/src/SimpleProgram.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/SimpleProgram.bf -------------------------------------------------------------------------------- /IDE/src/SourceControl.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/SourceControl.bf -------------------------------------------------------------------------------- /IDE/src/SpellChecker.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/SpellChecker.bf -------------------------------------------------------------------------------- /IDE/src/Targets.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Targets.bf -------------------------------------------------------------------------------- /IDE/src/TestManager.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/TestManager.bf -------------------------------------------------------------------------------- /IDE/src/VertDir.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/VertDir.bf -------------------------------------------------------------------------------- /IDE/src/WakaTime.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/WakaTime.bf -------------------------------------------------------------------------------- /IDE/src/Workspace.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/Workspace.bf -------------------------------------------------------------------------------- /IDE/src/ui/AboutDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/AboutDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/AttachDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/AttachDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/AutoComplete.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/AutoComplete.bf -------------------------------------------------------------------------------- /IDE/src/ui/AutoCompletePanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/AutoCompletePanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/BinaryDataWidget.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/BinaryDataWidget.bf -------------------------------------------------------------------------------- /IDE/src/ui/BookmarksPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/BookmarksPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/BoundCheckbox.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/BoundCheckbox.bf -------------------------------------------------------------------------------- /IDE/src/ui/BreakpointPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/BreakpointPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/CallStackPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/CallStackPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ClassViewPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ClassViewPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ConditionDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ConditionDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/ConsolePanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ConsolePanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/DiagnosticsPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/DiagnosticsPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/DisassemblyPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/DisassemblyPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ErrorsPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ErrorsPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/FileChangedDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/FileChangedDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/FindClassDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/FindClassDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/FindResultsPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/FindResultsPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/GenerateDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/GenerateDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/GoToAddressDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/GoToAddressDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/GoToLineDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/GoToLineDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/HoverWatch.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/HoverWatch.bf -------------------------------------------------------------------------------- /IDE/src/ui/IDEDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/IDEDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/IDEListView.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/IDEListView.bf -------------------------------------------------------------------------------- /IDE/src/ui/ImmediatePanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ImmediatePanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ImmediateWidget.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ImmediateWidget.bf -------------------------------------------------------------------------------- /IDE/src/ui/LaunchDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/LaunchDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/LeakWidget.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/LeakWidget.bf -------------------------------------------------------------------------------- /IDE/src/ui/LocatorAnim.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/LocatorAnim.bf -------------------------------------------------------------------------------- /IDE/src/ui/MainFrame.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/MainFrame.bf -------------------------------------------------------------------------------- /IDE/src/ui/MemoryPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/MemoryPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ModulePanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ModulePanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/MultiSelectDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/MultiSelectDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/NavigationBar.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/NavigationBar.bf -------------------------------------------------------------------------------- /IDE/src/ui/NewProjectDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/NewProjectDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/OutputPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/OutputPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/OutputWidget.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/OutputWidget.bf -------------------------------------------------------------------------------- /IDE/src/ui/Panel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/Panel.bf -------------------------------------------------------------------------------- /IDE/src/ui/PanelHeader.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/PanelHeader.bf -------------------------------------------------------------------------------- /IDE/src/ui/PanelPopup.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/PanelPopup.bf -------------------------------------------------------------------------------- /IDE/src/ui/PanelSplitter.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/PanelSplitter.bf -------------------------------------------------------------------------------- /IDE/src/ui/PathEditWidget.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/PathEditWidget.bf -------------------------------------------------------------------------------- /IDE/src/ui/ProfileDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ProfileDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/ProfilePanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ProfilePanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ProjectPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ProjectPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ProjectProperties.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ProjectProperties.bf -------------------------------------------------------------------------------- /IDE/src/ui/PropertiesDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/PropertiesDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/PropertiesPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/PropertiesPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/QuickFind.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/QuickFind.bf -------------------------------------------------------------------------------- /IDE/src/ui/QuickWatchDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/QuickWatchDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/SettingsDialog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/SettingsDialog.bf -------------------------------------------------------------------------------- /IDE/src/ui/SourceViewPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/SourceViewPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/StartupPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/StartupPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/StatusBar.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/StatusBar.bf -------------------------------------------------------------------------------- /IDE/src/ui/TerminalPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/TerminalPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/TextPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/TextPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ThreadPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ThreadPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/ToggleButton.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/ToggleButton.bf -------------------------------------------------------------------------------- /IDE/src/ui/Tooltip.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/Tooltip.bf -------------------------------------------------------------------------------- /IDE/src/ui/VirtualListView.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/VirtualListView.bf -------------------------------------------------------------------------------- /IDE/src/ui/WatchPanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/WatchPanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/WelcomePanel.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/WelcomePanel.bf -------------------------------------------------------------------------------- /IDE/src/ui/WrappedMenuValue.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/ui/WrappedMenuValue.bf -------------------------------------------------------------------------------- /IDE/src/util/BfLog.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/BfLog.bf -------------------------------------------------------------------------------- /IDE/src/util/ConsoleProvider.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/ConsoleProvider.bf -------------------------------------------------------------------------------- /IDE/src/util/DefinesSet.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/DefinesSet.bf -------------------------------------------------------------------------------- /IDE/src/util/GitManager.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/GitManager.bf -------------------------------------------------------------------------------- /IDE/src/util/PackMan.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/PackMan.bf -------------------------------------------------------------------------------- /IDE/src/util/RecentFiles.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/RecentFiles.bf -------------------------------------------------------------------------------- /IDE/src/util/ResourceGen.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/ResourceGen.bf -------------------------------------------------------------------------------- /IDE/src/util/SemVer.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/SemVer.bf -------------------------------------------------------------------------------- /IDE/src/util/SourceHash.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/SourceHash.bf -------------------------------------------------------------------------------- /IDE/src/util/TargetTriple.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/TargetTriple.bf -------------------------------------------------------------------------------- /IDE/src/util/VerSpec.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDE/src/util/VerSpec.bf -------------------------------------------------------------------------------- /IDEHelper/Backend/BeContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeContext.cpp -------------------------------------------------------------------------------- /IDEHelper/Backend/BeContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeContext.h -------------------------------------------------------------------------------- /IDEHelper/Backend/BeDbgModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeDbgModule.h -------------------------------------------------------------------------------- /IDEHelper/Backend/BeIRCodeGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeIRCodeGen.h -------------------------------------------------------------------------------- /IDEHelper/Backend/BeLibManger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeLibManger.h -------------------------------------------------------------------------------- /IDEHelper/Backend/BeMCContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeMCContext.h -------------------------------------------------------------------------------- /IDEHelper/Backend/BeMCX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeMCX86.h -------------------------------------------------------------------------------- /IDEHelper/Backend/BeModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeModule.cpp -------------------------------------------------------------------------------- /IDEHelper/Backend/BeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Backend/BeModule.h -------------------------------------------------------------------------------- /IDEHelper/Beef/BfCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Beef/BfCommon.cpp -------------------------------------------------------------------------------- /IDEHelper/Beef/BfCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Beef/BfCommon.h -------------------------------------------------------------------------------- /IDEHelper/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/BeefProj.toml -------------------------------------------------------------------------------- /IDEHelper/BfDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/BfDiff.cpp -------------------------------------------------------------------------------- /IDEHelper/BumpList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/BumpList.h -------------------------------------------------------------------------------- /IDEHelper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/CMakeLists.txt -------------------------------------------------------------------------------- /IDEHelper/COFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/COFF.cpp -------------------------------------------------------------------------------- /IDEHelper/COFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/COFF.h -------------------------------------------------------------------------------- /IDEHelper/COFFData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/COFFData.h -------------------------------------------------------------------------------- /IDEHelper/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/CPU.h -------------------------------------------------------------------------------- /IDEHelper/Clang/CDepChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Clang/CDepChecker.cpp -------------------------------------------------------------------------------- /IDEHelper/Clang/CDepChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Clang/CDepChecker.h -------------------------------------------------------------------------------- /IDEHelper/Clang/ClangHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Clang/ClangHelper.cpp -------------------------------------------------------------------------------- /IDEHelper/Clang/ClangHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Clang/ClangHelper.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfAst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfAst.cpp -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfAst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfAst.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfCodeGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfCodeGen.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfCompiler.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfContext.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfFixits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfFixits.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfMangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfMangler.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfModule.cpp -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfModule.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfParser.cpp -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfParser.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfPrinter.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfReducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfReducer.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfSource.cpp -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfSource.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfSystem.cpp -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfSystem.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfType.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfUtil.cpp -------------------------------------------------------------------------------- /IDEHelper/Compiler/BfUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/BfUtil.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/CeDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/CeDebugger.h -------------------------------------------------------------------------------- /IDEHelper/Compiler/CeMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Compiler/CeMachine.h -------------------------------------------------------------------------------- /IDEHelper/DWARFInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DWARFInfo.h -------------------------------------------------------------------------------- /IDEHelper/DbgEvalPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgEvalPool.cpp -------------------------------------------------------------------------------- /IDEHelper/DbgEvalPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgEvalPool.h -------------------------------------------------------------------------------- /IDEHelper/DbgExprEvaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgExprEvaluator.cpp -------------------------------------------------------------------------------- /IDEHelper/DbgExprEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgExprEvaluator.h -------------------------------------------------------------------------------- /IDEHelper/DbgMiniDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgMiniDump.cpp -------------------------------------------------------------------------------- /IDEHelper/DbgMiniDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgMiniDump.h -------------------------------------------------------------------------------- /IDEHelper/DbgModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgModule.cpp -------------------------------------------------------------------------------- /IDEHelper/DbgModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgModule.h -------------------------------------------------------------------------------- /IDEHelper/DbgSymSrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgSymSrv.cpp -------------------------------------------------------------------------------- /IDEHelper/DbgSymSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgSymSrv.h -------------------------------------------------------------------------------- /IDEHelper/DbgTypeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgTypeMap.cpp -------------------------------------------------------------------------------- /IDEHelper/DbgTypeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DbgTypeMap.h -------------------------------------------------------------------------------- /IDEHelper/DebugCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DebugCommon.h -------------------------------------------------------------------------------- /IDEHelper/DebugManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DebugManager.cpp -------------------------------------------------------------------------------- /IDEHelper/DebugManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DebugManager.h -------------------------------------------------------------------------------- /IDEHelper/DebugTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DebugTarget.cpp -------------------------------------------------------------------------------- /IDEHelper/DebugTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DebugTarget.h -------------------------------------------------------------------------------- /IDEHelper/DebugVisualizers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DebugVisualizers.cpp -------------------------------------------------------------------------------- /IDEHelper/DebugVisualizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DebugVisualizers.h -------------------------------------------------------------------------------- /IDEHelper/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Debugger.cpp -------------------------------------------------------------------------------- /IDEHelper/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Debugger.h -------------------------------------------------------------------------------- /IDEHelper/DwAutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/DwAutoComplete.h -------------------------------------------------------------------------------- /IDEHelper/HandleDbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/HandleDbg.cpp -------------------------------------------------------------------------------- /IDEHelper/HandleDbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/HandleDbg.h -------------------------------------------------------------------------------- /IDEHelper/HotHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/HotHeap.cpp -------------------------------------------------------------------------------- /IDEHelper/HotHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/HotHeap.h -------------------------------------------------------------------------------- /IDEHelper/HotScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/HotScanner.cpp -------------------------------------------------------------------------------- /IDEHelper/HotScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/HotScanner.h -------------------------------------------------------------------------------- /IDEHelper/IDEHelper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/IDEHelper.vcxproj -------------------------------------------------------------------------------- /IDEHelper/LLVMUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/LLVMUtils.h -------------------------------------------------------------------------------- /IDEHelper/Linker/BlCodeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlCodeView.cpp -------------------------------------------------------------------------------- /IDEHelper/Linker/BlCodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlCodeView.h -------------------------------------------------------------------------------- /IDEHelper/Linker/BlContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlContext.cpp -------------------------------------------------------------------------------- /IDEHelper/Linker/BlContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlContext.h -------------------------------------------------------------------------------- /IDEHelper/Linker/BlCvParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlCvParser.cpp -------------------------------------------------------------------------------- /IDEHelper/Linker/BlCvParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlCvParser.h -------------------------------------------------------------------------------- /IDEHelper/Linker/BlHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlHash.cpp -------------------------------------------------------------------------------- /IDEHelper/Linker/BlHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlHash.h -------------------------------------------------------------------------------- /IDEHelper/Linker/BlMsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlMsf.cpp -------------------------------------------------------------------------------- /IDEHelper/Linker/BlMsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlMsf.h -------------------------------------------------------------------------------- /IDEHelper/Linker/BlPdbParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlPdbParser.h -------------------------------------------------------------------------------- /IDEHelper/Linker/BlSymTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlSymTable.cpp -------------------------------------------------------------------------------- /IDEHelper/Linker/BlSymTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Linker/BlSymTable.h -------------------------------------------------------------------------------- /IDEHelper/LinuxDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/LinuxDebugger.cpp -------------------------------------------------------------------------------- /IDEHelper/LinuxDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/LinuxDebugger.h -------------------------------------------------------------------------------- /IDEHelper/MiniDumpDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/MiniDumpDebugger.cpp -------------------------------------------------------------------------------- /IDEHelper/MiniDumpDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/MiniDumpDebugger.h -------------------------------------------------------------------------------- /IDEHelper/NetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/NetManager.cpp -------------------------------------------------------------------------------- /IDEHelper/NetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/NetManager.h -------------------------------------------------------------------------------- /IDEHelper/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Profiler.cpp -------------------------------------------------------------------------------- /IDEHelper/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Profiler.h -------------------------------------------------------------------------------- /IDEHelper/RadixMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/RadixMap.h -------------------------------------------------------------------------------- /IDEHelper/SpellChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/SpellChecker.cpp -------------------------------------------------------------------------------- /IDEHelper/StrBloomMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/StrBloomMap.h -------------------------------------------------------------------------------- /IDEHelper/StrHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/StrHashMap.h -------------------------------------------------------------------------------- /IDEHelper/Targets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Targets.cpp -------------------------------------------------------------------------------- /IDEHelper/Tests/BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/BeefProj.toml -------------------------------------------------------------------------------- /IDEHelper/Tests/BeefSpace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/BeefSpace.toml -------------------------------------------------------------------------------- /IDEHelper/Tests/CLib/CLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/CLib/CLib.sln -------------------------------------------------------------------------------- /IDEHelper/Tests/CLib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/CLib/main.cpp -------------------------------------------------------------------------------- /IDEHelper/Tests/Test0.txt: -------------------------------------------------------------------------------- 1 | Test 2 | 0 -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Aliases.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Aliases.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Append.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Append.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Arrays.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Arrays.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Boxing.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Boxing.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Enums.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Enums.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Floats.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Floats.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Helper.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Helper.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Ints.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Ints.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Loops.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Loops.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Mixins.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Mixins.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Params.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Params.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Scopes.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Scopes.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Tuples.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Tuples.bf -------------------------------------------------------------------------------- /IDEHelper/Tests/src/Unions.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/Tests/src/Unions.bf -------------------------------------------------------------------------------- /IDEHelper/VSSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/VSSupport.cpp -------------------------------------------------------------------------------- /IDEHelper/WinDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/WinDebugger.cpp -------------------------------------------------------------------------------- /IDEHelper/WinDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/WinDebugger.h -------------------------------------------------------------------------------- /IDEHelper/X64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X64.cpp -------------------------------------------------------------------------------- /IDEHelper/X64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X64.h -------------------------------------------------------------------------------- /IDEHelper/X86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X86.cpp -------------------------------------------------------------------------------- /IDEHelper/X86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X86.h -------------------------------------------------------------------------------- /IDEHelper/X86InstrInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X86InstrInfo.h -------------------------------------------------------------------------------- /IDEHelper/X86Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X86Target.cpp -------------------------------------------------------------------------------- /IDEHelper/X86Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X86Target.h -------------------------------------------------------------------------------- /IDEHelper/X86XmmInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/X86XmmInfo.cpp -------------------------------------------------------------------------------- /IDEHelper/dbg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/IDEHelper/dbg.txt -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /LICENSES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/LICENSES.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/README.md -------------------------------------------------------------------------------- /bin/AeDebug.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/AeDebug.reg -------------------------------------------------------------------------------- /bin/Beef.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/Beef.natvis -------------------------------------------------------------------------------- /bin/Beefy.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/Beefy.natvis -------------------------------------------------------------------------------- /bin/BfAeDebug.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/BfAeDebug.exe -------------------------------------------------------------------------------- /bin/ForegroundLockTimeout.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/ForegroundLockTimeout.reg -------------------------------------------------------------------------------- /bin/OpenFileLine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/OpenFileLine.exe -------------------------------------------------------------------------------- /bin/RunAndWait.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/RunAndWait.exe -------------------------------------------------------------------------------- /bin/RunWithStats.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/RunWithStats.exe -------------------------------------------------------------------------------- /bin/WER.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/WER.reg -------------------------------------------------------------------------------- /bin/WasmLaunch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/WasmLaunch.exe -------------------------------------------------------------------------------- /bin/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/build.bat -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/build.sh -------------------------------------------------------------------------------- /bin/build_android.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/build_android.bat -------------------------------------------------------------------------------- /bin/build_ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/build_ios.sh -------------------------------------------------------------------------------- /bin/build_rt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/build_rt.bat -------------------------------------------------------------------------------- /bin/build_rt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/build_rt.sh -------------------------------------------------------------------------------- /bin/cloc_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/cloc_all.bat -------------------------------------------------------------------------------- /bin/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/curl.exe -------------------------------------------------------------------------------- /bin/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/ios.toolchain.cmake -------------------------------------------------------------------------------- /bin/linecount.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/linecount.bat -------------------------------------------------------------------------------- /bin/makeinstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/makeinstall.bat -------------------------------------------------------------------------------- /bin/miniserve.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/miniserve.exe -------------------------------------------------------------------------------- /bin/msbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/msbuild.bat -------------------------------------------------------------------------------- /bin/tar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/tar.exe -------------------------------------------------------------------------------- /bin/test_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/test_build.bat -------------------------------------------------------------------------------- /bin/test_ide.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/test_ide.bat -------------------------------------------------------------------------------- /bin/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/bin/vswhere.exe -------------------------------------------------------------------------------- /bin/xcopy_exclude_build.txt: -------------------------------------------------------------------------------- 1 | \build\ 2 | \Rando\ -------------------------------------------------------------------------------- /extern/hunspell/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/AUTHORS -------------------------------------------------------------------------------- /extern/hunspell/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/BUGS -------------------------------------------------------------------------------- /extern/hunspell/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/COPYING -------------------------------------------------------------------------------- /extern/hunspell/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/COPYING.LGPL -------------------------------------------------------------------------------- /extern/hunspell/COPYING.MPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/COPYING.MPL -------------------------------------------------------------------------------- /extern/hunspell/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/NEWS -------------------------------------------------------------------------------- /extern/hunspell/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/README -------------------------------------------------------------------------------- /extern/hunspell/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/THANKS -------------------------------------------------------------------------------- /extern/hunspell/intl/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/VERSION -------------------------------------------------------------------------------- /extern/hunspell/intl/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/export.h -------------------------------------------------------------------------------- /extern/hunspell/intl/gmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/gmo.h -------------------------------------------------------------------------------- /extern/hunspell/intl/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/lock.c -------------------------------------------------------------------------------- /extern/hunspell/intl/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/lock.h -------------------------------------------------------------------------------- /extern/hunspell/intl/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/log.c -------------------------------------------------------------------------------- /extern/hunspell/intl/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/osdep.c -------------------------------------------------------------------------------- /extern/hunspell/intl/plural.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/plural.c -------------------------------------------------------------------------------- /extern/hunspell/intl/plural.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/plural.y -------------------------------------------------------------------------------- /extern/hunspell/intl/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/printf.c -------------------------------------------------------------------------------- /extern/hunspell/intl/xsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/hunspell/intl/xsize.h -------------------------------------------------------------------------------- /extern/hunspell/src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=hunspell parsers tools win_api 2 | -------------------------------------------------------------------------------- /extern/llvm_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/llvm_build.bat -------------------------------------------------------------------------------- /extern/llvm_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/llvm_build.sh -------------------------------------------------------------------------------- /extern/llvm_targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/llvm_targets.txt -------------------------------------------------------------------------------- /extern/toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/toml/LICENSE -------------------------------------------------------------------------------- /extern/toml/toml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/extern/toml/toml.h -------------------------------------------------------------------------------- /qthelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/qthelper.py -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wasm/build_wasm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/wasm/build_wasm.bat -------------------------------------------------------------------------------- /wasm/fetch_wasm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefytech/Beef/HEAD/wasm/fetch_wasm.bat --------------------------------------------------------------------------------