zig/lib/std
Andrew Kelley 76a195473d
Merge pull request #6516 from LemonBoy/fastfilecopy
std: Make file copy ops use zero-copy mechanisms
2020-10-08 20:14:47 -04:00
..
atomic add license header to all std lib files 2020-08-20 16:07:04 -04:00
build eliminate dependency of libzigcpp.a on libzigstage1.a 2020-09-23 00:00:24 -07:00
c Merge pull request #6516 from LemonBoy/fastfilecopy 2020-10-08 20:14:47 -04:00
compress std: Add a gzip decoder 2020-09-11 20:02:41 -04:00
crypto Merge pull request #6614 from jedisct1/aes-arm 2020-10-08 18:09:40 -04:00
debug update uses of deprecated type field access 2020-09-03 18:10:40 +03:00
event add WaitGroup to std.event 2020-10-07 04:34:09 -04:00
fmt Merge pull request #6246 from Vexu/field 2020-09-05 13:58:02 +03:00
fs fixups for the previous commit 2020-10-07 00:39:13 -07:00
hash Merge pull request #6172 from tadeokondrak/@Type(.Union) 2020-09-14 16:43:49 +03:00
heap std: ArenaAllocator tries to resize before allocating 2020-09-25 10:58:07 +02:00
io Use less inefficient method of replacing TypeInfo.UnionField.enum_field 2020-09-07 06:23:27 -06:00
json add license header to all std lib files 2020-08-20 16:07:04 -04:00
math std: Fix two bugs in bigint pow 2020-10-05 22:16:26 -04:00
mem use Allocator.allocSentinel now that the stage1 bug is fixed 2020-09-29 12:06:35 -07:00
meta Add alignment field to TypeInfo.UnionField and TypeInfo.StructField 2020-10-01 15:01:25 -06:00
net add license header to all std lib files 2020-08-20 16:07:04 -04:00
os Update zig files for opaque type syntax 2020-10-06 22:08:25 -06:00
rand add license header to all std lib files 2020-08-20 16:07:04 -04:00
special test_runner: fix missing newline in log 2020-09-23 11:15:10 -07:00
target add license header to all std lib files 2020-08-20 16:07:04 -04:00
testing add license header to all std lib files 2020-08-20 16:07:04 -04:00
time add license header to all std lib files 2020-08-20 16:07:04 -04:00
unicode add license header to all std lib files 2020-08-20 16:07:04 -04:00
valgrind add license header to all std lib files 2020-08-20 16:07:04 -04:00
zig Merge pull request #6421 from tadeokondrak/opaque-syntax 2020-10-07 16:58:50 -04:00
array_hash_map.zig std.ArrayHashMap: count and iterator are not deprecated 2020-09-25 20:50:40 -07:00
array_list_sentineled.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
array_list.zig Fix std.ArrayListUnmanaged + improve test coverage 2020-09-29 19:49:13 +02:00
ascii.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
atomic.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
base64.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
buf_map.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
buf_set.zig hash_map: rename to ArrayHashMap and add new HashMap implementation 2020-09-02 00:17:50 +02:00
build.zig Build.zig: Skip copying files that are used internally by the compiler 2020-10-05 00:31:21 -04:00
builtin.zig Merge pull request #6421 from tadeokondrak/opaque-syntax 2020-10-07 16:58:50 -04:00
c.zig Update zig files for opaque type syntax 2020-10-06 22:08:25 -06:00
child_process.zig Correctly set uid and gid to void instead of null on wasi 2020-10-04 21:21:25 -04:00
coff.zig Completed basic PE linker for stage2 2020-09-04 05:15:03 +03:00
compress.zig std: Add a gzip decoder 2020-09-11 20:02:41 -04:00
comptime_string_map.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
crypto.zig std/crypto: Add support for AES-GCM 2020-10-06 00:00:33 +02:00
cstr.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
debug.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
dwarf_bits.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
dwarf.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
dynamic_library.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
elf.zig std: Fix typo in ELF section header iterator 2020-09-15 18:14:06 +03:00
event.zig add WaitGroup to std.event 2020-10-07 04:34:09 -04:00
fifo.zig Make LinearFifo not crash when discarding from empty buffer 2020-09-27 05:46:39 -04:00
fmt.zig std.fmt.comptimePrint: Properly null-terminate result and add test 2020-10-07 11:43:23 -06:00
fs.zig Merge pull request #6516 from LemonBoy/fastfilecopy 2020-10-08 20:14:47 -04:00
hash_map.zig Switch type of HashMap's count from usize to u32 (#6262) 2020-09-09 00:33:14 -04:00
hash.zig Promote hash/siphash to crypto/siphash 2020-08-22 02:47:50 -04:00
heap.zig std: ArenaAllocator tries to resize before allocating 2020-09-25 10:58:07 +02:00
io.zig zig fmt: Remove dynamic stack from auto-indenting-stream 2020-08-31 23:39:50 +10:00
json.zig Use less inefficient method of replacing TypeInfo.UnionField.enum_field 2020-09-07 06:23:27 -06:00
linked_list.zig std: remove init functions from linked list nodes 2020-08-22 02:47:39 -04:00
log.zig fix another round of regressions in this branch 2020-09-26 21:03:38 -07:00
macho.zig Write out LC_DYSYMTAB together with dyld_stub_binder undef symbol 2020-10-04 15:31:47 +02:00
math.zig restore ability to do comptime math 2020-10-07 17:04:48 -04:00
mem.zig update uses of deprecated type field access 2020-09-03 18:10:40 +03:00
meta.zig Update std.meta.ArgsTuple for alignment in StructField/UnionField 2020-10-01 15:06:24 -06:00
mutex.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
net.zig recvfrom 2020-09-24 22:06:41 +02:00
once.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
os.zig Merge pull request #6516 from LemonBoy/fastfilecopy 2020-10-08 20:14:47 -04:00
packed_int_array.zig std: skip some tests that stage1 leaks too much memory with 2020-09-30 12:37:00 -07:00
pdb.zig update rest of tests 2020-09-04 22:49:14 +03:00
priority_queue.zig Fix issue #6303: iterating empty PriorityQueue crashes 2020-09-10 12:00:53 +03:00
process.zig nobody likes my std.process.cleanExit idea 2020-09-23 20:52:33 -07:00
progress.zig Introduces a space after the ellipsis for test and progress. 2020-09-03 18:07:30 -04:00
rand.zig update uses of deprecated type field access 2020-09-03 18:10:40 +03:00
reset_event.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
segmented_list.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
sort.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
spinlock.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
start_windows_tls.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
start.zig std: start: use std.log instead of stderr 2020-09-18 01:58:16 -07:00
std.zig Merge pull request #6250 from ziglang/stage2-zig-cc 2020-09-30 04:28:19 -04:00
target.zig update wasm to use ".o.wasm" extension for objects 2020-09-29 17:01:05 -07:00
testing.zig fix the cli test expected string to support native path separators 2020-09-30 01:31:08 -04:00
thread.zig update uses of deprecated type field access 2020-09-03 18:10:40 +03:00
time.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
unicode.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
valgrind.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
zig.zig fix incorrect dylib filename pattern in the previous commit 2020-09-30 00:53:55 -07:00