@zigc/lib 0.16.0-dev.3091 → 0.16.0-dev.3128
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/c/math.zig +121 -30
- package/compiler/build_runner.zig +1 -0
- package/compiler/test_runner.zig +191 -59
- package/compiler_rt/cos.zig +141 -52
- package/compiler_rt/long_double.zig +37 -0
- package/compiler_rt/rem_pio2l.zig +173 -0
- package/compiler_rt/sin.zig +140 -55
- package/compiler_rt/sincos.zig +279 -72
- package/compiler_rt/tan.zig +118 -47
- package/compiler_rt/trig.zig +256 -6
- package/fuzzer.zig +855 -307
- package/package.json +1 -1
- package/std/Build/Fuzz.zig +6 -19
- package/std/Build/Step/Run.zig +530 -68
- package/std/Build/abi.zig +39 -7
- package/std/Build.zig +3 -0
- package/std/compress/flate/Compress.zig +3 -3
- package/std/debug/Info.zig +4 -0
- package/std/heap/ArenaAllocator.zig +145 -154
- package/std/mem/Allocator.zig +4 -5
- package/std/mem.zig +48 -0
- package/std/priority_dequeue.zig +13 -12
- package/std/priority_queue.zig +5 -4
- package/std/zig/Client.zig +8 -3
- package/std/zig/Server.zig +26 -0
- package/libc/mingw/complex/cabs.c +0 -48
- package/libc/mingw/complex/cabsf.c +0 -48
- package/libc/mingw/complex/cacos.c +0 -50
- package/libc/mingw/complex/cacosf.c +0 -50
- package/libc/mingw/complex/carg.c +0 -48
- package/libc/mingw/complex/cargf.c +0 -48
- package/libc/mingw/complex/casin.c +0 -50
- package/libc/mingw/complex/casinf.c +0 -50
- package/libc/mingw/complex/catan.c +0 -50
- package/libc/mingw/complex/catanf.c +0 -50
- package/libc/mingw/complex/ccos.c +0 -50
- package/libc/mingw/complex/ccosf.c +0 -50
- package/libc/mingw/complex/cexp.c +0 -48
- package/libc/mingw/complex/cexpf.c +0 -48
- package/libc/mingw/complex/cimag.c +0 -48
- package/libc/mingw/complex/cimagf.c +0 -48
- package/libc/mingw/complex/clog.c +0 -48
- package/libc/mingw/complex/clog10.c +0 -49
- package/libc/mingw/complex/clog10f.c +0 -49
- package/libc/mingw/complex/clogf.c +0 -48
- package/libc/mingw/complex/conj.c +0 -48
- package/libc/mingw/complex/conjf.c +0 -48
- package/libc/mingw/complex/cpow.c +0 -48
- package/libc/mingw/complex/cpowf.c +0 -48
- package/libc/mingw/complex/cproj.c +0 -48
- package/libc/mingw/complex/cprojf.c +0 -48
- package/libc/mingw/complex/creal.c +0 -48
- package/libc/mingw/complex/crealf.c +0 -48
- package/libc/mingw/complex/csin.c +0 -50
- package/libc/mingw/complex/csinf.c +0 -50
- package/libc/mingw/complex/csqrt.c +0 -48
- package/libc/mingw/complex/csqrtf.c +0 -48
- package/libc/mingw/complex/ctan.c +0 -50
- package/libc/mingw/complex/ctanf.c +0 -50
- package/libc/mingw/math/arm/s_rint.c +0 -86
- package/libc/mingw/math/arm/s_rintf.c +0 -51
- package/libc/mingw/math/arm/sincos.S +0 -30
- package/libc/mingw/math/arm-common/sincosl.c +0 -13
- package/libc/mingw/math/arm64/rint.c +0 -12
- package/libc/mingw/math/arm64/rintf.c +0 -12
- package/libc/mingw/math/arm64/sincos.S +0 -32
- package/libc/mingw/math/bsd_private_base.h +0 -148
- package/libc/mingw/math/frexpf.c +0 -13
- package/libc/mingw/math/frexpl.c +0 -71
- package/libc/mingw/math/x86/acosf.c +0 -29
- package/libc/mingw/math/x86/atanf.c +0 -23
- package/libc/mingw/math/x86/atanl.c +0 -18
- package/libc/mingw/math/x86/cos.def.h +0 -65
- package/libc/mingw/math/x86/cosl.c +0 -46
- package/libc/mingw/math/x86/cosl_internal.S +0 -55
- package/libc/mingw/math/x86/ldexp.c +0 -23
- package/libc/mingw/math/x86/scalbn.S +0 -41
- package/libc/mingw/math/x86/scalbnf.S +0 -40
- package/libc/mingw/math/x86/sin.def.h +0 -65
- package/libc/mingw/math/x86/sinl.c +0 -46
- package/libc/mingw/math/x86/sinl_internal.S +0 -58
- package/libc/mingw/math/x86/tanl.S +0 -62
- package/libc/mingw/misc/btowc.c +0 -28
- package/libc/mingw/misc/wcstof.c +0 -66
- package/libc/mingw/misc/wcstoimax.c +0 -132
- package/libc/mingw/misc/wcstoumax.c +0 -126
- package/libc/mingw/misc/wctob.c +0 -29
- package/libc/mingw/misc/winbs_uint64.c +0 -6
- package/libc/mingw/misc/winbs_ulong.c +0 -6
- package/libc/mingw/misc/winbs_ushort.c +0 -6
- package/libc/mingw/stdio/_Exit.c +0 -10
- package/libc/mingw/stdio/_findfirst64i32.c +0 -21
- package/libc/mingw/stdio/_findnext64i32.c +0 -21
- package/libc/mingw/stdio/_fstat64i32.c +0 -37
- package/libc/mingw/stdio/_stat64i32.c +0 -37
- package/libc/mingw/stdio/_wfindfirst64i32.c +0 -21
- package/libc/mingw/stdio/_wfindnext64i32.c +0 -21
- package/libc/mingw/stdio/_wstat64i32.c +0 -37
- package/libc/musl/src/legacy/valloc.c +0 -8
- package/libc/musl/src/math/__cosl.c +0 -96
- package/libc/musl/src/math/__sinl.c +0 -78
- package/libc/musl/src/math/__tanl.c +0 -143
- package/libc/musl/src/math/aarch64/lrint.c +0 -10
- package/libc/musl/src/math/aarch64/lrintf.c +0 -10
- package/libc/musl/src/math/aarch64/rintf.c +0 -7
- package/libc/musl/src/math/cosl.c +0 -39
- package/libc/musl/src/math/exp_data.c +0 -182
- package/libc/musl/src/math/exp_data.h +0 -26
- package/libc/musl/src/math/finite.c +0 -7
- package/libc/musl/src/math/finitef.c +0 -7
- package/libc/musl/src/math/frexp.c +0 -23
- package/libc/musl/src/math/frexpf.c +0 -23
- package/libc/musl/src/math/frexpl.c +0 -29
- package/libc/musl/src/math/i386/lrint.c +0 -8
- package/libc/musl/src/math/i386/lrintf.c +0 -8
- package/libc/musl/src/math/i386/rintf.c +0 -7
- package/libc/musl/src/math/lrint.c +0 -72
- package/libc/musl/src/math/lrintf.c +0 -8
- package/libc/musl/src/math/pow_data.c +0 -180
- package/libc/musl/src/math/pow_data.h +0 -22
- package/libc/musl/src/math/powerpc64/lrint.c +0 -16
- package/libc/musl/src/math/powerpc64/lrintf.c +0 -16
- package/libc/musl/src/math/rintf.c +0 -30
- package/libc/musl/src/math/s390x/rintf.c +0 -15
- package/libc/musl/src/math/sincosl.c +0 -60
- package/libc/musl/src/math/sinl.c +0 -41
- package/libc/musl/src/math/tanl.c +0 -29
- package/libc/musl/src/math/x32/lrint.s +0 -5
- package/libc/musl/src/math/x32/lrintf.s +0 -5
- package/libc/musl/src/math/x86_64/lrint.c +0 -8
- package/libc/musl/src/math/x86_64/lrintf.c +0 -8
- package/libc/wasi/libc-bottom-half/sources/reallocarray.c +0 -14
package/std/mem.zig
CHANGED
|
@@ -4709,6 +4709,54 @@ test "sliceAsBytes preserves pointer attributes" {
|
|
|
4709
4709
|
try testing.expectEqual(in.alignment, out.alignment);
|
|
4710
4710
|
}
|
|
4711
4711
|
|
|
4712
|
+
fn AbsorbSentinelReturnType(comptime Slice: type) type {
|
|
4713
|
+
const info = @typeInfo(Slice).pointer;
|
|
4714
|
+
assert(info.size == .slice);
|
|
4715
|
+
return @Pointer(.slice, .{
|
|
4716
|
+
.@"const" = info.is_const,
|
|
4717
|
+
.@"volatile" = info.is_volatile,
|
|
4718
|
+
.@"allowzero" = info.is_allowzero,
|
|
4719
|
+
.@"addrspace" = info.address_space,
|
|
4720
|
+
.@"align" = info.alignment,
|
|
4721
|
+
}, info.child, null);
|
|
4722
|
+
}
|
|
4723
|
+
|
|
4724
|
+
/// If the provided slice is not sentinel terminated, do nothing and return that slice.
|
|
4725
|
+
/// If it is sentinel-terminated, return a non-sentinel-terminated slice with the
|
|
4726
|
+
/// length increased by one to include the absorbed sentinel element.
|
|
4727
|
+
pub fn absorbSentinel(slice: anytype) AbsorbSentinelReturnType(@TypeOf(slice)) {
|
|
4728
|
+
const info = @typeInfo(@TypeOf(slice)).pointer;
|
|
4729
|
+
comptime assert(info.size == .slice);
|
|
4730
|
+
if (info.sentinel_ptr == null) {
|
|
4731
|
+
return slice;
|
|
4732
|
+
} else {
|
|
4733
|
+
return slice.ptr[0 .. slice.len + 1];
|
|
4734
|
+
}
|
|
4735
|
+
}
|
|
4736
|
+
|
|
4737
|
+
test absorbSentinel {
|
|
4738
|
+
{
|
|
4739
|
+
var buffer: [3:0]u8 = .{ 1, 2, 3 };
|
|
4740
|
+
const foo: [:0]const u8 = &buffer;
|
|
4741
|
+
const bar: []const u8 = &buffer;
|
|
4742
|
+
try testing.expectEqual([]const u8, @TypeOf(absorbSentinel(foo)));
|
|
4743
|
+
try testing.expectEqual([]const u8, @TypeOf(absorbSentinel(bar)));
|
|
4744
|
+
try testing.expectEqualSlices(u8, &.{ 1, 2, 3, 0 }, absorbSentinel(foo));
|
|
4745
|
+
try testing.expectEqualSlices(u8, &.{ 1, 2, 3 }, absorbSentinel(bar));
|
|
4746
|
+
}
|
|
4747
|
+
{
|
|
4748
|
+
var buffer: [3:0]u8 = .{ 1, 2, 3 };
|
|
4749
|
+
const foo: [:0]u8 = &buffer;
|
|
4750
|
+
const bar: []u8 = &buffer;
|
|
4751
|
+
try testing.expectEqual([]u8, @TypeOf(absorbSentinel(foo)));
|
|
4752
|
+
try testing.expectEqual([]u8, @TypeOf(absorbSentinel(bar)));
|
|
4753
|
+
var expected_foo = [_]u8{ 1, 2, 3, 0 };
|
|
4754
|
+
try testing.expectEqualSlices(u8, &expected_foo, absorbSentinel(foo));
|
|
4755
|
+
var expected_bar = [_]u8{ 1, 2, 3 };
|
|
4756
|
+
try testing.expectEqualSlices(u8, &expected_bar, absorbSentinel(bar));
|
|
4757
|
+
}
|
|
4758
|
+
}
|
|
4759
|
+
|
|
4712
4760
|
/// Round an address down to the next (or current) aligned address.
|
|
4713
4761
|
/// Unlike `alignForward`, `alignment` can be any positive number, not just a power of 2.
|
|
4714
4762
|
pub fn alignForwardAnyAlign(comptime T: type, addr: T, alignment: T) T {
|
package/std/priority_dequeue.zig
CHANGED
|
@@ -40,8 +40,9 @@ pub fn PriorityDequeue(comptime T: type, comptime Context: type, comptime compar
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
/// Free memory used by the dequeue.
|
|
43
|
-
pub fn deinit(self: Self, allocator: Allocator) void {
|
|
43
|
+
pub fn deinit(self: *Self, allocator: Allocator) void {
|
|
44
44
|
allocator.free(self.items);
|
|
45
|
+
self.* = undefined;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
/// Insert a new element, maintaining priority.
|
|
@@ -77,7 +78,7 @@ pub fn PriorityDequeue(comptime T: type, comptime Context: type, comptime compar
|
|
|
77
78
|
return 1 == @clz(index +% 1) & 1;
|
|
78
79
|
}
|
|
79
80
|
|
|
80
|
-
fn nextIsMinLayer(self: Self) bool {
|
|
81
|
+
fn nextIsMinLayer(self: *const Self) bool {
|
|
81
82
|
return isMinLayer(self.len);
|
|
82
83
|
}
|
|
83
84
|
|
|
@@ -86,7 +87,7 @@ pub fn PriorityDequeue(comptime T: type, comptime Context: type, comptime compar
|
|
|
86
87
|
min_layer: bool,
|
|
87
88
|
};
|
|
88
89
|
|
|
89
|
-
fn getStartForSiftUp(self: Self, child: T, index: usize) StartIndexAndLayer {
|
|
90
|
+
fn getStartForSiftUp(self: *const Self, child: T, index: usize) StartIndexAndLayer {
|
|
90
91
|
const child_index = index;
|
|
91
92
|
const parent_index = parentIndex(child_index);
|
|
92
93
|
const parent = self.items[parent_index];
|
|
@@ -136,20 +137,20 @@ pub fn PriorityDequeue(comptime T: type, comptime Context: type, comptime compar
|
|
|
136
137
|
|
|
137
138
|
/// Look at the smallest element in the dequeue. Returns
|
|
138
139
|
/// `null` if empty.
|
|
139
|
-
pub fn peekMin(self: *Self) ?T {
|
|
140
|
+
pub fn peekMin(self: *const Self) ?T {
|
|
140
141
|
return if (self.len > 0) self.items[0] else null;
|
|
141
142
|
}
|
|
142
143
|
|
|
143
144
|
/// Look at the largest element in the dequeue. Returns
|
|
144
145
|
/// `null` if empty.
|
|
145
|
-
pub fn peekMax(self: *Self) ?T {
|
|
146
|
+
pub fn peekMax(self: *const Self) ?T {
|
|
146
147
|
if (self.len == 0) return null;
|
|
147
148
|
if (self.len == 1) return self.items[0];
|
|
148
149
|
if (self.len == 2) return self.items[1];
|
|
149
150
|
return self.bestItemAtIndices(1, 2, .gt).item;
|
|
150
151
|
}
|
|
151
152
|
|
|
152
|
-
fn maxIndex(self: Self) ?usize {
|
|
153
|
+
fn maxIndex(self: *const Self) ?usize {
|
|
153
154
|
if (self.len == 0) return null;
|
|
154
155
|
if (self.len == 1) return 0;
|
|
155
156
|
if (self.len == 2) return 1;
|
|
@@ -261,14 +262,14 @@ pub fn PriorityDequeue(comptime T: type, comptime Context: type, comptime compar
|
|
|
261
262
|
index: usize,
|
|
262
263
|
};
|
|
263
264
|
|
|
264
|
-
fn getItem(self: Self, index: usize) ItemAndIndex {
|
|
265
|
+
fn getItem(self: *const Self, index: usize) ItemAndIndex {
|
|
265
266
|
return .{
|
|
266
267
|
.item = self.items[index],
|
|
267
268
|
.index = index,
|
|
268
269
|
};
|
|
269
270
|
}
|
|
270
271
|
|
|
271
|
-
fn bestItem(self: Self, item1: ItemAndIndex, item2: ItemAndIndex, target_order: Order) ItemAndIndex {
|
|
272
|
+
fn bestItem(self: *const Self, item1: ItemAndIndex, item2: ItemAndIndex, target_order: Order) ItemAndIndex {
|
|
272
273
|
if (compareFn(self.context, item1.item, item2.item) == target_order) {
|
|
273
274
|
return item1;
|
|
274
275
|
} else {
|
|
@@ -276,13 +277,13 @@ pub fn PriorityDequeue(comptime T: type, comptime Context: type, comptime compar
|
|
|
276
277
|
}
|
|
277
278
|
}
|
|
278
279
|
|
|
279
|
-
fn bestItemAtIndices(self: Self, index1: usize, index2: usize, target_order: Order) ItemAndIndex {
|
|
280
|
+
fn bestItemAtIndices(self: *const Self, index1: usize, index2: usize, target_order: Order) ItemAndIndex {
|
|
280
281
|
const item1 = self.getItem(index1);
|
|
281
282
|
const item2 = self.getItem(index2);
|
|
282
283
|
return self.bestItem(item1, item2, target_order);
|
|
283
284
|
}
|
|
284
285
|
|
|
285
|
-
fn bestDescendent(self: Self, first_child_index: usize, first_grandchild_index: usize, target_order: Order) ItemAndIndex {
|
|
286
|
+
fn bestDescendent(self: *const Self, first_child_index: usize, first_grandchild_index: usize, target_order: Order) ItemAndIndex {
|
|
286
287
|
const second_child_index = first_child_index + 1;
|
|
287
288
|
if (first_grandchild_index >= self.len) {
|
|
288
289
|
// No grandchildren, find the best child (second may not exist)
|
|
@@ -314,13 +315,13 @@ pub fn PriorityDequeue(comptime T: type, comptime Context: type, comptime compar
|
|
|
314
315
|
}
|
|
315
316
|
|
|
316
317
|
/// Return the number of elements remaining in the dequeue
|
|
317
|
-
pub fn count(self: Self) usize {
|
|
318
|
+
pub fn count(self: *const Self) usize {
|
|
318
319
|
return self.len;
|
|
319
320
|
}
|
|
320
321
|
|
|
321
322
|
/// Return the number of elements that can be added to the
|
|
322
323
|
/// dequeue before more memory is allocated.
|
|
323
|
-
pub fn capacity(self: Self) usize {
|
|
324
|
+
pub fn capacity(self: *const Self) usize {
|
|
324
325
|
return self.items.len;
|
|
325
326
|
}
|
|
326
327
|
|
package/std/priority_queue.zig
CHANGED
|
@@ -41,6 +41,7 @@ pub fn PriorityQueue(comptime T: type, comptime Context: type, comptime compareF
|
|
|
41
41
|
/// Free memory used by the queue.
|
|
42
42
|
pub fn deinit(self: *Self, allocator: Allocator) void {
|
|
43
43
|
allocator.free(self.allocatedSlice());
|
|
44
|
+
self.* = undefined;
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
/// Insert a new element, maintaining priority.
|
|
@@ -78,7 +79,7 @@ pub fn PriorityQueue(comptime T: type, comptime Context: type, comptime compareF
|
|
|
78
79
|
|
|
79
80
|
/// Look at the highest priority element in the queue. Returns
|
|
80
81
|
/// `null` if empty.
|
|
81
|
-
pub fn peek(self: *Self) ?T {
|
|
82
|
+
pub fn peek(self: *const Self) ?T {
|
|
82
83
|
return if (self.items.len > 0) self.items[0] else null;
|
|
83
84
|
}
|
|
84
85
|
|
|
@@ -117,19 +118,19 @@ pub fn PriorityQueue(comptime T: type, comptime Context: type, comptime compareF
|
|
|
117
118
|
|
|
118
119
|
/// Return the number of elements remaining in the priority
|
|
119
120
|
/// queue.
|
|
120
|
-
pub fn count(self: Self) usize {
|
|
121
|
+
pub fn count(self: *const Self) usize {
|
|
121
122
|
return self.items.len;
|
|
122
123
|
}
|
|
123
124
|
|
|
124
125
|
/// Return the number of elements that can be added to the
|
|
125
126
|
/// queue before more memory is allocated.
|
|
126
|
-
pub fn capacity(self: Self) usize {
|
|
127
|
+
pub fn capacity(self: *const Self) usize {
|
|
127
128
|
return self.cap;
|
|
128
129
|
}
|
|
129
130
|
|
|
130
131
|
/// Returns a slice of all the items plus the extra capacity, whose memory
|
|
131
132
|
/// contents are `undefined`.
|
|
132
|
-
fn allocatedSlice(self: Self) []T {
|
|
133
|
+
fn allocatedSlice(self: *const Self) []T {
|
|
133
134
|
// `items.len` is the length, not the capacity.
|
|
134
135
|
return self.items.ptr[0..self.cap];
|
|
135
136
|
}
|
package/std/zig/Client.zig
CHANGED
|
@@ -33,13 +33,18 @@ pub const Message = struct {
|
|
|
33
33
|
/// Ask the test runner to run a particular test.
|
|
34
34
|
/// The message body is a u32 test index.
|
|
35
35
|
run_test,
|
|
36
|
-
/// Ask the test runner to start fuzzing a
|
|
36
|
+
/// Ask the test runner to start fuzzing a set of test forever or each for a given amount of
|
|
37
|
+
/// iterations. After this is sent, the only allowed message is `new_fuzz_input`.
|
|
38
|
+
///
|
|
37
39
|
/// The message body is:
|
|
38
|
-
/// - a u32 test name len.
|
|
39
|
-
/// - a test name with the above length
|
|
40
40
|
/// - a u8 test limit kind (std.Build.api.fuzz.LimitKind)
|
|
41
41
|
/// - a u64 value whose meaning depends on FuzzLimitKind (either a limit amount or an instance id)
|
|
42
|
+
/// - a u32 number of tests followed by n elements of
|
|
43
|
+
/// - a u32 test name len.
|
|
44
|
+
/// - a test name with the above length
|
|
42
45
|
start_fuzzing,
|
|
46
|
+
/// The message body has the same format as in Server.
|
|
47
|
+
new_fuzz_input,
|
|
43
48
|
|
|
44
49
|
_,
|
|
45
50
|
};
|
package/std/zig/Server.zig
CHANGED
|
@@ -60,6 +60,13 @@ pub const Message = struct {
|
|
|
60
60
|
/// address of the fuzz unit test. This is used to provide a starting
|
|
61
61
|
/// point to view coverage.
|
|
62
62
|
fuzz_start_addr,
|
|
63
|
+
/// Body is:
|
|
64
|
+
/// - u32le test index.
|
|
65
|
+
fuzz_test_change,
|
|
66
|
+
/// Body is:
|
|
67
|
+
/// - u32le test index
|
|
68
|
+
/// - input in remaining bytes
|
|
69
|
+
broadcast_fuzz_input,
|
|
63
70
|
/// Body is a TimeReport.
|
|
64
71
|
time_report,
|
|
65
72
|
|
|
@@ -176,6 +183,15 @@ pub fn serveMessageHeader(s: *const Server, header: OutMessage.Header) !void {
|
|
|
176
183
|
try s.out.writeStruct(header, .little);
|
|
177
184
|
}
|
|
178
185
|
|
|
186
|
+
pub fn serveU32Message(s: *const Server, tag: OutMessage.Tag, int: u32) !void {
|
|
187
|
+
try serveMessageHeader(s, .{
|
|
188
|
+
.tag = tag,
|
|
189
|
+
.bytes_len = @sizeOf(u32),
|
|
190
|
+
});
|
|
191
|
+
try s.out.writeInt(u32, int, .little);
|
|
192
|
+
try s.out.flush();
|
|
193
|
+
}
|
|
194
|
+
|
|
179
195
|
pub fn serveU64Message(s: *const Server, tag: OutMessage.Tag, int: u64) !void {
|
|
180
196
|
assert(tag != .coverage_id);
|
|
181
197
|
try serveMessageHeader(s, .{
|
|
@@ -198,6 +214,16 @@ pub fn serveCoverageIdMessage(s: *const Server, id: u64, runs: u64, unique: u64,
|
|
|
198
214
|
try s.out.flush();
|
|
199
215
|
}
|
|
200
216
|
|
|
217
|
+
pub fn serveBroadcastFuzzInputMessage(s: *const Server, test_i: u32, bytes: []const u8) !void {
|
|
218
|
+
try s.serveMessageHeader(.{
|
|
219
|
+
.tag = .broadcast_fuzz_input,
|
|
220
|
+
.bytes_len = @sizeOf(u32) + @as(u32, @intCast(bytes.len)),
|
|
221
|
+
});
|
|
222
|
+
try s.out.writeInt(u32, test_i, .little);
|
|
223
|
+
try s.out.writeAll(bytes);
|
|
224
|
+
try s.out.flush();
|
|
225
|
+
}
|
|
226
|
+
|
|
201
227
|
pub fn serveEmitDigest(
|
|
202
228
|
s: *Server,
|
|
203
229
|
digest: *const [Cache.bin_digest_len]u8,
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* double version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_DOUBLE 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
#include "cabs.def.h"
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* Float version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_FLOAT 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
#include "cabs.def.h"
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* double version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_DOUBLE 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
|
|
49
|
-
#include "cacosh.def.h"
|
|
50
|
-
#include "cacos.def.h"
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* Float version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_FLOAT 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
|
|
49
|
-
#include "cacosh.def.h"
|
|
50
|
-
#include "cacos.def.h"
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* double version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_DOUBLE 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
#include "carg.def.h"
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* Float version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_FLOAT 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
#include "carg.def.h"
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* double version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_DOUBLE 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
|
|
49
|
-
#include "casinh.def.h"
|
|
50
|
-
#include "casin.def.h"
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
This Software is provided under the Zope Public License (ZPL) Version 2.1.
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2009, 2010 by the mingw-w64 project
|
|
5
|
-
|
|
6
|
-
See the AUTHORS file for the list of contributors to the mingw-w64 project.
|
|
7
|
-
|
|
8
|
-
This license has been certified as open source. It has also been designated
|
|
9
|
-
as GPL compatible by the Free Software Foundation (FSF).
|
|
10
|
-
|
|
11
|
-
Redistribution and use in source and binary forms, with or without
|
|
12
|
-
modification, are permitted provided that the following conditions are met:
|
|
13
|
-
|
|
14
|
-
1. Redistributions in source code must retain the accompanying copyright
|
|
15
|
-
notice, this list of conditions, and the following disclaimer.
|
|
16
|
-
2. Redistributions in binary form must reproduce the accompanying
|
|
17
|
-
copyright notice, this list of conditions, and the following disclaimer
|
|
18
|
-
in the documentation and/or other materials provided with the
|
|
19
|
-
distribution.
|
|
20
|
-
3. Names of the copyright holders must not be used to endorse or promote
|
|
21
|
-
products derived from this software without prior written permission
|
|
22
|
-
from the copyright holders.
|
|
23
|
-
4. The right to distribute this software or to use it for any purpose does
|
|
24
|
-
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
25
|
-
the copyright holders. Use of them is covered by separate agreement
|
|
26
|
-
with the copyright holders.
|
|
27
|
-
5. If any files are modified, you must cause the modified files to carry
|
|
28
|
-
prominent notices stating that you changed the files and the date of
|
|
29
|
-
any change.
|
|
30
|
-
|
|
31
|
-
Disclaimer
|
|
32
|
-
|
|
33
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
34
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
35
|
-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
36
|
-
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
37
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
38
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
39
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
40
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
41
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
42
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
/* Float version of the functions. */
|
|
46
|
-
#define _NEW_COMPLEX_FLOAT 1
|
|
47
|
-
#include "complex_internal.h"
|
|
48
|
-
|
|
49
|
-
#include "casinh.def.h"
|
|
50
|
-
#include "casin.def.h"
|