@treatjs/ant-sdk-linux-arm64-gnu 0.1.0-ant-sdk.33ae7017faf9

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.
Files changed (33) hide show
  1. package/package.json +18 -0
  2. package/sdk/LICENSES/ant-LICENSE.txt +21 -0
  3. package/sdk/LICENSES/argtable3-LICENSE.txt +167 -0
  4. package/sdk/LICENSES/base64-LICENSE.txt +28 -0
  5. package/sdk/LICENSES/boringssl-LICENSE.txt +238 -0
  6. package/sdk/LICENSES/brotli-LICENSE.txt +19 -0
  7. package/sdk/LICENSES/crprintf-LICENSE.txt +21 -0
  8. package/sdk/LICENSES/double-conversion-LICENSE.txt +26 -0
  9. package/sdk/LICENSES/libffi-LICENSE.txt +21 -0
  10. package/sdk/LICENSES/libuv-LICENSE.txt +19 -0
  11. package/sdk/LICENSES/llhttp-LICENSE.txt +22 -0
  12. package/sdk/LICENSES/lmdb-LICENSE.txt +47 -0
  13. package/sdk/LICENSES/minicoro-LICENSE.txt +47 -0
  14. package/sdk/LICENSES/mir-LICENSE.txt +21 -0
  15. package/sdk/LICENSES/nghttp2-LICENSE.txt +21 -0
  16. package/sdk/LICENSES/pcre2-LICENSE.txt +5 -0
  17. package/sdk/LICENSES/skim-LICENSE.txt +21 -0
  18. package/sdk/LICENSES/tlsuv-LICENSE.txt +21 -0
  19. package/sdk/LICENSES/uriparser-LICENSE.txt +202 -0
  20. package/sdk/LICENSES/utf8proc-LICENSE.txt +93 -0
  21. package/sdk/LICENSES/uthash-LICENSE.txt +21 -0
  22. package/sdk/LICENSES/wamr-LICENSE.txt +219 -0
  23. package/sdk/LICENSES/wirecall-LICENSE.txt +21 -0
  24. package/sdk/LICENSES/yyjson-LICENSE.txt +21 -0
  25. package/sdk/LICENSES/zlib-ng-LICENSE.txt +19 -0
  26. package/sdk/include/ant.h +233 -0
  27. package/sdk/include/pkg.h +385 -0
  28. package/sdk/include/treat_ant_bridge.h +74 -0
  29. package/sdk/lib/libtreat_ant_bridge_helpers.a +0 -0
  30. package/sdk/lib/libtreat_ant_native.a +0 -0
  31. package/sdk/metadata/sdk.json +18 -0
  32. package/sdk/rust/bindings.rs +5010 -0
  33. package/sdk/rust/tag_constants.rs +13 -0
@@ -0,0 +1,5010 @@
1
+ /* automatically generated by rust-bindgen 0.72.1 */
2
+
3
+ #[repr(C)]
4
+ #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
5
+ pub struct __BindgenBitfieldUnit<Storage> {
6
+ storage: Storage,
7
+ }
8
+ impl<Storage> __BindgenBitfieldUnit<Storage> {
9
+ #[inline]
10
+ pub const fn new(storage: Storage) -> Self {
11
+ Self { storage }
12
+ }
13
+ }
14
+ impl<Storage> __BindgenBitfieldUnit<Storage>
15
+ where
16
+ Storage: AsRef<[u8]> + AsMut<[u8]>,
17
+ {
18
+ #[inline]
19
+ fn extract_bit(byte: u8, index: usize) -> bool {
20
+ let bit_index = if cfg!(target_endian = "big") {
21
+ 7 - (index % 8)
22
+ } else {
23
+ index % 8
24
+ };
25
+ let mask = 1 << bit_index;
26
+ byte & mask == mask
27
+ }
28
+ #[inline]
29
+ pub fn get_bit(&self, index: usize) -> bool {
30
+ debug_assert!(index / 8 < self.storage.as_ref().len());
31
+ let byte_index = index / 8;
32
+ let byte = self.storage.as_ref()[byte_index];
33
+ Self::extract_bit(byte, index)
34
+ }
35
+ #[inline]
36
+ pub unsafe fn raw_get_bit(this: *const Self, index: usize) -> bool {
37
+ debug_assert!(index / 8 < core::mem::size_of::<Storage>());
38
+ let byte_index = index / 8;
39
+ let byte = unsafe {
40
+ *(core::ptr::addr_of!((*this).storage) as *const u8).offset(byte_index as isize)
41
+ };
42
+ Self::extract_bit(byte, index)
43
+ }
44
+ #[inline]
45
+ fn change_bit(byte: u8, index: usize, val: bool) -> u8 {
46
+ let bit_index = if cfg!(target_endian = "big") {
47
+ 7 - (index % 8)
48
+ } else {
49
+ index % 8
50
+ };
51
+ let mask = 1 << bit_index;
52
+ if val { byte | mask } else { byte & !mask }
53
+ }
54
+ #[inline]
55
+ pub fn set_bit(&mut self, index: usize, val: bool) {
56
+ debug_assert!(index / 8 < self.storage.as_ref().len());
57
+ let byte_index = index / 8;
58
+ let byte = &mut self.storage.as_mut()[byte_index];
59
+ *byte = Self::change_bit(*byte, index, val);
60
+ }
61
+ #[inline]
62
+ pub unsafe fn raw_set_bit(this: *mut Self, index: usize, val: bool) {
63
+ debug_assert!(index / 8 < core::mem::size_of::<Storage>());
64
+ let byte_index = index / 8;
65
+ let byte = unsafe {
66
+ (core::ptr::addr_of_mut!((*this).storage) as *mut u8).offset(byte_index as isize)
67
+ };
68
+ unsafe { *byte = Self::change_bit(*byte, index, val) };
69
+ }
70
+ #[inline]
71
+ pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 {
72
+ debug_assert!(bit_width <= 64);
73
+ debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
74
+ debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
75
+ let mut val = 0;
76
+ for i in 0..(bit_width as usize) {
77
+ if self.get_bit(i + bit_offset) {
78
+ let index = if cfg!(target_endian = "big") {
79
+ bit_width as usize - 1 - i
80
+ } else {
81
+ i
82
+ };
83
+ val |= 1 << index;
84
+ }
85
+ }
86
+ val
87
+ }
88
+ #[inline]
89
+ pub unsafe fn raw_get(this: *const Self, bit_offset: usize, bit_width: u8) -> u64 {
90
+ debug_assert!(bit_width <= 64);
91
+ debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
92
+ debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
93
+ let mut val = 0;
94
+ for i in 0..(bit_width as usize) {
95
+ if unsafe { Self::raw_get_bit(this, i + bit_offset) } {
96
+ let index = if cfg!(target_endian = "big") {
97
+ bit_width as usize - 1 - i
98
+ } else {
99
+ i
100
+ };
101
+ val |= 1 << index;
102
+ }
103
+ }
104
+ val
105
+ }
106
+ #[inline]
107
+ pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) {
108
+ debug_assert!(bit_width <= 64);
109
+ debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
110
+ debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
111
+ for i in 0..(bit_width as usize) {
112
+ let mask = 1 << i;
113
+ let val_bit_is_set = val & mask == mask;
114
+ let index = if cfg!(target_endian = "big") {
115
+ bit_width as usize - 1 - i
116
+ } else {
117
+ i
118
+ };
119
+ self.set_bit(index + bit_offset, val_bit_is_set);
120
+ }
121
+ }
122
+ #[inline]
123
+ pub unsafe fn raw_set(this: *mut Self, bit_offset: usize, bit_width: u8, val: u64) {
124
+ debug_assert!(bit_width <= 64);
125
+ debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
126
+ debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
127
+ for i in 0..(bit_width as usize) {
128
+ let mask = 1 << i;
129
+ let val_bit_is_set = val & mask == mask;
130
+ let index = if cfg!(target_endian = "big") {
131
+ bit_width as usize - 1 - i
132
+ } else {
133
+ i
134
+ };
135
+ unsafe { Self::raw_set_bit(this, index + bit_offset, val_bit_is_set) };
136
+ }
137
+ }
138
+ }
139
+ #[doc = r" If Bindgen could only determine the size and alignment of a"]
140
+ #[doc = r" type, it is represented like this."]
141
+ #[derive(PartialEq, Copy, Clone, Debug, Hash)]
142
+ #[repr(C)]
143
+ pub struct __BindgenOpaqueArray<T: Copy, const N: usize>(pub [T; N]);
144
+ impl<T: Copy + Default, const N: usize> Default for __BindgenOpaqueArray<T, N> {
145
+ fn default() -> Self {
146
+ Self([<T as Default>::default(); N])
147
+ }
148
+ }
149
+ pub const PCRE2_CODE_UNIT_WIDTH: u32 = 8;
150
+ pub const _STDINT_H: u32 = 1;
151
+ pub const _FEATURES_H: u32 = 1;
152
+ pub const _DEFAULT_SOURCE: u32 = 1;
153
+ pub const __GLIBC_USE_ISOC2Y: u32 = 0;
154
+ pub const __GLIBC_USE_ISOC23: u32 = 0;
155
+ pub const __USE_ISOC11: u32 = 1;
156
+ pub const __USE_ISOC99: u32 = 1;
157
+ pub const __USE_ISOC95: u32 = 1;
158
+ pub const __USE_POSIX_IMPLICITLY: u32 = 1;
159
+ pub const _POSIX_SOURCE: u32 = 1;
160
+ pub const _POSIX_C_SOURCE: u32 = 200809;
161
+ pub const __USE_POSIX: u32 = 1;
162
+ pub const __USE_POSIX2: u32 = 1;
163
+ pub const __USE_POSIX199309: u32 = 1;
164
+ pub const __USE_POSIX199506: u32 = 1;
165
+ pub const __USE_XOPEN2K: u32 = 1;
166
+ pub const __USE_XOPEN2K8: u32 = 1;
167
+ pub const _ATFILE_SOURCE: u32 = 1;
168
+ pub const __WORDSIZE: u32 = 64;
169
+ pub const __WORDSIZE_TIME64_COMPAT32: u32 = 0;
170
+ pub const __TIMESIZE: u32 = 64;
171
+ pub const __USE_TIME_BITS64: u32 = 1;
172
+ pub const __USE_MISC: u32 = 1;
173
+ pub const __USE_ATFILE: u32 = 1;
174
+ pub const __USE_FORTIFY_LEVEL: u32 = 0;
175
+ pub const __GLIBC_USE_DEPRECATED_GETS: u32 = 0;
176
+ pub const __GLIBC_USE_DEPRECATED_SCANF: u32 = 0;
177
+ pub const __GLIBC_USE_C23_STRTOL: u32 = 0;
178
+ pub const _STDC_PREDEF_H: u32 = 1;
179
+ pub const __STDC_IEC_559__: u32 = 1;
180
+ pub const __STDC_IEC_60559_BFP__: u32 = 201404;
181
+ pub const __STDC_IEC_559_COMPLEX__: u32 = 1;
182
+ pub const __STDC_IEC_60559_COMPLEX__: u32 = 201404;
183
+ pub const __STDC_ISO_10646__: u32 = 201706;
184
+ pub const __GNU_LIBRARY__: u32 = 6;
185
+ pub const __GLIBC__: u32 = 2;
186
+ pub const __GLIBC_MINOR__: u32 = 42;
187
+ pub const _SYS_CDEFS_H: u32 = 1;
188
+ pub const __glibc_c99_flexarr_available: u32 = 1;
189
+ pub const __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI: u32 = 0;
190
+ pub const __HAVE_GENERIC_SELECTION: u32 = 1;
191
+ pub const __GLIBC_USE_LIB_EXT2: u32 = 0;
192
+ pub const __GLIBC_USE_IEC_60559_BFP_EXT: u32 = 0;
193
+ pub const __GLIBC_USE_IEC_60559_BFP_EXT_C23: u32 = 0;
194
+ pub const __GLIBC_USE_IEC_60559_EXT: u32 = 0;
195
+ pub const __GLIBC_USE_IEC_60559_FUNCS_EXT: u32 = 0;
196
+ pub const __GLIBC_USE_IEC_60559_FUNCS_EXT_C23: u32 = 0;
197
+ pub const __GLIBC_USE_IEC_60559_TYPES_EXT: u32 = 0;
198
+ pub const _BITS_TYPES_H: u32 = 1;
199
+ pub const _BITS_TYPESIZES_H: u32 = 1;
200
+ pub const __OFF_T_MATCHES_OFF64_T: u32 = 1;
201
+ pub const __INO_T_MATCHES_INO64_T: u32 = 1;
202
+ pub const __RLIM_T_MATCHES_RLIM64_T: u32 = 1;
203
+ pub const __STATFS_MATCHES_STATFS64: u32 = 1;
204
+ pub const __FD_SETSIZE: u32 = 1024;
205
+ pub const _BITS_TIME64_H: u32 = 1;
206
+ pub const _BITS_WCHAR_H: u32 = 1;
207
+ pub const _BITS_STDINT_INTN_H: u32 = 1;
208
+ pub const _BITS_STDINT_UINTN_H: u32 = 1;
209
+ pub const _BITS_STDINT_LEAST_H: u32 = 1;
210
+ pub const INT8_MIN: i32 = -128;
211
+ pub const INT16_MIN: i32 = -32768;
212
+ pub const INT32_MIN: i32 = -2147483648;
213
+ pub const INT8_MAX: u32 = 127;
214
+ pub const INT16_MAX: u32 = 32767;
215
+ pub const INT32_MAX: u32 = 2147483647;
216
+ pub const UINT8_MAX: u32 = 255;
217
+ pub const UINT16_MAX: u32 = 65535;
218
+ pub const UINT32_MAX: u32 = 4294967295;
219
+ pub const INT_LEAST8_MIN: i32 = -128;
220
+ pub const INT_LEAST16_MIN: i32 = -32768;
221
+ pub const INT_LEAST32_MIN: i32 = -2147483648;
222
+ pub const INT_LEAST8_MAX: u32 = 127;
223
+ pub const INT_LEAST16_MAX: u32 = 32767;
224
+ pub const INT_LEAST32_MAX: u32 = 2147483647;
225
+ pub const UINT_LEAST8_MAX: u32 = 255;
226
+ pub const UINT_LEAST16_MAX: u32 = 65535;
227
+ pub const UINT_LEAST32_MAX: u32 = 4294967295;
228
+ pub const INT_FAST8_MIN: i32 = -128;
229
+ pub const INT_FAST16_MIN: i64 = -9223372036854775808;
230
+ pub const INT_FAST32_MIN: i64 = -9223372036854775808;
231
+ pub const INT_FAST8_MAX: u32 = 127;
232
+ pub const INT_FAST16_MAX: u64 = 9223372036854775807;
233
+ pub const INT_FAST32_MAX: u64 = 9223372036854775807;
234
+ pub const UINT_FAST8_MAX: u32 = 255;
235
+ pub const UINT_FAST16_MAX: i32 = -1;
236
+ pub const UINT_FAST32_MAX: i32 = -1;
237
+ pub const INTPTR_MIN: i64 = -9223372036854775808;
238
+ pub const INTPTR_MAX: u64 = 9223372036854775807;
239
+ pub const UINTPTR_MAX: i32 = -1;
240
+ pub const PTRDIFF_MIN: i64 = -9223372036854775808;
241
+ pub const PTRDIFF_MAX: u64 = 9223372036854775807;
242
+ pub const SIG_ATOMIC_MIN: i32 = -2147483648;
243
+ pub const SIG_ATOMIC_MAX: u32 = 2147483647;
244
+ pub const SIZE_MAX: i32 = -1;
245
+ pub const WINT_MIN: u32 = 0;
246
+ pub const WINT_MAX: u32 = 4294967295;
247
+ pub const _STDIO_H: u32 = 1;
248
+ pub const _____fpos_t_defined: u32 = 1;
249
+ pub const ____mbstate_t_defined: u32 = 1;
250
+ pub const _____fpos64_t_defined: u32 = 1;
251
+ pub const ____FILE_defined: u32 = 1;
252
+ pub const __FILE_defined: u32 = 1;
253
+ pub const __struct_FILE_defined: u32 = 1;
254
+ pub const _IO_EOF_SEEN: u32 = 16;
255
+ pub const _IO_ERR_SEEN: u32 = 32;
256
+ pub const _IO_USER_LOCK: u32 = 32768;
257
+ pub const __cookie_io_functions_t_defined: u32 = 1;
258
+ pub const _IOFBF: u32 = 0;
259
+ pub const _IOLBF: u32 = 1;
260
+ pub const _IONBF: u32 = 2;
261
+ pub const BUFSIZ: u32 = 8192;
262
+ pub const EOF: i32 = -1;
263
+ pub const SEEK_SET: u32 = 0;
264
+ pub const SEEK_CUR: u32 = 1;
265
+ pub const SEEK_END: u32 = 2;
266
+ pub const P_tmpdir: &[u8; 5] = b"/tmp\0";
267
+ pub const L_tmpnam: u32 = 20;
268
+ pub const TMP_MAX: u32 = 238328;
269
+ pub const _BITS_STDIO_LIM_H: u32 = 1;
270
+ pub const FILENAME_MAX: u32 = 4096;
271
+ pub const L_ctermid: u32 = 9;
272
+ pub const FOPEN_MAX: u32 = 16;
273
+ pub const __HAVE_FLOAT128: u32 = 1;
274
+ pub const __HAVE_DISTINCT_FLOAT128: u32 = 0;
275
+ pub const __HAVE_FLOAT64X: u32 = 1;
276
+ pub const __HAVE_FLOAT64X_LONG_DOUBLE: u32 = 1;
277
+ pub const __HAVE_FLOAT16: u32 = 0;
278
+ pub const __HAVE_FLOAT32: u32 = 1;
279
+ pub const __HAVE_FLOAT64: u32 = 1;
280
+ pub const __HAVE_FLOAT32X: u32 = 1;
281
+ pub const __HAVE_FLOAT128X: u32 = 0;
282
+ pub const __HAVE_DISTINCT_FLOAT16: u32 = 0;
283
+ pub const __HAVE_DISTINCT_FLOAT32: u32 = 0;
284
+ pub const __HAVE_DISTINCT_FLOAT64: u32 = 0;
285
+ pub const __HAVE_DISTINCT_FLOAT32X: u32 = 0;
286
+ pub const __HAVE_DISTINCT_FLOAT64X: u32 = 0;
287
+ pub const __HAVE_DISTINCT_FLOAT128X: u32 = 0;
288
+ pub const __HAVE_FLOATN_NOT_TYPEDEF: u32 = 0;
289
+ pub const _STDLIB_H: u32 = 1;
290
+ pub const WNOHANG: u32 = 1;
291
+ pub const WUNTRACED: u32 = 2;
292
+ pub const WSTOPPED: u32 = 2;
293
+ pub const WEXITED: u32 = 4;
294
+ pub const WCONTINUED: u32 = 8;
295
+ pub const WNOWAIT: u32 = 16777216;
296
+ pub const __WNOTHREAD: u32 = 536870912;
297
+ pub const __WALL: u32 = 1073741824;
298
+ pub const __WCLONE: u32 = 2147483648;
299
+ pub const __W_CONTINUED: u32 = 65535;
300
+ pub const __WCOREFLAG: u32 = 128;
301
+ pub const __ldiv_t_defined: u32 = 1;
302
+ pub const __lldiv_t_defined: u32 = 1;
303
+ pub const RAND_MAX: u32 = 2147483647;
304
+ pub const EXIT_FAILURE: u32 = 1;
305
+ pub const EXIT_SUCCESS: u32 = 0;
306
+ pub const _SYS_TYPES_H: u32 = 1;
307
+ pub const __clock_t_defined: u32 = 1;
308
+ pub const __clockid_t_defined: u32 = 1;
309
+ pub const __time_t_defined: u32 = 1;
310
+ pub const __timer_t_defined: u32 = 1;
311
+ pub const __BIT_TYPES_DEFINED__: u32 = 1;
312
+ pub const _ENDIAN_H: u32 = 1;
313
+ pub const _BITS_ENDIAN_H: u32 = 1;
314
+ pub const __LITTLE_ENDIAN: u32 = 1234;
315
+ pub const __BIG_ENDIAN: u32 = 4321;
316
+ pub const __PDP_ENDIAN: u32 = 3412;
317
+ pub const _BITS_ENDIANNESS_H: u32 = 1;
318
+ pub const __BYTE_ORDER: u32 = 1234;
319
+ pub const __FLOAT_WORD_ORDER: u32 = 1234;
320
+ pub const LITTLE_ENDIAN: u32 = 1234;
321
+ pub const BIG_ENDIAN: u32 = 4321;
322
+ pub const PDP_ENDIAN: u32 = 3412;
323
+ pub const BYTE_ORDER: u32 = 1234;
324
+ pub const _BITS_BYTESWAP_H: u32 = 1;
325
+ pub const _BITS_UINTN_IDENTITY_H: u32 = 1;
326
+ pub const _SYS_SELECT_H: u32 = 1;
327
+ pub const __sigset_t_defined: u32 = 1;
328
+ pub const __timeval_defined: u32 = 1;
329
+ pub const _STRUCT_TIMESPEC: u32 = 1;
330
+ pub const FD_SETSIZE: u32 = 1024;
331
+ pub const _BITS_PTHREADTYPES_COMMON_H: u32 = 1;
332
+ pub const _THREAD_SHARED_TYPES_H: u32 = 1;
333
+ pub const _BITS_PTHREADTYPES_ARCH_H: u32 = 1;
334
+ pub const __SIZEOF_PTHREAD_ATTR_T: u32 = 64;
335
+ pub const __SIZEOF_PTHREAD_MUTEX_T: u32 = 48;
336
+ pub const __SIZEOF_PTHREAD_MUTEXATTR_T: u32 = 8;
337
+ pub const __SIZEOF_PTHREAD_CONDATTR_T: u32 = 8;
338
+ pub const __SIZEOF_PTHREAD_RWLOCK_T: u32 = 56;
339
+ pub const __SIZEOF_PTHREAD_BARRIER_T: u32 = 32;
340
+ pub const __SIZEOF_PTHREAD_BARRIERATTR_T: u32 = 8;
341
+ pub const __SIZEOF_PTHREAD_COND_T: u32 = 48;
342
+ pub const __SIZEOF_PTHREAD_RWLOCKATTR_T: u32 = 8;
343
+ pub const _THREAD_MUTEX_INTERNAL_H: u32 = 1;
344
+ pub const __PTHREAD_MUTEX_HAVE_PREV: u32 = 1;
345
+ pub const __have_pthread_attr_t: u32 = 1;
346
+ pub const _ALLOCA_H: u32 = 1;
347
+ pub const _MATH_H: u32 = 1;
348
+ pub const _BITS_LIBM_SIMD_DECL_STUBS_H: u32 = 1;
349
+ pub const __FP_LOGB0_IS_MIN: u32 = 0;
350
+ pub const __FP_LOGBNAN_IS_MIN: u32 = 0;
351
+ pub const FP_ILOGB0: i32 = -2147483647;
352
+ pub const FP_ILOGBNAN: u32 = 2147483647;
353
+ pub const FP_FAST_FMA: u32 = 1;
354
+ pub const FP_FAST_FMAF: u32 = 1;
355
+ pub const __MATH_DECLARING_DOUBLE: u32 = 1;
356
+ pub const __MATH_DECLARING_FLOATN: u32 = 0;
357
+ pub const __MATH_DECLARE_LDOUBLE: u32 = 1;
358
+ pub const MATH_ERRNO: u32 = 1;
359
+ pub const MATH_ERREXCEPT: u32 = 2;
360
+ pub const math_errhandling: u32 = 3;
361
+ pub const M_E: f64 = 2.718281828459045;
362
+ pub const M_LOG2E: f64 = 1.4426950408889634;
363
+ pub const M_LOG10E: f64 = 0.4342944819032518;
364
+ pub const M_LN2: f64 = 0.6931471805599453;
365
+ pub const M_LN10: f64 = 2.302585092994046;
366
+ pub const M_PI: f64 = 3.141592653589793;
367
+ pub const M_PI_2: f64 = 1.5707963267948966;
368
+ pub const M_PI_4: f64 = 0.7853981633974483;
369
+ pub const M_1_PI: f64 = 0.3183098861837907;
370
+ pub const M_2_PI: f64 = 0.6366197723675814;
371
+ pub const M_2_SQRTPI: f64 = 1.1283791670955126;
372
+ pub const M_SQRT2: f64 = 1.4142135623730951;
373
+ pub const M_SQRT1_2: f64 = 0.7071067811865476;
374
+ pub const __bool_true_false_are_defined: u32 = 1;
375
+ pub const true_: u32 = 1;
376
+ pub const false_: u32 = 0;
377
+ pub const _INTTYPES_H: u32 = 1;
378
+ pub const ____gwchar_t_defined: u32 = 1;
379
+ pub const __PRI64_PREFIX: &[u8; 2] = b"l\0";
380
+ pub const __PRIPTR_PREFIX: &[u8; 2] = b"l\0";
381
+ pub const PRId8: &[u8; 2] = b"d\0";
382
+ pub const PRId16: &[u8; 2] = b"d\0";
383
+ pub const PRId32: &[u8; 2] = b"d\0";
384
+ pub const PRId64: &[u8; 3] = b"ld\0";
385
+ pub const PRIdLEAST8: &[u8; 2] = b"d\0";
386
+ pub const PRIdLEAST16: &[u8; 2] = b"d\0";
387
+ pub const PRIdLEAST32: &[u8; 2] = b"d\0";
388
+ pub const PRIdLEAST64: &[u8; 3] = b"ld\0";
389
+ pub const PRIdFAST8: &[u8; 2] = b"d\0";
390
+ pub const PRIdFAST16: &[u8; 3] = b"ld\0";
391
+ pub const PRIdFAST32: &[u8; 3] = b"ld\0";
392
+ pub const PRIdFAST64: &[u8; 3] = b"ld\0";
393
+ pub const PRIi8: &[u8; 2] = b"i\0";
394
+ pub const PRIi16: &[u8; 2] = b"i\0";
395
+ pub const PRIi32: &[u8; 2] = b"i\0";
396
+ pub const PRIi64: &[u8; 3] = b"li\0";
397
+ pub const PRIiLEAST8: &[u8; 2] = b"i\0";
398
+ pub const PRIiLEAST16: &[u8; 2] = b"i\0";
399
+ pub const PRIiLEAST32: &[u8; 2] = b"i\0";
400
+ pub const PRIiLEAST64: &[u8; 3] = b"li\0";
401
+ pub const PRIiFAST8: &[u8; 2] = b"i\0";
402
+ pub const PRIiFAST16: &[u8; 3] = b"li\0";
403
+ pub const PRIiFAST32: &[u8; 3] = b"li\0";
404
+ pub const PRIiFAST64: &[u8; 3] = b"li\0";
405
+ pub const PRIo8: &[u8; 2] = b"o\0";
406
+ pub const PRIo16: &[u8; 2] = b"o\0";
407
+ pub const PRIo32: &[u8; 2] = b"o\0";
408
+ pub const PRIo64: &[u8; 3] = b"lo\0";
409
+ pub const PRIoLEAST8: &[u8; 2] = b"o\0";
410
+ pub const PRIoLEAST16: &[u8; 2] = b"o\0";
411
+ pub const PRIoLEAST32: &[u8; 2] = b"o\0";
412
+ pub const PRIoLEAST64: &[u8; 3] = b"lo\0";
413
+ pub const PRIoFAST8: &[u8; 2] = b"o\0";
414
+ pub const PRIoFAST16: &[u8; 3] = b"lo\0";
415
+ pub const PRIoFAST32: &[u8; 3] = b"lo\0";
416
+ pub const PRIoFAST64: &[u8; 3] = b"lo\0";
417
+ pub const PRIu8: &[u8; 2] = b"u\0";
418
+ pub const PRIu16: &[u8; 2] = b"u\0";
419
+ pub const PRIu32: &[u8; 2] = b"u\0";
420
+ pub const PRIu64: &[u8; 3] = b"lu\0";
421
+ pub const PRIuLEAST8: &[u8; 2] = b"u\0";
422
+ pub const PRIuLEAST16: &[u8; 2] = b"u\0";
423
+ pub const PRIuLEAST32: &[u8; 2] = b"u\0";
424
+ pub const PRIuLEAST64: &[u8; 3] = b"lu\0";
425
+ pub const PRIuFAST8: &[u8; 2] = b"u\0";
426
+ pub const PRIuFAST16: &[u8; 3] = b"lu\0";
427
+ pub const PRIuFAST32: &[u8; 3] = b"lu\0";
428
+ pub const PRIuFAST64: &[u8; 3] = b"lu\0";
429
+ pub const PRIx8: &[u8; 2] = b"x\0";
430
+ pub const PRIx16: &[u8; 2] = b"x\0";
431
+ pub const PRIx32: &[u8; 2] = b"x\0";
432
+ pub const PRIx64: &[u8; 3] = b"lx\0";
433
+ pub const PRIxLEAST8: &[u8; 2] = b"x\0";
434
+ pub const PRIxLEAST16: &[u8; 2] = b"x\0";
435
+ pub const PRIxLEAST32: &[u8; 2] = b"x\0";
436
+ pub const PRIxLEAST64: &[u8; 3] = b"lx\0";
437
+ pub const PRIxFAST8: &[u8; 2] = b"x\0";
438
+ pub const PRIxFAST16: &[u8; 3] = b"lx\0";
439
+ pub const PRIxFAST32: &[u8; 3] = b"lx\0";
440
+ pub const PRIxFAST64: &[u8; 3] = b"lx\0";
441
+ pub const PRIX8: &[u8; 2] = b"X\0";
442
+ pub const PRIX16: &[u8; 2] = b"X\0";
443
+ pub const PRIX32: &[u8; 2] = b"X\0";
444
+ pub const PRIX64: &[u8; 3] = b"lX\0";
445
+ pub const PRIXLEAST8: &[u8; 2] = b"X\0";
446
+ pub const PRIXLEAST16: &[u8; 2] = b"X\0";
447
+ pub const PRIXLEAST32: &[u8; 2] = b"X\0";
448
+ pub const PRIXLEAST64: &[u8; 3] = b"lX\0";
449
+ pub const PRIXFAST8: &[u8; 2] = b"X\0";
450
+ pub const PRIXFAST16: &[u8; 3] = b"lX\0";
451
+ pub const PRIXFAST32: &[u8; 3] = b"lX\0";
452
+ pub const PRIXFAST64: &[u8; 3] = b"lX\0";
453
+ pub const PRIdMAX: &[u8; 3] = b"ld\0";
454
+ pub const PRIiMAX: &[u8; 3] = b"li\0";
455
+ pub const PRIoMAX: &[u8; 3] = b"lo\0";
456
+ pub const PRIuMAX: &[u8; 3] = b"lu\0";
457
+ pub const PRIxMAX: &[u8; 3] = b"lx\0";
458
+ pub const PRIXMAX: &[u8; 3] = b"lX\0";
459
+ pub const PRIdPTR: &[u8; 3] = b"ld\0";
460
+ pub const PRIiPTR: &[u8; 3] = b"li\0";
461
+ pub const PRIoPTR: &[u8; 3] = b"lo\0";
462
+ pub const PRIuPTR: &[u8; 3] = b"lu\0";
463
+ pub const PRIxPTR: &[u8; 3] = b"lx\0";
464
+ pub const PRIXPTR: &[u8; 3] = b"lX\0";
465
+ pub const SCNd8: &[u8; 4] = b"hhd\0";
466
+ pub const SCNd16: &[u8; 3] = b"hd\0";
467
+ pub const SCNd32: &[u8; 2] = b"d\0";
468
+ pub const SCNd64: &[u8; 3] = b"ld\0";
469
+ pub const SCNdLEAST8: &[u8; 4] = b"hhd\0";
470
+ pub const SCNdLEAST16: &[u8; 3] = b"hd\0";
471
+ pub const SCNdLEAST32: &[u8; 2] = b"d\0";
472
+ pub const SCNdLEAST64: &[u8; 3] = b"ld\0";
473
+ pub const SCNdFAST8: &[u8; 4] = b"hhd\0";
474
+ pub const SCNdFAST16: &[u8; 3] = b"ld\0";
475
+ pub const SCNdFAST32: &[u8; 3] = b"ld\0";
476
+ pub const SCNdFAST64: &[u8; 3] = b"ld\0";
477
+ pub const SCNi8: &[u8; 4] = b"hhi\0";
478
+ pub const SCNi16: &[u8; 3] = b"hi\0";
479
+ pub const SCNi32: &[u8; 2] = b"i\0";
480
+ pub const SCNi64: &[u8; 3] = b"li\0";
481
+ pub const SCNiLEAST8: &[u8; 4] = b"hhi\0";
482
+ pub const SCNiLEAST16: &[u8; 3] = b"hi\0";
483
+ pub const SCNiLEAST32: &[u8; 2] = b"i\0";
484
+ pub const SCNiLEAST64: &[u8; 3] = b"li\0";
485
+ pub const SCNiFAST8: &[u8; 4] = b"hhi\0";
486
+ pub const SCNiFAST16: &[u8; 3] = b"li\0";
487
+ pub const SCNiFAST32: &[u8; 3] = b"li\0";
488
+ pub const SCNiFAST64: &[u8; 3] = b"li\0";
489
+ pub const SCNu8: &[u8; 4] = b"hhu\0";
490
+ pub const SCNu16: &[u8; 3] = b"hu\0";
491
+ pub const SCNu32: &[u8; 2] = b"u\0";
492
+ pub const SCNu64: &[u8; 3] = b"lu\0";
493
+ pub const SCNuLEAST8: &[u8; 4] = b"hhu\0";
494
+ pub const SCNuLEAST16: &[u8; 3] = b"hu\0";
495
+ pub const SCNuLEAST32: &[u8; 2] = b"u\0";
496
+ pub const SCNuLEAST64: &[u8; 3] = b"lu\0";
497
+ pub const SCNuFAST8: &[u8; 4] = b"hhu\0";
498
+ pub const SCNuFAST16: &[u8; 3] = b"lu\0";
499
+ pub const SCNuFAST32: &[u8; 3] = b"lu\0";
500
+ pub const SCNuFAST64: &[u8; 3] = b"lu\0";
501
+ pub const SCNo8: &[u8; 4] = b"hho\0";
502
+ pub const SCNo16: &[u8; 3] = b"ho\0";
503
+ pub const SCNo32: &[u8; 2] = b"o\0";
504
+ pub const SCNo64: &[u8; 3] = b"lo\0";
505
+ pub const SCNoLEAST8: &[u8; 4] = b"hho\0";
506
+ pub const SCNoLEAST16: &[u8; 3] = b"ho\0";
507
+ pub const SCNoLEAST32: &[u8; 2] = b"o\0";
508
+ pub const SCNoLEAST64: &[u8; 3] = b"lo\0";
509
+ pub const SCNoFAST8: &[u8; 4] = b"hho\0";
510
+ pub const SCNoFAST16: &[u8; 3] = b"lo\0";
511
+ pub const SCNoFAST32: &[u8; 3] = b"lo\0";
512
+ pub const SCNoFAST64: &[u8; 3] = b"lo\0";
513
+ pub const SCNx8: &[u8; 4] = b"hhx\0";
514
+ pub const SCNx16: &[u8; 3] = b"hx\0";
515
+ pub const SCNx32: &[u8; 2] = b"x\0";
516
+ pub const SCNx64: &[u8; 3] = b"lx\0";
517
+ pub const SCNxLEAST8: &[u8; 4] = b"hhx\0";
518
+ pub const SCNxLEAST16: &[u8; 3] = b"hx\0";
519
+ pub const SCNxLEAST32: &[u8; 2] = b"x\0";
520
+ pub const SCNxLEAST64: &[u8; 3] = b"lx\0";
521
+ pub const SCNxFAST8: &[u8; 4] = b"hhx\0";
522
+ pub const SCNxFAST16: &[u8; 3] = b"lx\0";
523
+ pub const SCNxFAST32: &[u8; 3] = b"lx\0";
524
+ pub const SCNxFAST64: &[u8; 3] = b"lx\0";
525
+ pub const SCNdMAX: &[u8; 3] = b"ld\0";
526
+ pub const SCNiMAX: &[u8; 3] = b"li\0";
527
+ pub const SCNoMAX: &[u8; 3] = b"lo\0";
528
+ pub const SCNuMAX: &[u8; 3] = b"lu\0";
529
+ pub const SCNxMAX: &[u8; 3] = b"lx\0";
530
+ pub const SCNdPTR: &[u8; 3] = b"ld\0";
531
+ pub const SCNiPTR: &[u8; 3] = b"li\0";
532
+ pub const SCNoPTR: &[u8; 3] = b"lo\0";
533
+ pub const SCNuPTR: &[u8; 3] = b"lu\0";
534
+ pub const SCNxPTR: &[u8; 3] = b"lx\0";
535
+ pub const STR_PROTO: &[u8; 10] = b"__proto__\0";
536
+ pub const STR_PROTO_LEN: u32 = 9;
537
+ pub const CFUNC_HAS_PROTOTYPE: u32 = 1;
538
+ pub type __u_char = ::std::os::raw::c_uchar;
539
+ pub type __u_short = ::std::os::raw::c_ushort;
540
+ pub type __u_int = ::std::os::raw::c_uint;
541
+ pub type __u_long = ::std::os::raw::c_ulong;
542
+ pub type __int8_t = ::std::os::raw::c_schar;
543
+ pub type __uint8_t = ::std::os::raw::c_uchar;
544
+ pub type __int16_t = ::std::os::raw::c_short;
545
+ pub type __uint16_t = ::std::os::raw::c_ushort;
546
+ pub type __int32_t = ::std::os::raw::c_int;
547
+ pub type __uint32_t = ::std::os::raw::c_uint;
548
+ pub type __int64_t = ::std::os::raw::c_long;
549
+ pub type __uint64_t = ::std::os::raw::c_ulong;
550
+ pub type __int_least8_t = __int8_t;
551
+ pub type __uint_least8_t = __uint8_t;
552
+ pub type __int_least16_t = __int16_t;
553
+ pub type __uint_least16_t = __uint16_t;
554
+ pub type __int_least32_t = __int32_t;
555
+ pub type __uint_least32_t = __uint32_t;
556
+ pub type __int_least64_t = __int64_t;
557
+ pub type __uint_least64_t = __uint64_t;
558
+ pub type __quad_t = ::std::os::raw::c_long;
559
+ pub type __u_quad_t = ::std::os::raw::c_ulong;
560
+ pub type __intmax_t = ::std::os::raw::c_long;
561
+ pub type __uintmax_t = ::std::os::raw::c_ulong;
562
+ pub type __dev_t = ::std::os::raw::c_ulong;
563
+ pub type __uid_t = ::std::os::raw::c_uint;
564
+ pub type __gid_t = ::std::os::raw::c_uint;
565
+ pub type __ino_t = ::std::os::raw::c_ulong;
566
+ pub type __ino64_t = ::std::os::raw::c_ulong;
567
+ pub type __mode_t = ::std::os::raw::c_uint;
568
+ pub type __nlink_t = ::std::os::raw::c_uint;
569
+ pub type __off_t = ::std::os::raw::c_long;
570
+ pub type __off64_t = ::std::os::raw::c_long;
571
+ pub type __pid_t = ::std::os::raw::c_int;
572
+ #[repr(C)]
573
+ #[derive(Debug, Copy, Clone)]
574
+ pub struct __fsid_t {
575
+ pub __val: [::std::os::raw::c_int; 2usize],
576
+ }
577
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
578
+ const _: () = {
579
+ ["Size of __fsid_t"][::std::mem::size_of::<__fsid_t>() - 8usize];
580
+ ["Alignment of __fsid_t"][::std::mem::align_of::<__fsid_t>() - 4usize];
581
+ ["Offset of field: __fsid_t::__val"][::std::mem::offset_of!(__fsid_t, __val) - 0usize];
582
+ };
583
+ pub type __clock_t = ::std::os::raw::c_long;
584
+ pub type __rlim_t = ::std::os::raw::c_ulong;
585
+ pub type __rlim64_t = ::std::os::raw::c_ulong;
586
+ pub type __id_t = ::std::os::raw::c_uint;
587
+ pub type __time_t = ::std::os::raw::c_long;
588
+ pub type __useconds_t = ::std::os::raw::c_uint;
589
+ pub type __suseconds_t = ::std::os::raw::c_long;
590
+ pub type __suseconds64_t = ::std::os::raw::c_long;
591
+ pub type __daddr_t = ::std::os::raw::c_int;
592
+ pub type __key_t = ::std::os::raw::c_int;
593
+ pub type __clockid_t = ::std::os::raw::c_int;
594
+ pub type __timer_t = *mut ::std::os::raw::c_void;
595
+ pub type __blksize_t = ::std::os::raw::c_int;
596
+ pub type __blkcnt_t = ::std::os::raw::c_long;
597
+ pub type __blkcnt64_t = ::std::os::raw::c_long;
598
+ pub type __fsblkcnt_t = ::std::os::raw::c_ulong;
599
+ pub type __fsblkcnt64_t = ::std::os::raw::c_ulong;
600
+ pub type __fsfilcnt_t = ::std::os::raw::c_ulong;
601
+ pub type __fsfilcnt64_t = ::std::os::raw::c_ulong;
602
+ pub type __fsword_t = ::std::os::raw::c_long;
603
+ pub type __ssize_t = ::std::os::raw::c_long;
604
+ pub type __syscall_slong_t = ::std::os::raw::c_long;
605
+ pub type __syscall_ulong_t = ::std::os::raw::c_ulong;
606
+ pub type __loff_t = __off64_t;
607
+ pub type __caddr_t = *mut ::std::os::raw::c_char;
608
+ pub type __intptr_t = ::std::os::raw::c_long;
609
+ pub type __socklen_t = ::std::os::raw::c_uint;
610
+ pub type __sig_atomic_t = ::std::os::raw::c_int;
611
+ pub type int_least8_t = __int_least8_t;
612
+ pub type int_least16_t = __int_least16_t;
613
+ pub type int_least32_t = __int_least32_t;
614
+ pub type int_least64_t = __int_least64_t;
615
+ pub type uint_least8_t = __uint_least8_t;
616
+ pub type uint_least16_t = __uint_least16_t;
617
+ pub type uint_least32_t = __uint_least32_t;
618
+ pub type uint_least64_t = __uint_least64_t;
619
+ pub type int_fast8_t = ::std::os::raw::c_schar;
620
+ pub type int_fast16_t = ::std::os::raw::c_long;
621
+ pub type int_fast32_t = ::std::os::raw::c_long;
622
+ pub type int_fast64_t = ::std::os::raw::c_long;
623
+ pub type uint_fast8_t = ::std::os::raw::c_uchar;
624
+ pub type uint_fast16_t = ::std::os::raw::c_ulong;
625
+ pub type uint_fast32_t = ::std::os::raw::c_ulong;
626
+ pub type uint_fast64_t = ::std::os::raw::c_ulong;
627
+ pub type intmax_t = __intmax_t;
628
+ pub type uintmax_t = __uintmax_t;
629
+ pub type wchar_t = ::std::os::raw::c_uint;
630
+ #[repr(C)]
631
+ #[repr(align(16))]
632
+ #[derive(Debug, Copy, Clone)]
633
+ pub struct max_align_t {
634
+ pub __clang_max_align_nonce1: ::std::os::raw::c_longlong,
635
+ pub __bindgen_padding_0: u64,
636
+ pub __clang_max_align_nonce2: u128,
637
+ }
638
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
639
+ const _: () = {
640
+ ["Size of max_align_t"][::std::mem::size_of::<max_align_t>() - 32usize];
641
+ ["Alignment of max_align_t"][::std::mem::align_of::<max_align_t>() - 16usize];
642
+ ["Offset of field: max_align_t::__clang_max_align_nonce1"]
643
+ [::std::mem::offset_of!(max_align_t, __clang_max_align_nonce1) - 0usize];
644
+ ["Offset of field: max_align_t::__clang_max_align_nonce2"]
645
+ [::std::mem::offset_of!(max_align_t, __clang_max_align_nonce2) - 16usize];
646
+ };
647
+ pub type u64_ = ::std::os::raw::c_ulonglong;
648
+ #[repr(C)]
649
+ #[derive(Debug, Copy, Clone)]
650
+ pub struct ant_object {
651
+ _unused: [u8; 0],
652
+ }
653
+ #[repr(C)]
654
+ #[derive(Debug, Copy, Clone)]
655
+ pub struct ant_shape {
656
+ _unused: [u8; 0],
657
+ }
658
+ #[repr(C)]
659
+ #[derive(Debug, Copy, Clone)]
660
+ pub struct ant_isolate_t {
661
+ _unused: [u8; 0],
662
+ }
663
+ pub type ant_t = ant_isolate_t;
664
+ #[repr(C)]
665
+ #[derive(Debug, Copy, Clone)]
666
+ pub struct ant_pool_block {
667
+ _unused: [u8; 0],
668
+ }
669
+ pub type ant_pool_block_t = ant_pool_block;
670
+ #[repr(C)]
671
+ #[derive(Debug, Copy, Clone)]
672
+ pub struct ant_http_request_s {
673
+ _unused: [u8; 0],
674
+ }
675
+ pub type ant_http_request_t = ant_http_request_s;
676
+ pub type ant_object_t = ant_object;
677
+ pub type ant_shape_t = ant_shape;
678
+ #[repr(C)]
679
+ #[derive(Debug, Copy, Clone)]
680
+ pub struct sv_vm {
681
+ _unused: [u8; 0],
682
+ }
683
+ pub type sv_vm_t = sv_vm;
684
+ #[repr(C)]
685
+ #[derive(Debug, Copy, Clone)]
686
+ pub struct sv_func {
687
+ _unused: [u8; 0],
688
+ }
689
+ pub type sv_func_t = sv_func;
690
+ #[repr(C)]
691
+ #[derive(Debug, Copy, Clone)]
692
+ pub struct sv_closure {
693
+ _unused: [u8; 0],
694
+ }
695
+ pub type sv_closure_t = sv_closure;
696
+ #[repr(C)]
697
+ #[derive(Debug, Copy, Clone)]
698
+ pub struct sv_frame {
699
+ _unused: [u8; 0],
700
+ }
701
+ pub type sv_frame_t = sv_frame;
702
+ pub type ant_handle_t = usize;
703
+ pub type ant_offset_t = u64;
704
+ pub type ant_value_t = u64;
705
+ pub type ant_cfunc_t = ::std::option::Option<
706
+ unsafe extern "C" fn(
707
+ arg1: *mut ant_t,
708
+ arg2: *mut ant_value_t,
709
+ arg3: ::std::os::raw::c_int,
710
+ ) -> ant_value_t,
711
+ >;
712
+ #[repr(C)]
713
+ #[derive(Debug, Copy, Clone)]
714
+ pub struct ant_cfunc_meta {
715
+ pub fn_: ant_cfunc_t,
716
+ pub name: *const ::std::os::raw::c_char,
717
+ pub length: u32,
718
+ pub flags: u8,
719
+ }
720
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
721
+ const _: () = {
722
+ ["Size of ant_cfunc_meta"][::std::mem::size_of::<ant_cfunc_meta>() - 24usize];
723
+ ["Alignment of ant_cfunc_meta"][::std::mem::align_of::<ant_cfunc_meta>() - 8usize];
724
+ ["Offset of field: ant_cfunc_meta::fn_"][::std::mem::offset_of!(ant_cfunc_meta, fn_) - 0usize];
725
+ ["Offset of field: ant_cfunc_meta::name"]
726
+ [::std::mem::offset_of!(ant_cfunc_meta, name) - 8usize];
727
+ ["Offset of field: ant_cfunc_meta::length"]
728
+ [::std::mem::offset_of!(ant_cfunc_meta, length) - 16usize];
729
+ ["Offset of field: ant_cfunc_meta::flags"]
730
+ [::std::mem::offset_of!(ant_cfunc_meta, flags) - 20usize];
731
+ };
732
+ pub type ant_cfunc_meta_t = ant_cfunc_meta;
733
+ pub type __gnuc_va_list = __BindgenOpaqueArray<u64, 4usize>;
734
+ #[repr(C)]
735
+ #[derive(Copy, Clone)]
736
+ pub struct __mbstate_t {
737
+ pub __count: ::std::os::raw::c_int,
738
+ pub __value: __mbstate_t__bindgen_ty_1,
739
+ }
740
+ #[repr(C)]
741
+ #[derive(Copy, Clone)]
742
+ pub union __mbstate_t__bindgen_ty_1 {
743
+ pub __wch: ::std::os::raw::c_uint,
744
+ pub __wchb: [::std::os::raw::c_char; 4usize],
745
+ }
746
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
747
+ const _: () = {
748
+ ["Size of __mbstate_t__bindgen_ty_1"]
749
+ [::std::mem::size_of::<__mbstate_t__bindgen_ty_1>() - 4usize];
750
+ ["Alignment of __mbstate_t__bindgen_ty_1"]
751
+ [::std::mem::align_of::<__mbstate_t__bindgen_ty_1>() - 4usize];
752
+ ["Offset of field: __mbstate_t__bindgen_ty_1::__wch"]
753
+ [::std::mem::offset_of!(__mbstate_t__bindgen_ty_1, __wch) - 0usize];
754
+ ["Offset of field: __mbstate_t__bindgen_ty_1::__wchb"]
755
+ [::std::mem::offset_of!(__mbstate_t__bindgen_ty_1, __wchb) - 0usize];
756
+ };
757
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
758
+ const _: () = {
759
+ ["Size of __mbstate_t"][::std::mem::size_of::<__mbstate_t>() - 8usize];
760
+ ["Alignment of __mbstate_t"][::std::mem::align_of::<__mbstate_t>() - 4usize];
761
+ ["Offset of field: __mbstate_t::__count"]
762
+ [::std::mem::offset_of!(__mbstate_t, __count) - 0usize];
763
+ ["Offset of field: __mbstate_t::__value"]
764
+ [::std::mem::offset_of!(__mbstate_t, __value) - 4usize];
765
+ };
766
+ #[repr(C)]
767
+ #[derive(Copy, Clone)]
768
+ pub struct _G_fpos_t {
769
+ pub __pos: __off_t,
770
+ pub __state: __mbstate_t,
771
+ }
772
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
773
+ const _: () = {
774
+ ["Size of _G_fpos_t"][::std::mem::size_of::<_G_fpos_t>() - 16usize];
775
+ ["Alignment of _G_fpos_t"][::std::mem::align_of::<_G_fpos_t>() - 8usize];
776
+ ["Offset of field: _G_fpos_t::__pos"][::std::mem::offset_of!(_G_fpos_t, __pos) - 0usize];
777
+ ["Offset of field: _G_fpos_t::__state"][::std::mem::offset_of!(_G_fpos_t, __state) - 8usize];
778
+ };
779
+ pub type __fpos_t = _G_fpos_t;
780
+ #[repr(C)]
781
+ #[derive(Copy, Clone)]
782
+ pub struct _G_fpos64_t {
783
+ pub __pos: __off64_t,
784
+ pub __state: __mbstate_t,
785
+ }
786
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
787
+ const _: () = {
788
+ ["Size of _G_fpos64_t"][::std::mem::size_of::<_G_fpos64_t>() - 16usize];
789
+ ["Alignment of _G_fpos64_t"][::std::mem::align_of::<_G_fpos64_t>() - 8usize];
790
+ ["Offset of field: _G_fpos64_t::__pos"][::std::mem::offset_of!(_G_fpos64_t, __pos) - 0usize];
791
+ ["Offset of field: _G_fpos64_t::__state"]
792
+ [::std::mem::offset_of!(_G_fpos64_t, __state) - 8usize];
793
+ };
794
+ pub type __fpos64_t = _G_fpos64_t;
795
+ pub type __FILE = _IO_FILE;
796
+ pub type FILE = _IO_FILE;
797
+ #[repr(C)]
798
+ #[derive(Debug, Copy, Clone)]
799
+ pub struct _IO_marker {
800
+ _unused: [u8; 0],
801
+ }
802
+ #[repr(C)]
803
+ #[derive(Debug, Copy, Clone)]
804
+ pub struct _IO_codecvt {
805
+ _unused: [u8; 0],
806
+ }
807
+ #[repr(C)]
808
+ #[derive(Debug, Copy, Clone)]
809
+ pub struct _IO_wide_data {
810
+ _unused: [u8; 0],
811
+ }
812
+ pub type _IO_lock_t = ::std::os::raw::c_void;
813
+ #[repr(C)]
814
+ #[derive(Debug, Copy, Clone)]
815
+ pub struct _IO_FILE {
816
+ pub _flags: ::std::os::raw::c_int,
817
+ pub _IO_read_ptr: *mut ::std::os::raw::c_char,
818
+ pub _IO_read_end: *mut ::std::os::raw::c_char,
819
+ pub _IO_read_base: *mut ::std::os::raw::c_char,
820
+ pub _IO_write_base: *mut ::std::os::raw::c_char,
821
+ pub _IO_write_ptr: *mut ::std::os::raw::c_char,
822
+ pub _IO_write_end: *mut ::std::os::raw::c_char,
823
+ pub _IO_buf_base: *mut ::std::os::raw::c_char,
824
+ pub _IO_buf_end: *mut ::std::os::raw::c_char,
825
+ pub _IO_save_base: *mut ::std::os::raw::c_char,
826
+ pub _IO_backup_base: *mut ::std::os::raw::c_char,
827
+ pub _IO_save_end: *mut ::std::os::raw::c_char,
828
+ pub _markers: *mut _IO_marker,
829
+ pub _chain: *mut _IO_FILE,
830
+ pub _fileno: ::std::os::raw::c_int,
831
+ pub _bitfield_align_1: [u32; 0],
832
+ pub _bitfield_1: __BindgenBitfieldUnit<[u8; 3usize]>,
833
+ pub _short_backupbuf: [::std::os::raw::c_char; 1usize],
834
+ pub _old_offset: __off_t,
835
+ pub _cur_column: ::std::os::raw::c_ushort,
836
+ pub _vtable_offset: ::std::os::raw::c_schar,
837
+ pub _shortbuf: [::std::os::raw::c_char; 1usize],
838
+ pub _lock: *mut _IO_lock_t,
839
+ pub _offset: __off64_t,
840
+ pub _codecvt: *mut _IO_codecvt,
841
+ pub _wide_data: *mut _IO_wide_data,
842
+ pub _freeres_list: *mut _IO_FILE,
843
+ pub _freeres_buf: *mut ::std::os::raw::c_void,
844
+ pub _prevchain: *mut *mut _IO_FILE,
845
+ pub _mode: ::std::os::raw::c_int,
846
+ pub _unused3: ::std::os::raw::c_int,
847
+ pub _total_written: __uint64_t,
848
+ pub _unused2: [::std::os::raw::c_char; 8usize],
849
+ }
850
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
851
+ const _: () = {
852
+ ["Size of _IO_FILE"][::std::mem::size_of::<_IO_FILE>() - 216usize];
853
+ ["Alignment of _IO_FILE"][::std::mem::align_of::<_IO_FILE>() - 8usize];
854
+ ["Offset of field: _IO_FILE::_flags"][::std::mem::offset_of!(_IO_FILE, _flags) - 0usize];
855
+ ["Offset of field: _IO_FILE::_IO_read_ptr"]
856
+ [::std::mem::offset_of!(_IO_FILE, _IO_read_ptr) - 8usize];
857
+ ["Offset of field: _IO_FILE::_IO_read_end"]
858
+ [::std::mem::offset_of!(_IO_FILE, _IO_read_end) - 16usize];
859
+ ["Offset of field: _IO_FILE::_IO_read_base"]
860
+ [::std::mem::offset_of!(_IO_FILE, _IO_read_base) - 24usize];
861
+ ["Offset of field: _IO_FILE::_IO_write_base"]
862
+ [::std::mem::offset_of!(_IO_FILE, _IO_write_base) - 32usize];
863
+ ["Offset of field: _IO_FILE::_IO_write_ptr"]
864
+ [::std::mem::offset_of!(_IO_FILE, _IO_write_ptr) - 40usize];
865
+ ["Offset of field: _IO_FILE::_IO_write_end"]
866
+ [::std::mem::offset_of!(_IO_FILE, _IO_write_end) - 48usize];
867
+ ["Offset of field: _IO_FILE::_IO_buf_base"]
868
+ [::std::mem::offset_of!(_IO_FILE, _IO_buf_base) - 56usize];
869
+ ["Offset of field: _IO_FILE::_IO_buf_end"]
870
+ [::std::mem::offset_of!(_IO_FILE, _IO_buf_end) - 64usize];
871
+ ["Offset of field: _IO_FILE::_IO_save_base"]
872
+ [::std::mem::offset_of!(_IO_FILE, _IO_save_base) - 72usize];
873
+ ["Offset of field: _IO_FILE::_IO_backup_base"]
874
+ [::std::mem::offset_of!(_IO_FILE, _IO_backup_base) - 80usize];
875
+ ["Offset of field: _IO_FILE::_IO_save_end"]
876
+ [::std::mem::offset_of!(_IO_FILE, _IO_save_end) - 88usize];
877
+ ["Offset of field: _IO_FILE::_markers"][::std::mem::offset_of!(_IO_FILE, _markers) - 96usize];
878
+ ["Offset of field: _IO_FILE::_chain"][::std::mem::offset_of!(_IO_FILE, _chain) - 104usize];
879
+ ["Offset of field: _IO_FILE::_fileno"][::std::mem::offset_of!(_IO_FILE, _fileno) - 112usize];
880
+ ["Offset of field: _IO_FILE::_short_backupbuf"]
881
+ [::std::mem::offset_of!(_IO_FILE, _short_backupbuf) - 119usize];
882
+ ["Offset of field: _IO_FILE::_old_offset"]
883
+ [::std::mem::offset_of!(_IO_FILE, _old_offset) - 120usize];
884
+ ["Offset of field: _IO_FILE::_cur_column"]
885
+ [::std::mem::offset_of!(_IO_FILE, _cur_column) - 128usize];
886
+ ["Offset of field: _IO_FILE::_vtable_offset"]
887
+ [::std::mem::offset_of!(_IO_FILE, _vtable_offset) - 130usize];
888
+ ["Offset of field: _IO_FILE::_shortbuf"]
889
+ [::std::mem::offset_of!(_IO_FILE, _shortbuf) - 131usize];
890
+ ["Offset of field: _IO_FILE::_lock"][::std::mem::offset_of!(_IO_FILE, _lock) - 136usize];
891
+ ["Offset of field: _IO_FILE::_offset"][::std::mem::offset_of!(_IO_FILE, _offset) - 144usize];
892
+ ["Offset of field: _IO_FILE::_codecvt"][::std::mem::offset_of!(_IO_FILE, _codecvt) - 152usize];
893
+ ["Offset of field: _IO_FILE::_wide_data"]
894
+ [::std::mem::offset_of!(_IO_FILE, _wide_data) - 160usize];
895
+ ["Offset of field: _IO_FILE::_freeres_list"]
896
+ [::std::mem::offset_of!(_IO_FILE, _freeres_list) - 168usize];
897
+ ["Offset of field: _IO_FILE::_freeres_buf"]
898
+ [::std::mem::offset_of!(_IO_FILE, _freeres_buf) - 176usize];
899
+ ["Offset of field: _IO_FILE::_prevchain"]
900
+ [::std::mem::offset_of!(_IO_FILE, _prevchain) - 184usize];
901
+ ["Offset of field: _IO_FILE::_mode"][::std::mem::offset_of!(_IO_FILE, _mode) - 192usize];
902
+ ["Offset of field: _IO_FILE::_unused3"][::std::mem::offset_of!(_IO_FILE, _unused3) - 196usize];
903
+ ["Offset of field: _IO_FILE::_total_written"]
904
+ [::std::mem::offset_of!(_IO_FILE, _total_written) - 200usize];
905
+ ["Offset of field: _IO_FILE::_unused2"][::std::mem::offset_of!(_IO_FILE, _unused2) - 208usize];
906
+ };
907
+ impl _IO_FILE {
908
+ #[inline]
909
+ pub fn _flags2(&self) -> ::std::os::raw::c_int {
910
+ unsafe { ::std::mem::transmute(self._bitfield_1.get(0usize, 24u8) as u32) }
911
+ }
912
+ #[inline]
913
+ pub fn set__flags2(&mut self, val: ::std::os::raw::c_int) {
914
+ unsafe {
915
+ let val: u32 = ::std::mem::transmute(val);
916
+ self._bitfield_1.set(0usize, 24u8, val as u64)
917
+ }
918
+ }
919
+ #[inline]
920
+ pub unsafe fn _flags2_raw(this: *const Self) -> ::std::os::raw::c_int {
921
+ unsafe {
922
+ ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 3usize]>>::raw_get(
923
+ ::std::ptr::addr_of!((*this)._bitfield_1),
924
+ 0usize,
925
+ 24u8,
926
+ ) as u32)
927
+ }
928
+ }
929
+ #[inline]
930
+ pub unsafe fn set__flags2_raw(this: *mut Self, val: ::std::os::raw::c_int) {
931
+ unsafe {
932
+ let val: u32 = ::std::mem::transmute(val);
933
+ <__BindgenBitfieldUnit<[u8; 3usize]>>::raw_set(
934
+ ::std::ptr::addr_of_mut!((*this)._bitfield_1),
935
+ 0usize,
936
+ 24u8,
937
+ val as u64,
938
+ )
939
+ }
940
+ }
941
+ #[inline]
942
+ pub fn new_bitfield_1(_flags2: ::std::os::raw::c_int) -> __BindgenBitfieldUnit<[u8; 3usize]> {
943
+ let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 3usize]> = Default::default();
944
+ __bindgen_bitfield_unit.set(0usize, 24u8, {
945
+ let _flags2: u32 = unsafe { ::std::mem::transmute(_flags2) };
946
+ _flags2 as u64
947
+ });
948
+ __bindgen_bitfield_unit
949
+ }
950
+ }
951
+ pub type cookie_read_function_t = ::std::option::Option<
952
+ unsafe extern "C" fn(
953
+ __cookie: *mut ::std::os::raw::c_void,
954
+ __buf: *mut ::std::os::raw::c_char,
955
+ __nbytes: usize,
956
+ ) -> __ssize_t,
957
+ >;
958
+ pub type cookie_write_function_t = ::std::option::Option<
959
+ unsafe extern "C" fn(
960
+ __cookie: *mut ::std::os::raw::c_void,
961
+ __buf: *const ::std::os::raw::c_char,
962
+ __nbytes: usize,
963
+ ) -> __ssize_t,
964
+ >;
965
+ pub type cookie_seek_function_t = ::std::option::Option<
966
+ unsafe extern "C" fn(
967
+ __cookie: *mut ::std::os::raw::c_void,
968
+ __pos: *mut __off64_t,
969
+ __w: ::std::os::raw::c_int,
970
+ ) -> ::std::os::raw::c_int,
971
+ >;
972
+ pub type cookie_close_function_t = ::std::option::Option<
973
+ unsafe extern "C" fn(__cookie: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int,
974
+ >;
975
+ #[repr(C)]
976
+ #[derive(Debug, Copy, Clone)]
977
+ pub struct _IO_cookie_io_functions_t {
978
+ pub read: cookie_read_function_t,
979
+ pub write: cookie_write_function_t,
980
+ pub seek: cookie_seek_function_t,
981
+ pub close: cookie_close_function_t,
982
+ }
983
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
984
+ const _: () = {
985
+ ["Size of _IO_cookie_io_functions_t"]
986
+ [::std::mem::size_of::<_IO_cookie_io_functions_t>() - 32usize];
987
+ ["Alignment of _IO_cookie_io_functions_t"]
988
+ [::std::mem::align_of::<_IO_cookie_io_functions_t>() - 8usize];
989
+ ["Offset of field: _IO_cookie_io_functions_t::read"]
990
+ [::std::mem::offset_of!(_IO_cookie_io_functions_t, read) - 0usize];
991
+ ["Offset of field: _IO_cookie_io_functions_t::write"]
992
+ [::std::mem::offset_of!(_IO_cookie_io_functions_t, write) - 8usize];
993
+ ["Offset of field: _IO_cookie_io_functions_t::seek"]
994
+ [::std::mem::offset_of!(_IO_cookie_io_functions_t, seek) - 16usize];
995
+ ["Offset of field: _IO_cookie_io_functions_t::close"]
996
+ [::std::mem::offset_of!(_IO_cookie_io_functions_t, close) - 24usize];
997
+ };
998
+ pub type cookie_io_functions_t = _IO_cookie_io_functions_t;
999
+ pub type va_list = __gnuc_va_list;
1000
+ pub type off_t = __off_t;
1001
+ pub type fpos_t = __fpos_t;
1002
+ unsafe extern "C" {
1003
+ pub static mut stdin: *mut FILE;
1004
+ }
1005
+ unsafe extern "C" {
1006
+ pub static mut stdout: *mut FILE;
1007
+ }
1008
+ unsafe extern "C" {
1009
+ pub static mut stderr: *mut FILE;
1010
+ }
1011
+ unsafe extern "C" {
1012
+ pub fn remove(__filename: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;
1013
+ }
1014
+ unsafe extern "C" {
1015
+ pub fn rename(
1016
+ __old: *const ::std::os::raw::c_char,
1017
+ __new: *const ::std::os::raw::c_char,
1018
+ ) -> ::std::os::raw::c_int;
1019
+ }
1020
+ unsafe extern "C" {
1021
+ pub fn renameat(
1022
+ __oldfd: ::std::os::raw::c_int,
1023
+ __old: *const ::std::os::raw::c_char,
1024
+ __newfd: ::std::os::raw::c_int,
1025
+ __new: *const ::std::os::raw::c_char,
1026
+ ) -> ::std::os::raw::c_int;
1027
+ }
1028
+ unsafe extern "C" {
1029
+ pub fn fclose(__stream: *mut FILE) -> ::std::os::raw::c_int;
1030
+ }
1031
+ unsafe extern "C" {
1032
+ pub fn tmpfile() -> *mut FILE;
1033
+ }
1034
+ unsafe extern "C" {
1035
+ pub fn tmpnam(arg1: *mut ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
1036
+ }
1037
+ unsafe extern "C" {
1038
+ pub fn tmpnam_r(__s: *mut ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
1039
+ }
1040
+ unsafe extern "C" {
1041
+ pub fn tempnam(
1042
+ __dir: *const ::std::os::raw::c_char,
1043
+ __pfx: *const ::std::os::raw::c_char,
1044
+ ) -> *mut ::std::os::raw::c_char;
1045
+ }
1046
+ unsafe extern "C" {
1047
+ pub fn fflush(__stream: *mut FILE) -> ::std::os::raw::c_int;
1048
+ }
1049
+ unsafe extern "C" {
1050
+ pub fn fflush_unlocked(__stream: *mut FILE) -> ::std::os::raw::c_int;
1051
+ }
1052
+ unsafe extern "C" {
1053
+ pub fn fopen(
1054
+ __filename: *const ::std::os::raw::c_char,
1055
+ __modes: *const ::std::os::raw::c_char,
1056
+ ) -> *mut FILE;
1057
+ }
1058
+ unsafe extern "C" {
1059
+ pub fn freopen(
1060
+ __filename: *const ::std::os::raw::c_char,
1061
+ __modes: *const ::std::os::raw::c_char,
1062
+ __stream: *mut FILE,
1063
+ ) -> *mut FILE;
1064
+ }
1065
+ unsafe extern "C" {
1066
+ pub fn fdopen(__fd: ::std::os::raw::c_int, __modes: *const ::std::os::raw::c_char)
1067
+ -> *mut FILE;
1068
+ }
1069
+ unsafe extern "C" {
1070
+ pub fn fopencookie(
1071
+ __magic_cookie: *mut ::std::os::raw::c_void,
1072
+ __modes: *const ::std::os::raw::c_char,
1073
+ __io_funcs: cookie_io_functions_t,
1074
+ ) -> *mut FILE;
1075
+ }
1076
+ unsafe extern "C" {
1077
+ pub fn fmemopen(
1078
+ __s: *mut ::std::os::raw::c_void,
1079
+ __len: usize,
1080
+ __modes: *const ::std::os::raw::c_char,
1081
+ ) -> *mut FILE;
1082
+ }
1083
+ unsafe extern "C" {
1084
+ pub fn open_memstream(
1085
+ __bufloc: *mut *mut ::std::os::raw::c_char,
1086
+ __sizeloc: *mut usize,
1087
+ ) -> *mut FILE;
1088
+ }
1089
+ unsafe extern "C" {
1090
+ pub fn setbuf(__stream: *mut FILE, __buf: *mut ::std::os::raw::c_char);
1091
+ }
1092
+ unsafe extern "C" {
1093
+ pub fn setvbuf(
1094
+ __stream: *mut FILE,
1095
+ __buf: *mut ::std::os::raw::c_char,
1096
+ __modes: ::std::os::raw::c_int,
1097
+ __n: usize,
1098
+ ) -> ::std::os::raw::c_int;
1099
+ }
1100
+ unsafe extern "C" {
1101
+ pub fn setbuffer(__stream: *mut FILE, __buf: *mut ::std::os::raw::c_char, __size: usize);
1102
+ }
1103
+ unsafe extern "C" {
1104
+ pub fn setlinebuf(__stream: *mut FILE);
1105
+ }
1106
+ unsafe extern "C" {
1107
+ pub fn fprintf(
1108
+ __stream: *mut FILE,
1109
+ __format: *const ::std::os::raw::c_char,
1110
+ ...
1111
+ ) -> ::std::os::raw::c_int;
1112
+ }
1113
+ unsafe extern "C" {
1114
+ pub fn printf(__format: *const ::std::os::raw::c_char, ...) -> ::std::os::raw::c_int;
1115
+ }
1116
+ unsafe extern "C" {
1117
+ pub fn sprintf(
1118
+ __s: *mut ::std::os::raw::c_char,
1119
+ __format: *const ::std::os::raw::c_char,
1120
+ ...
1121
+ ) -> ::std::os::raw::c_int;
1122
+ }
1123
+ unsafe extern "C" {
1124
+ pub fn vfprintf(
1125
+ __s: *mut FILE,
1126
+ __format: *const ::std::os::raw::c_char,
1127
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1128
+ ) -> ::std::os::raw::c_int;
1129
+ }
1130
+ unsafe extern "C" {
1131
+ pub fn vprintf(
1132
+ __format: *const ::std::os::raw::c_char,
1133
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1134
+ ) -> ::std::os::raw::c_int;
1135
+ }
1136
+ unsafe extern "C" {
1137
+ pub fn vsprintf(
1138
+ __s: *mut ::std::os::raw::c_char,
1139
+ __format: *const ::std::os::raw::c_char,
1140
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1141
+ ) -> ::std::os::raw::c_int;
1142
+ }
1143
+ unsafe extern "C" {
1144
+ pub fn snprintf(
1145
+ __s: *mut ::std::os::raw::c_char,
1146
+ __maxlen: ::std::os::raw::c_ulong,
1147
+ __format: *const ::std::os::raw::c_char,
1148
+ ...
1149
+ ) -> ::std::os::raw::c_int;
1150
+ }
1151
+ unsafe extern "C" {
1152
+ pub fn vsnprintf(
1153
+ __s: *mut ::std::os::raw::c_char,
1154
+ __maxlen: ::std::os::raw::c_ulong,
1155
+ __format: *const ::std::os::raw::c_char,
1156
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1157
+ ) -> ::std::os::raw::c_int;
1158
+ }
1159
+ unsafe extern "C" {
1160
+ pub fn vasprintf(
1161
+ __ptr: *mut *mut ::std::os::raw::c_char,
1162
+ __f: *const ::std::os::raw::c_char,
1163
+ __arg: __gnuc_va_list,
1164
+ ) -> ::std::os::raw::c_int;
1165
+ }
1166
+ unsafe extern "C" {
1167
+ pub fn __asprintf(
1168
+ __ptr: *mut *mut ::std::os::raw::c_char,
1169
+ __fmt: *const ::std::os::raw::c_char,
1170
+ ...
1171
+ ) -> ::std::os::raw::c_int;
1172
+ }
1173
+ unsafe extern "C" {
1174
+ pub fn asprintf(
1175
+ __ptr: *mut *mut ::std::os::raw::c_char,
1176
+ __fmt: *const ::std::os::raw::c_char,
1177
+ ...
1178
+ ) -> ::std::os::raw::c_int;
1179
+ }
1180
+ unsafe extern "C" {
1181
+ pub fn vdprintf(
1182
+ __fd: ::std::os::raw::c_int,
1183
+ __fmt: *const ::std::os::raw::c_char,
1184
+ __arg: __gnuc_va_list,
1185
+ ) -> ::std::os::raw::c_int;
1186
+ }
1187
+ unsafe extern "C" {
1188
+ pub fn dprintf(
1189
+ __fd: ::std::os::raw::c_int,
1190
+ __fmt: *const ::std::os::raw::c_char,
1191
+ ...
1192
+ ) -> ::std::os::raw::c_int;
1193
+ }
1194
+ unsafe extern "C" {
1195
+ pub fn fscanf(
1196
+ __stream: *mut FILE,
1197
+ __format: *const ::std::os::raw::c_char,
1198
+ ...
1199
+ ) -> ::std::os::raw::c_int;
1200
+ }
1201
+ unsafe extern "C" {
1202
+ pub fn scanf(__format: *const ::std::os::raw::c_char, ...) -> ::std::os::raw::c_int;
1203
+ }
1204
+ unsafe extern "C" {
1205
+ pub fn sscanf(
1206
+ __s: *const ::std::os::raw::c_char,
1207
+ __format: *const ::std::os::raw::c_char,
1208
+ ...
1209
+ ) -> ::std::os::raw::c_int;
1210
+ }
1211
+ pub type _Float128 = u128;
1212
+ pub type _Float32 = f32;
1213
+ pub type _Float64 = f64;
1214
+ pub type _Float32x = f64;
1215
+ pub type _Float64x = u128;
1216
+ unsafe extern "C" {
1217
+ #[link_name = "\u{1}__isoc99_fscanf"]
1218
+ pub fn fscanf1(
1219
+ __stream: *mut FILE,
1220
+ __format: *const ::std::os::raw::c_char,
1221
+ ...
1222
+ ) -> ::std::os::raw::c_int;
1223
+ }
1224
+ unsafe extern "C" {
1225
+ #[link_name = "\u{1}__isoc99_scanf"]
1226
+ pub fn scanf1(__format: *const ::std::os::raw::c_char, ...) -> ::std::os::raw::c_int;
1227
+ }
1228
+ unsafe extern "C" {
1229
+ #[link_name = "\u{1}__isoc99_sscanf"]
1230
+ pub fn sscanf1(
1231
+ __s: *const ::std::os::raw::c_char,
1232
+ __format: *const ::std::os::raw::c_char,
1233
+ ...
1234
+ ) -> ::std::os::raw::c_int;
1235
+ }
1236
+ unsafe extern "C" {
1237
+ pub fn vfscanf(
1238
+ __s: *mut FILE,
1239
+ __format: *const ::std::os::raw::c_char,
1240
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1241
+ ) -> ::std::os::raw::c_int;
1242
+ }
1243
+ unsafe extern "C" {
1244
+ pub fn vscanf(
1245
+ __format: *const ::std::os::raw::c_char,
1246
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1247
+ ) -> ::std::os::raw::c_int;
1248
+ }
1249
+ unsafe extern "C" {
1250
+ pub fn vsscanf(
1251
+ __s: *const ::std::os::raw::c_char,
1252
+ __format: *const ::std::os::raw::c_char,
1253
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1254
+ ) -> ::std::os::raw::c_int;
1255
+ }
1256
+ unsafe extern "C" {
1257
+ #[link_name = "\u{1}__isoc99_vfscanf"]
1258
+ pub fn vfscanf1(
1259
+ __s: *mut FILE,
1260
+ __format: *const ::std::os::raw::c_char,
1261
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1262
+ ) -> ::std::os::raw::c_int;
1263
+ }
1264
+ unsafe extern "C" {
1265
+ #[link_name = "\u{1}__isoc99_vscanf"]
1266
+ pub fn vscanf1(
1267
+ __format: *const ::std::os::raw::c_char,
1268
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1269
+ ) -> ::std::os::raw::c_int;
1270
+ }
1271
+ unsafe extern "C" {
1272
+ #[link_name = "\u{1}__isoc99_vsscanf"]
1273
+ pub fn vsscanf1(
1274
+ __s: *const ::std::os::raw::c_char,
1275
+ __format: *const ::std::os::raw::c_char,
1276
+ __arg: __BindgenOpaqueArray<u64, 4usize>,
1277
+ ) -> ::std::os::raw::c_int;
1278
+ }
1279
+ unsafe extern "C" {
1280
+ pub fn fgetc(__stream: *mut FILE) -> ::std::os::raw::c_int;
1281
+ }
1282
+ unsafe extern "C" {
1283
+ pub fn getc(__stream: *mut FILE) -> ::std::os::raw::c_int;
1284
+ }
1285
+ unsafe extern "C" {
1286
+ pub fn getchar() -> ::std::os::raw::c_int;
1287
+ }
1288
+ unsafe extern "C" {
1289
+ pub fn getc_unlocked(__stream: *mut FILE) -> ::std::os::raw::c_int;
1290
+ }
1291
+ unsafe extern "C" {
1292
+ pub fn getchar_unlocked() -> ::std::os::raw::c_int;
1293
+ }
1294
+ unsafe extern "C" {
1295
+ pub fn fgetc_unlocked(__stream: *mut FILE) -> ::std::os::raw::c_int;
1296
+ }
1297
+ unsafe extern "C" {
1298
+ pub fn fputc(__c: ::std::os::raw::c_int, __stream: *mut FILE) -> ::std::os::raw::c_int;
1299
+ }
1300
+ unsafe extern "C" {
1301
+ pub fn putc(__c: ::std::os::raw::c_int, __stream: *mut FILE) -> ::std::os::raw::c_int;
1302
+ }
1303
+ unsafe extern "C" {
1304
+ pub fn putchar(__c: ::std::os::raw::c_int) -> ::std::os::raw::c_int;
1305
+ }
1306
+ unsafe extern "C" {
1307
+ pub fn fputc_unlocked(__c: ::std::os::raw::c_int, __stream: *mut FILE)
1308
+ -> ::std::os::raw::c_int;
1309
+ }
1310
+ unsafe extern "C" {
1311
+ pub fn putc_unlocked(__c: ::std::os::raw::c_int, __stream: *mut FILE) -> ::std::os::raw::c_int;
1312
+ }
1313
+ unsafe extern "C" {
1314
+ pub fn putchar_unlocked(__c: ::std::os::raw::c_int) -> ::std::os::raw::c_int;
1315
+ }
1316
+ unsafe extern "C" {
1317
+ pub fn getw(__stream: *mut FILE) -> ::std::os::raw::c_int;
1318
+ }
1319
+ unsafe extern "C" {
1320
+ pub fn putw(__w: ::std::os::raw::c_int, __stream: *mut FILE) -> ::std::os::raw::c_int;
1321
+ }
1322
+ unsafe extern "C" {
1323
+ pub fn fgets(
1324
+ __s: *mut ::std::os::raw::c_char,
1325
+ __n: ::std::os::raw::c_int,
1326
+ __stream: *mut FILE,
1327
+ ) -> *mut ::std::os::raw::c_char;
1328
+ }
1329
+ unsafe extern "C" {
1330
+ pub fn __getdelim(
1331
+ __lineptr: *mut *mut ::std::os::raw::c_char,
1332
+ __n: *mut usize,
1333
+ __delimiter: ::std::os::raw::c_int,
1334
+ __stream: *mut FILE,
1335
+ ) -> __ssize_t;
1336
+ }
1337
+ unsafe extern "C" {
1338
+ pub fn getdelim(
1339
+ __lineptr: *mut *mut ::std::os::raw::c_char,
1340
+ __n: *mut usize,
1341
+ __delimiter: ::std::os::raw::c_int,
1342
+ __stream: *mut FILE,
1343
+ ) -> __ssize_t;
1344
+ }
1345
+ unsafe extern "C" {
1346
+ pub fn getline(
1347
+ __lineptr: *mut *mut ::std::os::raw::c_char,
1348
+ __n: *mut usize,
1349
+ __stream: *mut FILE,
1350
+ ) -> __ssize_t;
1351
+ }
1352
+ unsafe extern "C" {
1353
+ pub fn fputs(__s: *const ::std::os::raw::c_char, __stream: *mut FILE) -> ::std::os::raw::c_int;
1354
+ }
1355
+ unsafe extern "C" {
1356
+ pub fn puts(__s: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;
1357
+ }
1358
+ unsafe extern "C" {
1359
+ pub fn ungetc(__c: ::std::os::raw::c_int, __stream: *mut FILE) -> ::std::os::raw::c_int;
1360
+ }
1361
+ unsafe extern "C" {
1362
+ pub fn fread(
1363
+ __ptr: *mut ::std::os::raw::c_void,
1364
+ __size: ::std::os::raw::c_ulong,
1365
+ __n: ::std::os::raw::c_ulong,
1366
+ __stream: *mut FILE,
1367
+ ) -> ::std::os::raw::c_ulong;
1368
+ }
1369
+ unsafe extern "C" {
1370
+ pub fn fwrite(
1371
+ __ptr: *const ::std::os::raw::c_void,
1372
+ __size: ::std::os::raw::c_ulong,
1373
+ __n: ::std::os::raw::c_ulong,
1374
+ __s: *mut FILE,
1375
+ ) -> ::std::os::raw::c_ulong;
1376
+ }
1377
+ unsafe extern "C" {
1378
+ pub fn fread_unlocked(
1379
+ __ptr: *mut ::std::os::raw::c_void,
1380
+ __size: usize,
1381
+ __n: usize,
1382
+ __stream: *mut FILE,
1383
+ ) -> usize;
1384
+ }
1385
+ unsafe extern "C" {
1386
+ pub fn fwrite_unlocked(
1387
+ __ptr: *const ::std::os::raw::c_void,
1388
+ __size: usize,
1389
+ __n: usize,
1390
+ __stream: *mut FILE,
1391
+ ) -> usize;
1392
+ }
1393
+ unsafe extern "C" {
1394
+ pub fn fseek(
1395
+ __stream: *mut FILE,
1396
+ __off: ::std::os::raw::c_long,
1397
+ __whence: ::std::os::raw::c_int,
1398
+ ) -> ::std::os::raw::c_int;
1399
+ }
1400
+ unsafe extern "C" {
1401
+ pub fn ftell(__stream: *mut FILE) -> ::std::os::raw::c_long;
1402
+ }
1403
+ unsafe extern "C" {
1404
+ pub fn rewind(__stream: *mut FILE);
1405
+ }
1406
+ unsafe extern "C" {
1407
+ pub fn fseeko(
1408
+ __stream: *mut FILE,
1409
+ __off: __off_t,
1410
+ __whence: ::std::os::raw::c_int,
1411
+ ) -> ::std::os::raw::c_int;
1412
+ }
1413
+ unsafe extern "C" {
1414
+ pub fn ftello(__stream: *mut FILE) -> __off_t;
1415
+ }
1416
+ unsafe extern "C" {
1417
+ pub fn fgetpos(__stream: *mut FILE, __pos: *mut fpos_t) -> ::std::os::raw::c_int;
1418
+ }
1419
+ unsafe extern "C" {
1420
+ pub fn fsetpos(__stream: *mut FILE, __pos: *const fpos_t) -> ::std::os::raw::c_int;
1421
+ }
1422
+ unsafe extern "C" {
1423
+ pub fn clearerr(__stream: *mut FILE);
1424
+ }
1425
+ unsafe extern "C" {
1426
+ pub fn feof(__stream: *mut FILE) -> ::std::os::raw::c_int;
1427
+ }
1428
+ unsafe extern "C" {
1429
+ pub fn ferror(__stream: *mut FILE) -> ::std::os::raw::c_int;
1430
+ }
1431
+ unsafe extern "C" {
1432
+ pub fn clearerr_unlocked(__stream: *mut FILE);
1433
+ }
1434
+ unsafe extern "C" {
1435
+ pub fn feof_unlocked(__stream: *mut FILE) -> ::std::os::raw::c_int;
1436
+ }
1437
+ unsafe extern "C" {
1438
+ pub fn ferror_unlocked(__stream: *mut FILE) -> ::std::os::raw::c_int;
1439
+ }
1440
+ unsafe extern "C" {
1441
+ pub fn perror(__s: *const ::std::os::raw::c_char);
1442
+ }
1443
+ unsafe extern "C" {
1444
+ pub fn fileno(__stream: *mut FILE) -> ::std::os::raw::c_int;
1445
+ }
1446
+ unsafe extern "C" {
1447
+ pub fn fileno_unlocked(__stream: *mut FILE) -> ::std::os::raw::c_int;
1448
+ }
1449
+ unsafe extern "C" {
1450
+ pub fn pclose(__stream: *mut FILE) -> ::std::os::raw::c_int;
1451
+ }
1452
+ unsafe extern "C" {
1453
+ pub fn popen(
1454
+ __command: *const ::std::os::raw::c_char,
1455
+ __modes: *const ::std::os::raw::c_char,
1456
+ ) -> *mut FILE;
1457
+ }
1458
+ unsafe extern "C" {
1459
+ pub fn ctermid(__s: *mut ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
1460
+ }
1461
+ unsafe extern "C" {
1462
+ pub fn flockfile(__stream: *mut FILE);
1463
+ }
1464
+ unsafe extern "C" {
1465
+ pub fn ftrylockfile(__stream: *mut FILE) -> ::std::os::raw::c_int;
1466
+ }
1467
+ unsafe extern "C" {
1468
+ pub fn funlockfile(__stream: *mut FILE);
1469
+ }
1470
+ unsafe extern "C" {
1471
+ pub fn __uflow(arg1: *mut FILE) -> ::std::os::raw::c_int;
1472
+ }
1473
+ unsafe extern "C" {
1474
+ pub fn __overflow(arg1: *mut FILE, arg2: ::std::os::raw::c_int) -> ::std::os::raw::c_int;
1475
+ }
1476
+ #[repr(C)]
1477
+ #[derive(Debug, Copy, Clone)]
1478
+ pub struct div_t {
1479
+ pub quot: ::std::os::raw::c_int,
1480
+ pub rem: ::std::os::raw::c_int,
1481
+ }
1482
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1483
+ const _: () = {
1484
+ ["Size of div_t"][::std::mem::size_of::<div_t>() - 8usize];
1485
+ ["Alignment of div_t"][::std::mem::align_of::<div_t>() - 4usize];
1486
+ ["Offset of field: div_t::quot"][::std::mem::offset_of!(div_t, quot) - 0usize];
1487
+ ["Offset of field: div_t::rem"][::std::mem::offset_of!(div_t, rem) - 4usize];
1488
+ };
1489
+ #[repr(C)]
1490
+ #[derive(Debug, Copy, Clone)]
1491
+ pub struct ldiv_t {
1492
+ pub quot: ::std::os::raw::c_long,
1493
+ pub rem: ::std::os::raw::c_long,
1494
+ }
1495
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1496
+ const _: () = {
1497
+ ["Size of ldiv_t"][::std::mem::size_of::<ldiv_t>() - 16usize];
1498
+ ["Alignment of ldiv_t"][::std::mem::align_of::<ldiv_t>() - 8usize];
1499
+ ["Offset of field: ldiv_t::quot"][::std::mem::offset_of!(ldiv_t, quot) - 0usize];
1500
+ ["Offset of field: ldiv_t::rem"][::std::mem::offset_of!(ldiv_t, rem) - 8usize];
1501
+ };
1502
+ #[repr(C)]
1503
+ #[derive(Debug, Copy, Clone)]
1504
+ pub struct lldiv_t {
1505
+ pub quot: ::std::os::raw::c_longlong,
1506
+ pub rem: ::std::os::raw::c_longlong,
1507
+ }
1508
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1509
+ const _: () = {
1510
+ ["Size of lldiv_t"][::std::mem::size_of::<lldiv_t>() - 16usize];
1511
+ ["Alignment of lldiv_t"][::std::mem::align_of::<lldiv_t>() - 8usize];
1512
+ ["Offset of field: lldiv_t::quot"][::std::mem::offset_of!(lldiv_t, quot) - 0usize];
1513
+ ["Offset of field: lldiv_t::rem"][::std::mem::offset_of!(lldiv_t, rem) - 8usize];
1514
+ };
1515
+ unsafe extern "C" {
1516
+ pub fn __ctype_get_mb_cur_max() -> usize;
1517
+ }
1518
+ unsafe extern "C" {
1519
+ pub fn atof(__nptr: *const ::std::os::raw::c_char) -> f64;
1520
+ }
1521
+ unsafe extern "C" {
1522
+ pub fn atoi(__nptr: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;
1523
+ }
1524
+ unsafe extern "C" {
1525
+ pub fn atol(__nptr: *const ::std::os::raw::c_char) -> ::std::os::raw::c_long;
1526
+ }
1527
+ unsafe extern "C" {
1528
+ pub fn atoll(__nptr: *const ::std::os::raw::c_char) -> ::std::os::raw::c_longlong;
1529
+ }
1530
+ unsafe extern "C" {
1531
+ pub fn strtod(
1532
+ __nptr: *const ::std::os::raw::c_char,
1533
+ __endptr: *mut *mut ::std::os::raw::c_char,
1534
+ ) -> f64;
1535
+ }
1536
+ unsafe extern "C" {
1537
+ pub fn strtof(
1538
+ __nptr: *const ::std::os::raw::c_char,
1539
+ __endptr: *mut *mut ::std::os::raw::c_char,
1540
+ ) -> f32;
1541
+ }
1542
+ unsafe extern "C" {
1543
+ pub fn strtold(
1544
+ __nptr: *const ::std::os::raw::c_char,
1545
+ __endptr: *mut *mut ::std::os::raw::c_char,
1546
+ ) -> u128;
1547
+ }
1548
+ unsafe extern "C" {
1549
+ pub fn strtol(
1550
+ __nptr: *const ::std::os::raw::c_char,
1551
+ __endptr: *mut *mut ::std::os::raw::c_char,
1552
+ __base: ::std::os::raw::c_int,
1553
+ ) -> ::std::os::raw::c_long;
1554
+ }
1555
+ unsafe extern "C" {
1556
+ pub fn strtoul(
1557
+ __nptr: *const ::std::os::raw::c_char,
1558
+ __endptr: *mut *mut ::std::os::raw::c_char,
1559
+ __base: ::std::os::raw::c_int,
1560
+ ) -> ::std::os::raw::c_ulong;
1561
+ }
1562
+ unsafe extern "C" {
1563
+ pub fn strtoq(
1564
+ __nptr: *const ::std::os::raw::c_char,
1565
+ __endptr: *mut *mut ::std::os::raw::c_char,
1566
+ __base: ::std::os::raw::c_int,
1567
+ ) -> ::std::os::raw::c_longlong;
1568
+ }
1569
+ unsafe extern "C" {
1570
+ pub fn strtouq(
1571
+ __nptr: *const ::std::os::raw::c_char,
1572
+ __endptr: *mut *mut ::std::os::raw::c_char,
1573
+ __base: ::std::os::raw::c_int,
1574
+ ) -> ::std::os::raw::c_ulonglong;
1575
+ }
1576
+ unsafe extern "C" {
1577
+ pub fn strtoll(
1578
+ __nptr: *const ::std::os::raw::c_char,
1579
+ __endptr: *mut *mut ::std::os::raw::c_char,
1580
+ __base: ::std::os::raw::c_int,
1581
+ ) -> ::std::os::raw::c_longlong;
1582
+ }
1583
+ unsafe extern "C" {
1584
+ pub fn strtoull(
1585
+ __nptr: *const ::std::os::raw::c_char,
1586
+ __endptr: *mut *mut ::std::os::raw::c_char,
1587
+ __base: ::std::os::raw::c_int,
1588
+ ) -> ::std::os::raw::c_ulonglong;
1589
+ }
1590
+ unsafe extern "C" {
1591
+ pub fn l64a(__n: ::std::os::raw::c_long) -> *mut ::std::os::raw::c_char;
1592
+ }
1593
+ unsafe extern "C" {
1594
+ pub fn a64l(__s: *const ::std::os::raw::c_char) -> ::std::os::raw::c_long;
1595
+ }
1596
+ pub type u_char = __u_char;
1597
+ pub type u_short = __u_short;
1598
+ pub type u_int = __u_int;
1599
+ pub type u_long = __u_long;
1600
+ pub type quad_t = __quad_t;
1601
+ pub type u_quad_t = __u_quad_t;
1602
+ pub type fsid_t = __fsid_t;
1603
+ pub type loff_t = __loff_t;
1604
+ pub type ino_t = __ino_t;
1605
+ pub type dev_t = __dev_t;
1606
+ pub type gid_t = __gid_t;
1607
+ pub type mode_t = __mode_t;
1608
+ pub type nlink_t = __nlink_t;
1609
+ pub type uid_t = __uid_t;
1610
+ pub type pid_t = __pid_t;
1611
+ pub type id_t = __id_t;
1612
+ pub type daddr_t = __daddr_t;
1613
+ pub type caddr_t = __caddr_t;
1614
+ pub type key_t = __key_t;
1615
+ pub type clock_t = __clock_t;
1616
+ pub type clockid_t = __clockid_t;
1617
+ pub type time_t = __time_t;
1618
+ pub type timer_t = __timer_t;
1619
+ pub type ulong = ::std::os::raw::c_ulong;
1620
+ pub type ushort = ::std::os::raw::c_ushort;
1621
+ pub type uint = ::std::os::raw::c_uint;
1622
+ pub type u_int8_t = __uint8_t;
1623
+ pub type u_int16_t = __uint16_t;
1624
+ pub type u_int32_t = __uint32_t;
1625
+ pub type u_int64_t = __uint64_t;
1626
+ pub type register_t = ::std::os::raw::c_long;
1627
+ #[repr(C)]
1628
+ #[derive(Debug, Copy, Clone)]
1629
+ pub struct __sigset_t {
1630
+ pub __val: [::std::os::raw::c_ulong; 16usize],
1631
+ }
1632
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1633
+ const _: () = {
1634
+ ["Size of __sigset_t"][::std::mem::size_of::<__sigset_t>() - 128usize];
1635
+ ["Alignment of __sigset_t"][::std::mem::align_of::<__sigset_t>() - 8usize];
1636
+ ["Offset of field: __sigset_t::__val"][::std::mem::offset_of!(__sigset_t, __val) - 0usize];
1637
+ };
1638
+ pub type sigset_t = __sigset_t;
1639
+ #[repr(C)]
1640
+ #[derive(Debug, Copy, Clone)]
1641
+ pub struct timeval {
1642
+ pub tv_sec: __time_t,
1643
+ pub tv_usec: __suseconds_t,
1644
+ }
1645
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1646
+ const _: () = {
1647
+ ["Size of timeval"][::std::mem::size_of::<timeval>() - 16usize];
1648
+ ["Alignment of timeval"][::std::mem::align_of::<timeval>() - 8usize];
1649
+ ["Offset of field: timeval::tv_sec"][::std::mem::offset_of!(timeval, tv_sec) - 0usize];
1650
+ ["Offset of field: timeval::tv_usec"][::std::mem::offset_of!(timeval, tv_usec) - 8usize];
1651
+ };
1652
+ #[repr(C)]
1653
+ #[derive(Debug, Copy, Clone)]
1654
+ pub struct timespec {
1655
+ pub tv_sec: __time_t,
1656
+ pub tv_nsec: __syscall_slong_t,
1657
+ }
1658
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1659
+ const _: () = {
1660
+ ["Size of timespec"][::std::mem::size_of::<timespec>() - 16usize];
1661
+ ["Alignment of timespec"][::std::mem::align_of::<timespec>() - 8usize];
1662
+ ["Offset of field: timespec::tv_sec"][::std::mem::offset_of!(timespec, tv_sec) - 0usize];
1663
+ ["Offset of field: timespec::tv_nsec"][::std::mem::offset_of!(timespec, tv_nsec) - 8usize];
1664
+ };
1665
+ pub type suseconds_t = __suseconds_t;
1666
+ pub type __fd_mask = ::std::os::raw::c_long;
1667
+ #[repr(C)]
1668
+ #[derive(Debug, Copy, Clone)]
1669
+ pub struct fd_set {
1670
+ pub __fds_bits: [__fd_mask; 16usize],
1671
+ }
1672
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1673
+ const _: () = {
1674
+ ["Size of fd_set"][::std::mem::size_of::<fd_set>() - 128usize];
1675
+ ["Alignment of fd_set"][::std::mem::align_of::<fd_set>() - 8usize];
1676
+ ["Offset of field: fd_set::__fds_bits"][::std::mem::offset_of!(fd_set, __fds_bits) - 0usize];
1677
+ };
1678
+ pub type fd_mask = __fd_mask;
1679
+ unsafe extern "C" {
1680
+ pub fn select(
1681
+ __nfds: ::std::os::raw::c_int,
1682
+ __readfds: *mut fd_set,
1683
+ __writefds: *mut fd_set,
1684
+ __exceptfds: *mut fd_set,
1685
+ __timeout: *mut timeval,
1686
+ ) -> ::std::os::raw::c_int;
1687
+ }
1688
+ unsafe extern "C" {
1689
+ pub fn pselect(
1690
+ __nfds: ::std::os::raw::c_int,
1691
+ __readfds: *mut fd_set,
1692
+ __writefds: *mut fd_set,
1693
+ __exceptfds: *mut fd_set,
1694
+ __timeout: *const timespec,
1695
+ __sigmask: *const __sigset_t,
1696
+ ) -> ::std::os::raw::c_int;
1697
+ }
1698
+ pub type blksize_t = __blksize_t;
1699
+ pub type blkcnt_t = __blkcnt_t;
1700
+ pub type fsblkcnt_t = __fsblkcnt_t;
1701
+ pub type fsfilcnt_t = __fsfilcnt_t;
1702
+ #[repr(C)]
1703
+ #[derive(Copy, Clone)]
1704
+ pub union __atomic_wide_counter {
1705
+ pub __value64: ::std::os::raw::c_ulonglong,
1706
+ pub __value32: __atomic_wide_counter__bindgen_ty_1,
1707
+ }
1708
+ #[repr(C)]
1709
+ #[derive(Debug, Copy, Clone)]
1710
+ pub struct __atomic_wide_counter__bindgen_ty_1 {
1711
+ pub __low: ::std::os::raw::c_uint,
1712
+ pub __high: ::std::os::raw::c_uint,
1713
+ }
1714
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1715
+ const _: () = {
1716
+ ["Size of __atomic_wide_counter__bindgen_ty_1"]
1717
+ [::std::mem::size_of::<__atomic_wide_counter__bindgen_ty_1>() - 8usize];
1718
+ ["Alignment of __atomic_wide_counter__bindgen_ty_1"]
1719
+ [::std::mem::align_of::<__atomic_wide_counter__bindgen_ty_1>() - 4usize];
1720
+ ["Offset of field: __atomic_wide_counter__bindgen_ty_1::__low"]
1721
+ [::std::mem::offset_of!(__atomic_wide_counter__bindgen_ty_1, __low) - 0usize];
1722
+ ["Offset of field: __atomic_wide_counter__bindgen_ty_1::__high"]
1723
+ [::std::mem::offset_of!(__atomic_wide_counter__bindgen_ty_1, __high) - 4usize];
1724
+ };
1725
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1726
+ const _: () = {
1727
+ ["Size of __atomic_wide_counter"][::std::mem::size_of::<__atomic_wide_counter>() - 8usize];
1728
+ ["Alignment of __atomic_wide_counter"]
1729
+ [::std::mem::align_of::<__atomic_wide_counter>() - 8usize];
1730
+ ["Offset of field: __atomic_wide_counter::__value64"]
1731
+ [::std::mem::offset_of!(__atomic_wide_counter, __value64) - 0usize];
1732
+ ["Offset of field: __atomic_wide_counter::__value32"]
1733
+ [::std::mem::offset_of!(__atomic_wide_counter, __value32) - 0usize];
1734
+ };
1735
+ #[repr(C)]
1736
+ #[derive(Debug, Copy, Clone)]
1737
+ pub struct __pthread_internal_list {
1738
+ pub __prev: *mut __pthread_internal_list,
1739
+ pub __next: *mut __pthread_internal_list,
1740
+ }
1741
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1742
+ const _: () = {
1743
+ ["Size of __pthread_internal_list"][::std::mem::size_of::<__pthread_internal_list>() - 16usize];
1744
+ ["Alignment of __pthread_internal_list"]
1745
+ [::std::mem::align_of::<__pthread_internal_list>() - 8usize];
1746
+ ["Offset of field: __pthread_internal_list::__prev"]
1747
+ [::std::mem::offset_of!(__pthread_internal_list, __prev) - 0usize];
1748
+ ["Offset of field: __pthread_internal_list::__next"]
1749
+ [::std::mem::offset_of!(__pthread_internal_list, __next) - 8usize];
1750
+ };
1751
+ pub type __pthread_list_t = __pthread_internal_list;
1752
+ #[repr(C)]
1753
+ #[derive(Debug, Copy, Clone)]
1754
+ pub struct __pthread_internal_slist {
1755
+ pub __next: *mut __pthread_internal_slist,
1756
+ }
1757
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1758
+ const _: () = {
1759
+ ["Size of __pthread_internal_slist"]
1760
+ [::std::mem::size_of::<__pthread_internal_slist>() - 8usize];
1761
+ ["Alignment of __pthread_internal_slist"]
1762
+ [::std::mem::align_of::<__pthread_internal_slist>() - 8usize];
1763
+ ["Offset of field: __pthread_internal_slist::__next"]
1764
+ [::std::mem::offset_of!(__pthread_internal_slist, __next) - 0usize];
1765
+ };
1766
+ pub type __pthread_slist_t = __pthread_internal_slist;
1767
+ #[repr(C)]
1768
+ #[derive(Debug, Copy, Clone)]
1769
+ pub struct __pthread_mutex_s {
1770
+ pub __lock: ::std::os::raw::c_int,
1771
+ pub __count: ::std::os::raw::c_uint,
1772
+ pub __owner: ::std::os::raw::c_int,
1773
+ pub __nusers: ::std::os::raw::c_uint,
1774
+ pub __kind: ::std::os::raw::c_int,
1775
+ pub __spins: ::std::os::raw::c_int,
1776
+ pub __list: __pthread_list_t,
1777
+ }
1778
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1779
+ const _: () = {
1780
+ ["Size of __pthread_mutex_s"][::std::mem::size_of::<__pthread_mutex_s>() - 40usize];
1781
+ ["Alignment of __pthread_mutex_s"][::std::mem::align_of::<__pthread_mutex_s>() - 8usize];
1782
+ ["Offset of field: __pthread_mutex_s::__lock"]
1783
+ [::std::mem::offset_of!(__pthread_mutex_s, __lock) - 0usize];
1784
+ ["Offset of field: __pthread_mutex_s::__count"]
1785
+ [::std::mem::offset_of!(__pthread_mutex_s, __count) - 4usize];
1786
+ ["Offset of field: __pthread_mutex_s::__owner"]
1787
+ [::std::mem::offset_of!(__pthread_mutex_s, __owner) - 8usize];
1788
+ ["Offset of field: __pthread_mutex_s::__nusers"]
1789
+ [::std::mem::offset_of!(__pthread_mutex_s, __nusers) - 12usize];
1790
+ ["Offset of field: __pthread_mutex_s::__kind"]
1791
+ [::std::mem::offset_of!(__pthread_mutex_s, __kind) - 16usize];
1792
+ ["Offset of field: __pthread_mutex_s::__spins"]
1793
+ [::std::mem::offset_of!(__pthread_mutex_s, __spins) - 20usize];
1794
+ ["Offset of field: __pthread_mutex_s::__list"]
1795
+ [::std::mem::offset_of!(__pthread_mutex_s, __list) - 24usize];
1796
+ };
1797
+ #[repr(C)]
1798
+ #[derive(Debug, Copy, Clone)]
1799
+ pub struct __pthread_rwlock_arch_t {
1800
+ pub __readers: ::std::os::raw::c_uint,
1801
+ pub __writers: ::std::os::raw::c_uint,
1802
+ pub __wrphase_futex: ::std::os::raw::c_uint,
1803
+ pub __writers_futex: ::std::os::raw::c_uint,
1804
+ pub __pad3: ::std::os::raw::c_uint,
1805
+ pub __pad4: ::std::os::raw::c_uint,
1806
+ pub __cur_writer: ::std::os::raw::c_int,
1807
+ pub __shared: ::std::os::raw::c_int,
1808
+ pub __pad1: ::std::os::raw::c_ulong,
1809
+ pub __pad2: ::std::os::raw::c_ulong,
1810
+ pub __flags: ::std::os::raw::c_uint,
1811
+ }
1812
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1813
+ const _: () = {
1814
+ ["Size of __pthread_rwlock_arch_t"][::std::mem::size_of::<__pthread_rwlock_arch_t>() - 56usize];
1815
+ ["Alignment of __pthread_rwlock_arch_t"]
1816
+ [::std::mem::align_of::<__pthread_rwlock_arch_t>() - 8usize];
1817
+ ["Offset of field: __pthread_rwlock_arch_t::__readers"]
1818
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __readers) - 0usize];
1819
+ ["Offset of field: __pthread_rwlock_arch_t::__writers"]
1820
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __writers) - 4usize];
1821
+ ["Offset of field: __pthread_rwlock_arch_t::__wrphase_futex"]
1822
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __wrphase_futex) - 8usize];
1823
+ ["Offset of field: __pthread_rwlock_arch_t::__writers_futex"]
1824
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __writers_futex) - 12usize];
1825
+ ["Offset of field: __pthread_rwlock_arch_t::__pad3"]
1826
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __pad3) - 16usize];
1827
+ ["Offset of field: __pthread_rwlock_arch_t::__pad4"]
1828
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __pad4) - 20usize];
1829
+ ["Offset of field: __pthread_rwlock_arch_t::__cur_writer"]
1830
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __cur_writer) - 24usize];
1831
+ ["Offset of field: __pthread_rwlock_arch_t::__shared"]
1832
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __shared) - 28usize];
1833
+ ["Offset of field: __pthread_rwlock_arch_t::__pad1"]
1834
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __pad1) - 32usize];
1835
+ ["Offset of field: __pthread_rwlock_arch_t::__pad2"]
1836
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __pad2) - 40usize];
1837
+ ["Offset of field: __pthread_rwlock_arch_t::__flags"]
1838
+ [::std::mem::offset_of!(__pthread_rwlock_arch_t, __flags) - 48usize];
1839
+ };
1840
+ #[repr(C)]
1841
+ #[derive(Copy, Clone)]
1842
+ pub struct __pthread_cond_s {
1843
+ pub __wseq: __atomic_wide_counter,
1844
+ pub __g1_start: __atomic_wide_counter,
1845
+ pub __g_size: [::std::os::raw::c_uint; 2usize],
1846
+ pub __g1_orig_size: ::std::os::raw::c_uint,
1847
+ pub __wrefs: ::std::os::raw::c_uint,
1848
+ pub __g_signals: [::std::os::raw::c_uint; 2usize],
1849
+ pub __unused_initialized_1: ::std::os::raw::c_uint,
1850
+ pub __unused_initialized_2: ::std::os::raw::c_uint,
1851
+ }
1852
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1853
+ const _: () = {
1854
+ ["Size of __pthread_cond_s"][::std::mem::size_of::<__pthread_cond_s>() - 48usize];
1855
+ ["Alignment of __pthread_cond_s"][::std::mem::align_of::<__pthread_cond_s>() - 8usize];
1856
+ ["Offset of field: __pthread_cond_s::__wseq"]
1857
+ [::std::mem::offset_of!(__pthread_cond_s, __wseq) - 0usize];
1858
+ ["Offset of field: __pthread_cond_s::__g1_start"]
1859
+ [::std::mem::offset_of!(__pthread_cond_s, __g1_start) - 8usize];
1860
+ ["Offset of field: __pthread_cond_s::__g_size"]
1861
+ [::std::mem::offset_of!(__pthread_cond_s, __g_size) - 16usize];
1862
+ ["Offset of field: __pthread_cond_s::__g1_orig_size"]
1863
+ [::std::mem::offset_of!(__pthread_cond_s, __g1_orig_size) - 24usize];
1864
+ ["Offset of field: __pthread_cond_s::__wrefs"]
1865
+ [::std::mem::offset_of!(__pthread_cond_s, __wrefs) - 28usize];
1866
+ ["Offset of field: __pthread_cond_s::__g_signals"]
1867
+ [::std::mem::offset_of!(__pthread_cond_s, __g_signals) - 32usize];
1868
+ ["Offset of field: __pthread_cond_s::__unused_initialized_1"]
1869
+ [::std::mem::offset_of!(__pthread_cond_s, __unused_initialized_1) - 40usize];
1870
+ ["Offset of field: __pthread_cond_s::__unused_initialized_2"]
1871
+ [::std::mem::offset_of!(__pthread_cond_s, __unused_initialized_2) - 44usize];
1872
+ };
1873
+ pub type __tss_t = ::std::os::raw::c_uint;
1874
+ pub type __thrd_t = ::std::os::raw::c_ulong;
1875
+ #[repr(C)]
1876
+ #[derive(Debug, Copy, Clone)]
1877
+ pub struct __once_flag {
1878
+ pub __data: ::std::os::raw::c_int,
1879
+ }
1880
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1881
+ const _: () = {
1882
+ ["Size of __once_flag"][::std::mem::size_of::<__once_flag>() - 4usize];
1883
+ ["Alignment of __once_flag"][::std::mem::align_of::<__once_flag>() - 4usize];
1884
+ ["Offset of field: __once_flag::__data"][::std::mem::offset_of!(__once_flag, __data) - 0usize];
1885
+ };
1886
+ pub type pthread_t = ::std::os::raw::c_ulong;
1887
+ #[repr(C)]
1888
+ #[derive(Copy, Clone)]
1889
+ pub union pthread_mutexattr_t {
1890
+ pub __size: [::std::os::raw::c_char; 8usize],
1891
+ pub __align: ::std::os::raw::c_int,
1892
+ }
1893
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1894
+ const _: () = {
1895
+ ["Size of pthread_mutexattr_t"][::std::mem::size_of::<pthread_mutexattr_t>() - 8usize];
1896
+ ["Alignment of pthread_mutexattr_t"][::std::mem::align_of::<pthread_mutexattr_t>() - 4usize];
1897
+ ["Offset of field: pthread_mutexattr_t::__size"]
1898
+ [::std::mem::offset_of!(pthread_mutexattr_t, __size) - 0usize];
1899
+ ["Offset of field: pthread_mutexattr_t::__align"]
1900
+ [::std::mem::offset_of!(pthread_mutexattr_t, __align) - 0usize];
1901
+ };
1902
+ #[repr(C)]
1903
+ #[derive(Copy, Clone)]
1904
+ pub union pthread_condattr_t {
1905
+ pub __size: [::std::os::raw::c_char; 8usize],
1906
+ pub __align: ::std::os::raw::c_int,
1907
+ }
1908
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1909
+ const _: () = {
1910
+ ["Size of pthread_condattr_t"][::std::mem::size_of::<pthread_condattr_t>() - 8usize];
1911
+ ["Alignment of pthread_condattr_t"][::std::mem::align_of::<pthread_condattr_t>() - 4usize];
1912
+ ["Offset of field: pthread_condattr_t::__size"]
1913
+ [::std::mem::offset_of!(pthread_condattr_t, __size) - 0usize];
1914
+ ["Offset of field: pthread_condattr_t::__align"]
1915
+ [::std::mem::offset_of!(pthread_condattr_t, __align) - 0usize];
1916
+ };
1917
+ pub type pthread_key_t = ::std::os::raw::c_uint;
1918
+ pub type pthread_once_t = ::std::os::raw::c_int;
1919
+ #[repr(C)]
1920
+ #[derive(Copy, Clone)]
1921
+ pub union pthread_attr_t {
1922
+ pub __size: [::std::os::raw::c_char; 64usize],
1923
+ pub __align: ::std::os::raw::c_long,
1924
+ }
1925
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1926
+ const _: () = {
1927
+ ["Size of pthread_attr_t"][::std::mem::size_of::<pthread_attr_t>() - 64usize];
1928
+ ["Alignment of pthread_attr_t"][::std::mem::align_of::<pthread_attr_t>() - 8usize];
1929
+ ["Offset of field: pthread_attr_t::__size"]
1930
+ [::std::mem::offset_of!(pthread_attr_t, __size) - 0usize];
1931
+ ["Offset of field: pthread_attr_t::__align"]
1932
+ [::std::mem::offset_of!(pthread_attr_t, __align) - 0usize];
1933
+ };
1934
+ #[repr(C)]
1935
+ #[derive(Copy, Clone)]
1936
+ pub union pthread_mutex_t {
1937
+ pub __data: __pthread_mutex_s,
1938
+ pub __size: [::std::os::raw::c_char; 48usize],
1939
+ pub __align: ::std::os::raw::c_long,
1940
+ }
1941
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1942
+ const _: () = {
1943
+ ["Size of pthread_mutex_t"][::std::mem::size_of::<pthread_mutex_t>() - 48usize];
1944
+ ["Alignment of pthread_mutex_t"][::std::mem::align_of::<pthread_mutex_t>() - 8usize];
1945
+ ["Offset of field: pthread_mutex_t::__data"]
1946
+ [::std::mem::offset_of!(pthread_mutex_t, __data) - 0usize];
1947
+ ["Offset of field: pthread_mutex_t::__size"]
1948
+ [::std::mem::offset_of!(pthread_mutex_t, __size) - 0usize];
1949
+ ["Offset of field: pthread_mutex_t::__align"]
1950
+ [::std::mem::offset_of!(pthread_mutex_t, __align) - 0usize];
1951
+ };
1952
+ #[repr(C)]
1953
+ #[derive(Copy, Clone)]
1954
+ pub union pthread_cond_t {
1955
+ pub __data: __pthread_cond_s,
1956
+ pub __size: [::std::os::raw::c_char; 48usize],
1957
+ pub __align: ::std::os::raw::c_longlong,
1958
+ }
1959
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1960
+ const _: () = {
1961
+ ["Size of pthread_cond_t"][::std::mem::size_of::<pthread_cond_t>() - 48usize];
1962
+ ["Alignment of pthread_cond_t"][::std::mem::align_of::<pthread_cond_t>() - 8usize];
1963
+ ["Offset of field: pthread_cond_t::__data"]
1964
+ [::std::mem::offset_of!(pthread_cond_t, __data) - 0usize];
1965
+ ["Offset of field: pthread_cond_t::__size"]
1966
+ [::std::mem::offset_of!(pthread_cond_t, __size) - 0usize];
1967
+ ["Offset of field: pthread_cond_t::__align"]
1968
+ [::std::mem::offset_of!(pthread_cond_t, __align) - 0usize];
1969
+ };
1970
+ #[repr(C)]
1971
+ #[derive(Copy, Clone)]
1972
+ pub union pthread_rwlock_t {
1973
+ pub __data: __pthread_rwlock_arch_t,
1974
+ pub __size: [::std::os::raw::c_char; 56usize],
1975
+ pub __align: ::std::os::raw::c_long,
1976
+ }
1977
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1978
+ const _: () = {
1979
+ ["Size of pthread_rwlock_t"][::std::mem::size_of::<pthread_rwlock_t>() - 56usize];
1980
+ ["Alignment of pthread_rwlock_t"][::std::mem::align_of::<pthread_rwlock_t>() - 8usize];
1981
+ ["Offset of field: pthread_rwlock_t::__data"]
1982
+ [::std::mem::offset_of!(pthread_rwlock_t, __data) - 0usize];
1983
+ ["Offset of field: pthread_rwlock_t::__size"]
1984
+ [::std::mem::offset_of!(pthread_rwlock_t, __size) - 0usize];
1985
+ ["Offset of field: pthread_rwlock_t::__align"]
1986
+ [::std::mem::offset_of!(pthread_rwlock_t, __align) - 0usize];
1987
+ };
1988
+ #[repr(C)]
1989
+ #[derive(Copy, Clone)]
1990
+ pub union pthread_rwlockattr_t {
1991
+ pub __size: [::std::os::raw::c_char; 8usize],
1992
+ pub __align: ::std::os::raw::c_long,
1993
+ }
1994
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
1995
+ const _: () = {
1996
+ ["Size of pthread_rwlockattr_t"][::std::mem::size_of::<pthread_rwlockattr_t>() - 8usize];
1997
+ ["Alignment of pthread_rwlockattr_t"][::std::mem::align_of::<pthread_rwlockattr_t>() - 8usize];
1998
+ ["Offset of field: pthread_rwlockattr_t::__size"]
1999
+ [::std::mem::offset_of!(pthread_rwlockattr_t, __size) - 0usize];
2000
+ ["Offset of field: pthread_rwlockattr_t::__align"]
2001
+ [::std::mem::offset_of!(pthread_rwlockattr_t, __align) - 0usize];
2002
+ };
2003
+ pub type pthread_spinlock_t = ::std::os::raw::c_int;
2004
+ #[repr(C)]
2005
+ #[derive(Copy, Clone)]
2006
+ pub union pthread_barrier_t {
2007
+ pub __size: [::std::os::raw::c_char; 32usize],
2008
+ pub __align: ::std::os::raw::c_long,
2009
+ }
2010
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
2011
+ const _: () = {
2012
+ ["Size of pthread_barrier_t"][::std::mem::size_of::<pthread_barrier_t>() - 32usize];
2013
+ ["Alignment of pthread_barrier_t"][::std::mem::align_of::<pthread_barrier_t>() - 8usize];
2014
+ ["Offset of field: pthread_barrier_t::__size"]
2015
+ [::std::mem::offset_of!(pthread_barrier_t, __size) - 0usize];
2016
+ ["Offset of field: pthread_barrier_t::__align"]
2017
+ [::std::mem::offset_of!(pthread_barrier_t, __align) - 0usize];
2018
+ };
2019
+ #[repr(C)]
2020
+ #[derive(Copy, Clone)]
2021
+ pub union pthread_barrierattr_t {
2022
+ pub __size: [::std::os::raw::c_char; 8usize],
2023
+ pub __align: ::std::os::raw::c_int,
2024
+ }
2025
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
2026
+ const _: () = {
2027
+ ["Size of pthread_barrierattr_t"][::std::mem::size_of::<pthread_barrierattr_t>() - 8usize];
2028
+ ["Alignment of pthread_barrierattr_t"]
2029
+ [::std::mem::align_of::<pthread_barrierattr_t>() - 4usize];
2030
+ ["Offset of field: pthread_barrierattr_t::__size"]
2031
+ [::std::mem::offset_of!(pthread_barrierattr_t, __size) - 0usize];
2032
+ ["Offset of field: pthread_barrierattr_t::__align"]
2033
+ [::std::mem::offset_of!(pthread_barrierattr_t, __align) - 0usize];
2034
+ };
2035
+ unsafe extern "C" {
2036
+ pub fn random() -> ::std::os::raw::c_long;
2037
+ }
2038
+ unsafe extern "C" {
2039
+ pub fn srandom(__seed: ::std::os::raw::c_uint);
2040
+ }
2041
+ unsafe extern "C" {
2042
+ pub fn initstate(
2043
+ __seed: ::std::os::raw::c_uint,
2044
+ __statebuf: *mut ::std::os::raw::c_char,
2045
+ __statelen: usize,
2046
+ ) -> *mut ::std::os::raw::c_char;
2047
+ }
2048
+ unsafe extern "C" {
2049
+ pub fn setstate(__statebuf: *mut ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
2050
+ }
2051
+ #[repr(C)]
2052
+ #[derive(Debug, Copy, Clone)]
2053
+ pub struct random_data {
2054
+ pub fptr: *mut i32,
2055
+ pub rptr: *mut i32,
2056
+ pub state: *mut i32,
2057
+ pub rand_type: ::std::os::raw::c_int,
2058
+ pub rand_deg: ::std::os::raw::c_int,
2059
+ pub rand_sep: ::std::os::raw::c_int,
2060
+ pub end_ptr: *mut i32,
2061
+ }
2062
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
2063
+ const _: () = {
2064
+ ["Size of random_data"][::std::mem::size_of::<random_data>() - 48usize];
2065
+ ["Alignment of random_data"][::std::mem::align_of::<random_data>() - 8usize];
2066
+ ["Offset of field: random_data::fptr"][::std::mem::offset_of!(random_data, fptr) - 0usize];
2067
+ ["Offset of field: random_data::rptr"][::std::mem::offset_of!(random_data, rptr) - 8usize];
2068
+ ["Offset of field: random_data::state"][::std::mem::offset_of!(random_data, state) - 16usize];
2069
+ ["Offset of field: random_data::rand_type"]
2070
+ [::std::mem::offset_of!(random_data, rand_type) - 24usize];
2071
+ ["Offset of field: random_data::rand_deg"]
2072
+ [::std::mem::offset_of!(random_data, rand_deg) - 28usize];
2073
+ ["Offset of field: random_data::rand_sep"]
2074
+ [::std::mem::offset_of!(random_data, rand_sep) - 32usize];
2075
+ ["Offset of field: random_data::end_ptr"]
2076
+ [::std::mem::offset_of!(random_data, end_ptr) - 40usize];
2077
+ };
2078
+ unsafe extern "C" {
2079
+ pub fn random_r(__buf: *mut random_data, __result: *mut i32) -> ::std::os::raw::c_int;
2080
+ }
2081
+ unsafe extern "C" {
2082
+ pub fn srandom_r(
2083
+ __seed: ::std::os::raw::c_uint,
2084
+ __buf: *mut random_data,
2085
+ ) -> ::std::os::raw::c_int;
2086
+ }
2087
+ unsafe extern "C" {
2088
+ pub fn initstate_r(
2089
+ __seed: ::std::os::raw::c_uint,
2090
+ __statebuf: *mut ::std::os::raw::c_char,
2091
+ __statelen: usize,
2092
+ __buf: *mut random_data,
2093
+ ) -> ::std::os::raw::c_int;
2094
+ }
2095
+ unsafe extern "C" {
2096
+ pub fn setstate_r(
2097
+ __statebuf: *mut ::std::os::raw::c_char,
2098
+ __buf: *mut random_data,
2099
+ ) -> ::std::os::raw::c_int;
2100
+ }
2101
+ unsafe extern "C" {
2102
+ pub fn rand() -> ::std::os::raw::c_int;
2103
+ }
2104
+ unsafe extern "C" {
2105
+ pub fn srand(__seed: ::std::os::raw::c_uint);
2106
+ }
2107
+ unsafe extern "C" {
2108
+ pub fn rand_r(__seed: *mut ::std::os::raw::c_uint) -> ::std::os::raw::c_int;
2109
+ }
2110
+ unsafe extern "C" {
2111
+ pub fn drand48() -> f64;
2112
+ }
2113
+ unsafe extern "C" {
2114
+ pub fn erand48(__xsubi: *mut ::std::os::raw::c_ushort) -> f64;
2115
+ }
2116
+ unsafe extern "C" {
2117
+ pub fn lrand48() -> ::std::os::raw::c_long;
2118
+ }
2119
+ unsafe extern "C" {
2120
+ pub fn nrand48(__xsubi: *mut ::std::os::raw::c_ushort) -> ::std::os::raw::c_long;
2121
+ }
2122
+ unsafe extern "C" {
2123
+ pub fn mrand48() -> ::std::os::raw::c_long;
2124
+ }
2125
+ unsafe extern "C" {
2126
+ pub fn jrand48(__xsubi: *mut ::std::os::raw::c_ushort) -> ::std::os::raw::c_long;
2127
+ }
2128
+ unsafe extern "C" {
2129
+ pub fn srand48(__seedval: ::std::os::raw::c_long);
2130
+ }
2131
+ unsafe extern "C" {
2132
+ pub fn seed48(__seed16v: *mut ::std::os::raw::c_ushort) -> *mut ::std::os::raw::c_ushort;
2133
+ }
2134
+ unsafe extern "C" {
2135
+ pub fn lcong48(__param: *mut ::std::os::raw::c_ushort);
2136
+ }
2137
+ #[repr(C)]
2138
+ #[derive(Debug, Copy, Clone)]
2139
+ pub struct drand48_data {
2140
+ pub __x: [::std::os::raw::c_ushort; 3usize],
2141
+ pub __old_x: [::std::os::raw::c_ushort; 3usize],
2142
+ pub __c: ::std::os::raw::c_ushort,
2143
+ pub __init: ::std::os::raw::c_ushort,
2144
+ pub __a: ::std::os::raw::c_ulonglong,
2145
+ }
2146
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
2147
+ const _: () = {
2148
+ ["Size of drand48_data"][::std::mem::size_of::<drand48_data>() - 24usize];
2149
+ ["Alignment of drand48_data"][::std::mem::align_of::<drand48_data>() - 8usize];
2150
+ ["Offset of field: drand48_data::__x"][::std::mem::offset_of!(drand48_data, __x) - 0usize];
2151
+ ["Offset of field: drand48_data::__old_x"]
2152
+ [::std::mem::offset_of!(drand48_data, __old_x) - 6usize];
2153
+ ["Offset of field: drand48_data::__c"][::std::mem::offset_of!(drand48_data, __c) - 12usize];
2154
+ ["Offset of field: drand48_data::__init"]
2155
+ [::std::mem::offset_of!(drand48_data, __init) - 14usize];
2156
+ ["Offset of field: drand48_data::__a"][::std::mem::offset_of!(drand48_data, __a) - 16usize];
2157
+ };
2158
+ unsafe extern "C" {
2159
+ pub fn drand48_r(__buffer: *mut drand48_data, __result: *mut f64) -> ::std::os::raw::c_int;
2160
+ }
2161
+ unsafe extern "C" {
2162
+ pub fn erand48_r(
2163
+ __xsubi: *mut ::std::os::raw::c_ushort,
2164
+ __buffer: *mut drand48_data,
2165
+ __result: *mut f64,
2166
+ ) -> ::std::os::raw::c_int;
2167
+ }
2168
+ unsafe extern "C" {
2169
+ pub fn lrand48_r(
2170
+ __buffer: *mut drand48_data,
2171
+ __result: *mut ::std::os::raw::c_long,
2172
+ ) -> ::std::os::raw::c_int;
2173
+ }
2174
+ unsafe extern "C" {
2175
+ pub fn nrand48_r(
2176
+ __xsubi: *mut ::std::os::raw::c_ushort,
2177
+ __buffer: *mut drand48_data,
2178
+ __result: *mut ::std::os::raw::c_long,
2179
+ ) -> ::std::os::raw::c_int;
2180
+ }
2181
+ unsafe extern "C" {
2182
+ pub fn mrand48_r(
2183
+ __buffer: *mut drand48_data,
2184
+ __result: *mut ::std::os::raw::c_long,
2185
+ ) -> ::std::os::raw::c_int;
2186
+ }
2187
+ unsafe extern "C" {
2188
+ pub fn jrand48_r(
2189
+ __xsubi: *mut ::std::os::raw::c_ushort,
2190
+ __buffer: *mut drand48_data,
2191
+ __result: *mut ::std::os::raw::c_long,
2192
+ ) -> ::std::os::raw::c_int;
2193
+ }
2194
+ unsafe extern "C" {
2195
+ pub fn srand48_r(
2196
+ __seedval: ::std::os::raw::c_long,
2197
+ __buffer: *mut drand48_data,
2198
+ ) -> ::std::os::raw::c_int;
2199
+ }
2200
+ unsafe extern "C" {
2201
+ pub fn seed48_r(
2202
+ __seed16v: *mut ::std::os::raw::c_ushort,
2203
+ __buffer: *mut drand48_data,
2204
+ ) -> ::std::os::raw::c_int;
2205
+ }
2206
+ unsafe extern "C" {
2207
+ pub fn lcong48_r(
2208
+ __param: *mut ::std::os::raw::c_ushort,
2209
+ __buffer: *mut drand48_data,
2210
+ ) -> ::std::os::raw::c_int;
2211
+ }
2212
+ unsafe extern "C" {
2213
+ pub fn arc4random() -> __uint32_t;
2214
+ }
2215
+ unsafe extern "C" {
2216
+ pub fn arc4random_buf(__buf: *mut ::std::os::raw::c_void, __size: usize);
2217
+ }
2218
+ unsafe extern "C" {
2219
+ pub fn arc4random_uniform(__upper_bound: __uint32_t) -> __uint32_t;
2220
+ }
2221
+ unsafe extern "C" {
2222
+ pub fn malloc(__size: ::std::os::raw::c_ulong) -> *mut ::std::os::raw::c_void;
2223
+ }
2224
+ unsafe extern "C" {
2225
+ pub fn calloc(
2226
+ __nmemb: ::std::os::raw::c_ulong,
2227
+ __size: ::std::os::raw::c_ulong,
2228
+ ) -> *mut ::std::os::raw::c_void;
2229
+ }
2230
+ unsafe extern "C" {
2231
+ pub fn realloc(
2232
+ __ptr: *mut ::std::os::raw::c_void,
2233
+ __size: ::std::os::raw::c_ulong,
2234
+ ) -> *mut ::std::os::raw::c_void;
2235
+ }
2236
+ unsafe extern "C" {
2237
+ pub fn free(__ptr: *mut ::std::os::raw::c_void);
2238
+ }
2239
+ unsafe extern "C" {
2240
+ pub fn reallocarray(
2241
+ __ptr: *mut ::std::os::raw::c_void,
2242
+ __nmemb: usize,
2243
+ __size: usize,
2244
+ ) -> *mut ::std::os::raw::c_void;
2245
+ }
2246
+ unsafe extern "C" {
2247
+ pub fn alloca(__size: ::std::os::raw::c_ulong) -> *mut ::std::os::raw::c_void;
2248
+ }
2249
+ unsafe extern "C" {
2250
+ pub fn valloc(__size: usize) -> *mut ::std::os::raw::c_void;
2251
+ }
2252
+ unsafe extern "C" {
2253
+ pub fn posix_memalign(
2254
+ __memptr: *mut *mut ::std::os::raw::c_void,
2255
+ __alignment: usize,
2256
+ __size: usize,
2257
+ ) -> ::std::os::raw::c_int;
2258
+ }
2259
+ unsafe extern "C" {
2260
+ pub fn aligned_alloc(
2261
+ __alignment: ::std::os::raw::c_ulong,
2262
+ __size: ::std::os::raw::c_ulong,
2263
+ ) -> *mut ::std::os::raw::c_void;
2264
+ }
2265
+ unsafe extern "C" {
2266
+ pub fn abort() -> !;
2267
+ }
2268
+ unsafe extern "C" {
2269
+ pub fn atexit(__func: ::std::option::Option<unsafe extern "C" fn()>) -> ::std::os::raw::c_int;
2270
+ }
2271
+ unsafe extern "C" {
2272
+ pub fn at_quick_exit(
2273
+ __func: ::std::option::Option<unsafe extern "C" fn()>,
2274
+ ) -> ::std::os::raw::c_int;
2275
+ }
2276
+ unsafe extern "C" {
2277
+ pub fn on_exit(
2278
+ __func: ::std::option::Option<
2279
+ unsafe extern "C" fn(
2280
+ __status: ::std::os::raw::c_int,
2281
+ __arg: *mut ::std::os::raw::c_void,
2282
+ ),
2283
+ >,
2284
+ __arg: *mut ::std::os::raw::c_void,
2285
+ ) -> ::std::os::raw::c_int;
2286
+ }
2287
+ unsafe extern "C" {
2288
+ pub fn exit(__status: ::std::os::raw::c_int) -> !;
2289
+ }
2290
+ unsafe extern "C" {
2291
+ pub fn quick_exit(__status: ::std::os::raw::c_int) -> !;
2292
+ }
2293
+ unsafe extern "C" {
2294
+ pub fn _Exit(__status: ::std::os::raw::c_int) -> !;
2295
+ }
2296
+ unsafe extern "C" {
2297
+ pub fn getenv(__name: *const ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
2298
+ }
2299
+ unsafe extern "C" {
2300
+ pub fn putenv(__string: *mut ::std::os::raw::c_char) -> ::std::os::raw::c_int;
2301
+ }
2302
+ unsafe extern "C" {
2303
+ pub fn setenv(
2304
+ __name: *const ::std::os::raw::c_char,
2305
+ __value: *const ::std::os::raw::c_char,
2306
+ __replace: ::std::os::raw::c_int,
2307
+ ) -> ::std::os::raw::c_int;
2308
+ }
2309
+ unsafe extern "C" {
2310
+ pub fn unsetenv(__name: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;
2311
+ }
2312
+ unsafe extern "C" {
2313
+ pub fn clearenv() -> ::std::os::raw::c_int;
2314
+ }
2315
+ unsafe extern "C" {
2316
+ pub fn mktemp(__template: *mut ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
2317
+ }
2318
+ unsafe extern "C" {
2319
+ pub fn mkstemp(__template: *mut ::std::os::raw::c_char) -> ::std::os::raw::c_int;
2320
+ }
2321
+ unsafe extern "C" {
2322
+ pub fn mkstemps(
2323
+ __template: *mut ::std::os::raw::c_char,
2324
+ __suffixlen: ::std::os::raw::c_int,
2325
+ ) -> ::std::os::raw::c_int;
2326
+ }
2327
+ unsafe extern "C" {
2328
+ pub fn mkdtemp(__template: *mut ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
2329
+ }
2330
+ unsafe extern "C" {
2331
+ pub fn system(__command: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;
2332
+ }
2333
+ unsafe extern "C" {
2334
+ pub fn realpath(
2335
+ __name: *const ::std::os::raw::c_char,
2336
+ __resolved: *mut ::std::os::raw::c_char,
2337
+ ) -> *mut ::std::os::raw::c_char;
2338
+ }
2339
+ pub type __compar_fn_t = ::std::option::Option<
2340
+ unsafe extern "C" fn(
2341
+ arg1: *const ::std::os::raw::c_void,
2342
+ arg2: *const ::std::os::raw::c_void,
2343
+ ) -> ::std::os::raw::c_int,
2344
+ >;
2345
+ unsafe extern "C" {
2346
+ pub fn bsearch(
2347
+ __key: *const ::std::os::raw::c_void,
2348
+ __base: *const ::std::os::raw::c_void,
2349
+ __nmemb: usize,
2350
+ __size: usize,
2351
+ __compar: __compar_fn_t,
2352
+ ) -> *mut ::std::os::raw::c_void;
2353
+ }
2354
+ unsafe extern "C" {
2355
+ pub fn qsort(
2356
+ __base: *mut ::std::os::raw::c_void,
2357
+ __nmemb: usize,
2358
+ __size: usize,
2359
+ __compar: __compar_fn_t,
2360
+ );
2361
+ }
2362
+ unsafe extern "C" {
2363
+ pub fn abs(__x: ::std::os::raw::c_int) -> ::std::os::raw::c_int;
2364
+ }
2365
+ unsafe extern "C" {
2366
+ pub fn labs(__x: ::std::os::raw::c_long) -> ::std::os::raw::c_long;
2367
+ }
2368
+ unsafe extern "C" {
2369
+ pub fn llabs(__x: ::std::os::raw::c_longlong) -> ::std::os::raw::c_longlong;
2370
+ }
2371
+ unsafe extern "C" {
2372
+ pub fn div(__numer: ::std::os::raw::c_int, __denom: ::std::os::raw::c_int) -> div_t;
2373
+ }
2374
+ unsafe extern "C" {
2375
+ pub fn ldiv(__numer: ::std::os::raw::c_long, __denom: ::std::os::raw::c_long) -> ldiv_t;
2376
+ }
2377
+ unsafe extern "C" {
2378
+ pub fn lldiv(
2379
+ __numer: ::std::os::raw::c_longlong,
2380
+ __denom: ::std::os::raw::c_longlong,
2381
+ ) -> lldiv_t;
2382
+ }
2383
+ unsafe extern "C" {
2384
+ pub fn ecvt(
2385
+ __value: f64,
2386
+ __ndigit: ::std::os::raw::c_int,
2387
+ __decpt: *mut ::std::os::raw::c_int,
2388
+ __sign: *mut ::std::os::raw::c_int,
2389
+ ) -> *mut ::std::os::raw::c_char;
2390
+ }
2391
+ unsafe extern "C" {
2392
+ pub fn fcvt(
2393
+ __value: f64,
2394
+ __ndigit: ::std::os::raw::c_int,
2395
+ __decpt: *mut ::std::os::raw::c_int,
2396
+ __sign: *mut ::std::os::raw::c_int,
2397
+ ) -> *mut ::std::os::raw::c_char;
2398
+ }
2399
+ unsafe extern "C" {
2400
+ pub fn gcvt(
2401
+ __value: f64,
2402
+ __ndigit: ::std::os::raw::c_int,
2403
+ __buf: *mut ::std::os::raw::c_char,
2404
+ ) -> *mut ::std::os::raw::c_char;
2405
+ }
2406
+ unsafe extern "C" {
2407
+ pub fn qecvt(
2408
+ __value: u128,
2409
+ __ndigit: ::std::os::raw::c_int,
2410
+ __decpt: *mut ::std::os::raw::c_int,
2411
+ __sign: *mut ::std::os::raw::c_int,
2412
+ ) -> *mut ::std::os::raw::c_char;
2413
+ }
2414
+ unsafe extern "C" {
2415
+ pub fn qfcvt(
2416
+ __value: u128,
2417
+ __ndigit: ::std::os::raw::c_int,
2418
+ __decpt: *mut ::std::os::raw::c_int,
2419
+ __sign: *mut ::std::os::raw::c_int,
2420
+ ) -> *mut ::std::os::raw::c_char;
2421
+ }
2422
+ unsafe extern "C" {
2423
+ pub fn qgcvt(
2424
+ __value: u128,
2425
+ __ndigit: ::std::os::raw::c_int,
2426
+ __buf: *mut ::std::os::raw::c_char,
2427
+ ) -> *mut ::std::os::raw::c_char;
2428
+ }
2429
+ unsafe extern "C" {
2430
+ pub fn ecvt_r(
2431
+ __value: f64,
2432
+ __ndigit: ::std::os::raw::c_int,
2433
+ __decpt: *mut ::std::os::raw::c_int,
2434
+ __sign: *mut ::std::os::raw::c_int,
2435
+ __buf: *mut ::std::os::raw::c_char,
2436
+ __len: usize,
2437
+ ) -> ::std::os::raw::c_int;
2438
+ }
2439
+ unsafe extern "C" {
2440
+ pub fn fcvt_r(
2441
+ __value: f64,
2442
+ __ndigit: ::std::os::raw::c_int,
2443
+ __decpt: *mut ::std::os::raw::c_int,
2444
+ __sign: *mut ::std::os::raw::c_int,
2445
+ __buf: *mut ::std::os::raw::c_char,
2446
+ __len: usize,
2447
+ ) -> ::std::os::raw::c_int;
2448
+ }
2449
+ unsafe extern "C" {
2450
+ pub fn qecvt_r(
2451
+ __value: u128,
2452
+ __ndigit: ::std::os::raw::c_int,
2453
+ __decpt: *mut ::std::os::raw::c_int,
2454
+ __sign: *mut ::std::os::raw::c_int,
2455
+ __buf: *mut ::std::os::raw::c_char,
2456
+ __len: usize,
2457
+ ) -> ::std::os::raw::c_int;
2458
+ }
2459
+ unsafe extern "C" {
2460
+ pub fn qfcvt_r(
2461
+ __value: u128,
2462
+ __ndigit: ::std::os::raw::c_int,
2463
+ __decpt: *mut ::std::os::raw::c_int,
2464
+ __sign: *mut ::std::os::raw::c_int,
2465
+ __buf: *mut ::std::os::raw::c_char,
2466
+ __len: usize,
2467
+ ) -> ::std::os::raw::c_int;
2468
+ }
2469
+ unsafe extern "C" {
2470
+ pub fn mblen(__s: *const ::std::os::raw::c_char, __n: usize) -> ::std::os::raw::c_int;
2471
+ }
2472
+ unsafe extern "C" {
2473
+ pub fn mbtowc(
2474
+ __pwc: *mut wchar_t,
2475
+ __s: *const ::std::os::raw::c_char,
2476
+ __n: usize,
2477
+ ) -> ::std::os::raw::c_int;
2478
+ }
2479
+ unsafe extern "C" {
2480
+ pub fn wctomb(__s: *mut ::std::os::raw::c_char, __wchar: wchar_t) -> ::std::os::raw::c_int;
2481
+ }
2482
+ unsafe extern "C" {
2483
+ pub fn mbstowcs(__pwcs: *mut wchar_t, __s: *const ::std::os::raw::c_char, __n: usize) -> usize;
2484
+ }
2485
+ unsafe extern "C" {
2486
+ pub fn wcstombs(__s: *mut ::std::os::raw::c_char, __pwcs: *const wchar_t, __n: usize) -> usize;
2487
+ }
2488
+ unsafe extern "C" {
2489
+ pub fn rpmatch(__response: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;
2490
+ }
2491
+ unsafe extern "C" {
2492
+ pub fn getsubopt(
2493
+ __optionp: *mut *mut ::std::os::raw::c_char,
2494
+ __tokens: *const *mut ::std::os::raw::c_char,
2495
+ __valuep: *mut *mut ::std::os::raw::c_char,
2496
+ ) -> ::std::os::raw::c_int;
2497
+ }
2498
+ unsafe extern "C" {
2499
+ pub fn getloadavg(__loadavg: *mut f64, __nelem: ::std::os::raw::c_int)
2500
+ -> ::std::os::raw::c_int;
2501
+ }
2502
+ pub const internal_slot_t_SLOT_NONE: internal_slot_t = 0;
2503
+ pub const internal_slot_t_SLOT_ASYNC: internal_slot_t = 1;
2504
+ pub const internal_slot_t_SLOT_CODE: internal_slot_t = 2;
2505
+ pub const internal_slot_t_SLOT_CODE_LEN: internal_slot_t = 3;
2506
+ pub const internal_slot_t_SLOT_CFUNC: internal_slot_t = 4;
2507
+ pub const internal_slot_t_SLOT_CORO: internal_slot_t = 5;
2508
+ pub const internal_slot_t_SLOT_PROTO: internal_slot_t = 6;
2509
+ pub const internal_slot_t_SLOT_FUNC_PROTO: internal_slot_t = 7;
2510
+ pub const internal_slot_t_SLOT_ASYNC_PROTO: internal_slot_t = 8;
2511
+ pub const internal_slot_t_SLOT_GENERATOR_PROTO: internal_slot_t = 9;
2512
+ pub const internal_slot_t_SLOT_ASYNC_GENERATOR_PROTO: internal_slot_t = 10;
2513
+ pub const internal_slot_t_SLOT_AUX: internal_slot_t = 11;
2514
+ pub const internal_slot_t_SLOT_TARGET_FUNC: internal_slot_t = 12;
2515
+ pub const internal_slot_t_SLOT_MODULE_CTX: internal_slot_t = 13;
2516
+ pub const internal_slot_t_SLOT_MODULE_LOADING: internal_slot_t = 14;
2517
+ pub const internal_slot_t_SLOT_MAP: internal_slot_t = 15;
2518
+ pub const internal_slot_t_SLOT_SET: internal_slot_t = 16;
2519
+ pub const internal_slot_t_SLOT_PRIMITIVE: internal_slot_t = 17;
2520
+ pub const internal_slot_t_SLOT_PROXY_REF: internal_slot_t = 18;
2521
+ pub const internal_slot_t_SLOT_BUILTIN: internal_slot_t = 19;
2522
+ pub const internal_slot_t_SLOT_BRAND: internal_slot_t = 20;
2523
+ pub const internal_slot_t_SLOT_PRIVATE_ELEMENTS: internal_slot_t = 21;
2524
+ pub const internal_slot_t_SLOT_DATA: internal_slot_t = 22;
2525
+ pub const internal_slot_t_SLOT_EVENT_MAX_LISTENERS: internal_slot_t = 23;
2526
+ pub const internal_slot_t_SLOT_CTOR: internal_slot_t = 24;
2527
+ pub const internal_slot_t_SLOT_FS_FLAGS: internal_slot_t = 25;
2528
+ pub const internal_slot_t_SLOT_DEFAULT: internal_slot_t = 26;
2529
+ pub const internal_slot_t_SLOT_CONSOLE_STDOUT: internal_slot_t = 27;
2530
+ pub const internal_slot_t_SLOT_CONSOLE_STDERR: internal_slot_t = 28;
2531
+ pub const internal_slot_t_SLOT_CONSOLE_COUNTS: internal_slot_t = 29;
2532
+ pub const internal_slot_t_SLOT_CONSOLE_TIMERS: internal_slot_t = 30;
2533
+ pub const internal_slot_t_SLOT_CONSOLE_GROUP_INDENT: internal_slot_t = 31;
2534
+ pub const internal_slot_t_SLOT_CONSOLE_GROUP_LEVEL: internal_slot_t = 32;
2535
+ pub const internal_slot_t_SLOT_ERROR_BRAND: internal_slot_t = 33;
2536
+ pub const internal_slot_t_SLOT_ERR_TYPE: internal_slot_t = 34;
2537
+ pub const internal_slot_t_SLOT_OBSERVABLE_SUBSCRIBER: internal_slot_t = 35;
2538
+ pub const internal_slot_t_SLOT_SUBSCRIPTION_OBSERVER: internal_slot_t = 36;
2539
+ pub const internal_slot_t_SLOT_SUBSCRIPTION_CLEANUP: internal_slot_t = 37;
2540
+ pub const internal_slot_t_SLOT_STRICT_ARGS: internal_slot_t = 38;
2541
+ pub const internal_slot_t_SLOT_ITER_STATE: internal_slot_t = 39;
2542
+ pub const internal_slot_t_SLOT_ENTRIES: internal_slot_t = 40;
2543
+ pub const internal_slot_t_SLOT_SETTLED: internal_slot_t = 41;
2544
+ pub const internal_slot_t_SLOT_WT_ON_MESSAGE: internal_slot_t = 42;
2545
+ pub const internal_slot_t_SLOT_WT_ONCE_MESSAGE: internal_slot_t = 43;
2546
+ pub const internal_slot_t_SLOT_WT_ON_EXIT: internal_slot_t = 44;
2547
+ pub const internal_slot_t_SLOT_WT_ONCE_EXIT: internal_slot_t = 45;
2548
+ pub const internal_slot_t_SLOT_WT_PORT_TAG: internal_slot_t = 46;
2549
+ pub const internal_slot_t_SLOT_WT_PORT_QUEUE: internal_slot_t = 47;
2550
+ pub const internal_slot_t_SLOT_WT_PORT_HEAD: internal_slot_t = 48;
2551
+ pub const internal_slot_t_SLOT_WT_PORT_PEER: internal_slot_t = 49;
2552
+ pub const internal_slot_t_SLOT_WT_PORT_CLOSED: internal_slot_t = 50;
2553
+ pub const internal_slot_t_SLOT_WT_PORT_STARTED: internal_slot_t = 51;
2554
+ pub const internal_slot_t_SLOT_WT_PORT_ON_MESSAGE: internal_slot_t = 52;
2555
+ pub const internal_slot_t_SLOT_WT_PORT_ONCE_MESSAGE: internal_slot_t = 53;
2556
+ pub const internal_slot_t_SLOT_WT_PORT_PROTO: internal_slot_t = 54;
2557
+ pub const internal_slot_t_SLOT_WT_ENV_STORE: internal_slot_t = 55;
2558
+ pub const internal_slot_t_SLOT_NAPI_EXTERNAL_ID: internal_slot_t = 56;
2559
+ pub const internal_slot_t_SLOT_NAPI_WRAP_ID: internal_slot_t = 57;
2560
+ pub const internal_slot_t_SLOT_RS_PULL: internal_slot_t = 58;
2561
+ pub const internal_slot_t_SLOT_RS_CANCEL: internal_slot_t = 59;
2562
+ pub const internal_slot_t_SLOT_RS_SIZE: internal_slot_t = 60;
2563
+ pub const internal_slot_t_SLOT_RS_CLOSED: internal_slot_t = 61;
2564
+ pub const internal_slot_t_SLOT_WS_WRITE: internal_slot_t = 62;
2565
+ pub const internal_slot_t_SLOT_WS_CLOSE: internal_slot_t = 63;
2566
+ pub const internal_slot_t_SLOT_WS_ABORT: internal_slot_t = 64;
2567
+ pub const internal_slot_t_SLOT_WS_READY: internal_slot_t = 65;
2568
+ pub const internal_slot_t_SLOT_WS_SIGNAL: internal_slot_t = 66;
2569
+ pub const internal_slot_t_SLOT_HEADERS_GUARD: internal_slot_t = 67;
2570
+ pub const internal_slot_t_SLOT_REQUEST_HEADERS: internal_slot_t = 68;
2571
+ pub const internal_slot_t_SLOT_REQUEST_SIGNAL: internal_slot_t = 69;
2572
+ pub const internal_slot_t_SLOT_REQUEST_ABORT_REASON: internal_slot_t = 70;
2573
+ pub const internal_slot_t_SLOT_REQUEST_BODY_STREAM: internal_slot_t = 71;
2574
+ pub const internal_slot_t_SLOT_RESPONSE_HEADERS: internal_slot_t = 72;
2575
+ pub const internal_slot_t_SLOT_RESPONSE_BODY_STREAM: internal_slot_t = 73;
2576
+ pub const internal_slot_t_SLOT_PIPE_ABORT_LISTENER: internal_slot_t = 74;
2577
+ pub const internal_slot_t_SLOT_REGEXP_FLAGS_MASK: internal_slot_t = 75;
2578
+ pub const internal_slot_t_SLOT_REGEXP_FLAGS_STRING: internal_slot_t = 76;
2579
+ pub const internal_slot_t_SLOT_REGEXP_NAMED_GROUPS: internal_slot_t = 77;
2580
+ pub const internal_slot_t_SLOT_REGEXP_RESULT_GROUPS: internal_slot_t = 78;
2581
+ pub const internal_slot_t_SLOT_REGEXP_GROUPS_CACHE: internal_slot_t = 79;
2582
+ pub const internal_slot_t_SLOT_MATCHALL_RX: internal_slot_t = 80;
2583
+ pub const internal_slot_t_SLOT_MATCHALL_STR: internal_slot_t = 81;
2584
+ pub const internal_slot_t_SLOT_MATCHALL_DONE: internal_slot_t = 82;
2585
+ pub const internal_slot_t_SLOT_MAX: internal_slot_t = 255;
2586
+ pub type internal_slot_t = ::std::os::raw::c_uint;
2587
+ pub const builtin_fn_id_t_BUILTIN_NONE: builtin_fn_id_t = 0;
2588
+ pub const builtin_fn_id_t_BUILTIN_OBJECT: builtin_fn_id_t = 1;
2589
+ pub type builtin_fn_id_t = ::std::os::raw::c_uint;
2590
+ pub const object_brand_id_t_BRAND_NONE: object_brand_id_t = 0;
2591
+ pub const object_brand_id_t_BRAND_BLOB: object_brand_id_t = 1;
2592
+ pub const object_brand_id_t_BRAND_FILE: object_brand_id_t = 2;
2593
+ pub const object_brand_id_t_BRAND_HEADERS: object_brand_id_t = 3;
2594
+ pub const object_brand_id_t_BRAND_FORMDATA: object_brand_id_t = 4;
2595
+ pub const object_brand_id_t_BRAND_URLSEARCHPARAMS: object_brand_id_t = 5;
2596
+ pub const object_brand_id_t_BRAND_DATAVIEW: object_brand_id_t = 6;
2597
+ pub const object_brand_id_t_BRAND_REQUEST: object_brand_id_t = 7;
2598
+ pub const object_brand_id_t_BRAND_RESPONSE: object_brand_id_t = 8;
2599
+ pub const object_brand_id_t_BRAND_READABLE_STREAM: object_brand_id_t = 9;
2600
+ pub const object_brand_id_t_BRAND_READABLE_STREAM_READER: object_brand_id_t = 10;
2601
+ pub const object_brand_id_t_BRAND_READABLE_STREAM_CONTROLLER: object_brand_id_t = 11;
2602
+ pub const object_brand_id_t_BRAND_WRITABLE_STREAM: object_brand_id_t = 12;
2603
+ pub const object_brand_id_t_BRAND_WRITABLE_STREAM_WRITER: object_brand_id_t = 13;
2604
+ pub const object_brand_id_t_BRAND_WRITABLE_STREAM_CONTROLLER: object_brand_id_t = 14;
2605
+ pub const object_brand_id_t_BRAND_TRANSFORM_STREAM: object_brand_id_t = 15;
2606
+ pub const object_brand_id_t_BRAND_TRANSFORM_STREAM_CONTROLLER: object_brand_id_t = 16;
2607
+ pub const object_brand_id_t_BRAND_WASM_MODULE: object_brand_id_t = 17;
2608
+ pub const object_brand_id_t_BRAND_WASM_INSTANCE: object_brand_id_t = 18;
2609
+ pub const object_brand_id_t_BRAND_WASM_GLOBAL: object_brand_id_t = 19;
2610
+ pub const object_brand_id_t_BRAND_WASM_MEMORY: object_brand_id_t = 20;
2611
+ pub const object_brand_id_t_BRAND_WASM_TABLE: object_brand_id_t = 21;
2612
+ pub const object_brand_id_t_BRAND_WASM_TAG: object_brand_id_t = 22;
2613
+ pub const object_brand_id_t_BRAND_WASM_EXCEPTION: object_brand_id_t = 23;
2614
+ pub const object_brand_id_t_BRAND_DATE: object_brand_id_t = 24;
2615
+ pub const object_brand_id_t_BRAND_MODULE_NAMESPACE: object_brand_id_t = 25;
2616
+ pub const object_brand_id_t_BRAND_ABORT_SIGNAL: object_brand_id_t = 26;
2617
+ pub const object_brand_id_t_BRAND_EVENTEMITTER: object_brand_id_t = 27;
2618
+ pub const object_brand_id_t_BRAND_EVENTTARGET: object_brand_id_t = 28;
2619
+ pub const object_brand_id_t_BRAND_DISPOSABLE_STACK: object_brand_id_t = 29;
2620
+ pub const object_brand_id_t_BRAND_ASYNC_DISPOSABLE_STACK: object_brand_id_t = 30;
2621
+ pub const object_brand_id_t_BRAND_TEMPLATE_OBJECT: object_brand_id_t = 31;
2622
+ pub type object_brand_id_t = ::std::os::raw::c_uint;
2623
+ pub type __f32x4_t = [f32; 4usize];
2624
+ pub type __f64x2_t = [f64; 2usize];
2625
+ pub type __sv_f32_t = __BindgenOpaqueArray<u128, 0usize>;
2626
+ pub type __sv_f64_t = __BindgenOpaqueArray<u128, 0usize>;
2627
+ pub type __sv_bool_t = __BindgenOpaqueArray<u16, 0usize>;
2628
+ unsafe extern "C" {
2629
+ pub fn _ZGVsMxvv_atan2f(arg1: __sv_f32_t, arg2: __sv_f32_t, arg3: __sv_bool_t) -> __sv_f32_t;
2630
+ }
2631
+ unsafe extern "C" {
2632
+ pub fn _ZGVsMxvv_atan2pif(arg1: __sv_f32_t, arg2: __sv_f32_t, arg3: __sv_bool_t) -> __sv_f32_t;
2633
+ }
2634
+ unsafe extern "C" {
2635
+ pub fn _ZGVsMxv_acosf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2636
+ }
2637
+ unsafe extern "C" {
2638
+ pub fn _ZGVsMxv_acoshf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2639
+ }
2640
+ unsafe extern "C" {
2641
+ pub fn _ZGVsMxv_acospif(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2642
+ }
2643
+ unsafe extern "C" {
2644
+ pub fn _ZGVsMxv_asinf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2645
+ }
2646
+ unsafe extern "C" {
2647
+ pub fn _ZGVsMxv_asinhf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2648
+ }
2649
+ unsafe extern "C" {
2650
+ pub fn _ZGVsMxv_asinpif(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2651
+ }
2652
+ unsafe extern "C" {
2653
+ pub fn _ZGVsMxv_atanf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2654
+ }
2655
+ unsafe extern "C" {
2656
+ pub fn _ZGVsMxv_atanhf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2657
+ }
2658
+ unsafe extern "C" {
2659
+ pub fn _ZGVsMxv_atanpif(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2660
+ }
2661
+ unsafe extern "C" {
2662
+ pub fn _ZGVsMxv_cbrtf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2663
+ }
2664
+ unsafe extern "C" {
2665
+ pub fn _ZGVsMxv_cosf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2666
+ }
2667
+ unsafe extern "C" {
2668
+ pub fn _ZGVsMxv_coshf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2669
+ }
2670
+ unsafe extern "C" {
2671
+ pub fn _ZGVsMxv_cospif(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2672
+ }
2673
+ unsafe extern "C" {
2674
+ pub fn _ZGVsMxv_erff(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2675
+ }
2676
+ unsafe extern "C" {
2677
+ pub fn _ZGVsMxv_erfcf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2678
+ }
2679
+ unsafe extern "C" {
2680
+ pub fn _ZGVsMxv_expf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2681
+ }
2682
+ unsafe extern "C" {
2683
+ pub fn _ZGVsMxv_exp10f(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2684
+ }
2685
+ unsafe extern "C" {
2686
+ pub fn _ZGVsMxv_exp2f(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2687
+ }
2688
+ unsafe extern "C" {
2689
+ pub fn _ZGVsMxv_expm1f(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2690
+ }
2691
+ unsafe extern "C" {
2692
+ pub fn _ZGVsMxvv_hypotf(arg1: __sv_f32_t, arg2: __sv_f32_t, arg3: __sv_bool_t) -> __sv_f32_t;
2693
+ }
2694
+ unsafe extern "C" {
2695
+ pub fn _ZGVsMxv_logf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2696
+ }
2697
+ unsafe extern "C" {
2698
+ pub fn _ZGVsMxv_log10f(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2699
+ }
2700
+ unsafe extern "C" {
2701
+ pub fn _ZGVsMxv_log1pf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2702
+ }
2703
+ unsafe extern "C" {
2704
+ pub fn _ZGVsMxv_log2f(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2705
+ }
2706
+ unsafe extern "C" {
2707
+ pub fn _ZGVsMxv_logp1f(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2708
+ }
2709
+ unsafe extern "C" {
2710
+ pub fn _ZGVsMxvv_powf(arg1: __sv_f32_t, arg2: __sv_f32_t, arg3: __sv_bool_t) -> __sv_f32_t;
2711
+ }
2712
+ unsafe extern "C" {
2713
+ pub fn _ZGVsMxv_sinf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2714
+ }
2715
+ unsafe extern "C" {
2716
+ pub fn _ZGVsMxv_sinhf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2717
+ }
2718
+ unsafe extern "C" {
2719
+ pub fn _ZGVsMxv_sinpif(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2720
+ }
2721
+ unsafe extern "C" {
2722
+ pub fn _ZGVsMxv_tanf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2723
+ }
2724
+ unsafe extern "C" {
2725
+ pub fn _ZGVsMxv_tanhf(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2726
+ }
2727
+ unsafe extern "C" {
2728
+ pub fn _ZGVsMxv_tanpif(arg1: __sv_f32_t, arg2: __sv_bool_t) -> __sv_f32_t;
2729
+ }
2730
+ unsafe extern "C" {
2731
+ pub fn _ZGVsMxvv_atan2(arg1: __sv_f64_t, arg2: __sv_f64_t, arg3: __sv_bool_t) -> __sv_f64_t;
2732
+ }
2733
+ unsafe extern "C" {
2734
+ pub fn _ZGVsMxvv_atan2pi(arg1: __sv_f64_t, arg2: __sv_f64_t, arg3: __sv_bool_t) -> __sv_f64_t;
2735
+ }
2736
+ unsafe extern "C" {
2737
+ pub fn _ZGVsMxv_acos(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2738
+ }
2739
+ unsafe extern "C" {
2740
+ pub fn _ZGVsMxv_acosh(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2741
+ }
2742
+ unsafe extern "C" {
2743
+ pub fn _ZGVsMxv_acospi(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2744
+ }
2745
+ unsafe extern "C" {
2746
+ pub fn _ZGVsMxv_asin(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2747
+ }
2748
+ unsafe extern "C" {
2749
+ pub fn _ZGVsMxv_asinh(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2750
+ }
2751
+ unsafe extern "C" {
2752
+ pub fn _ZGVsMxv_asinpi(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2753
+ }
2754
+ unsafe extern "C" {
2755
+ pub fn _ZGVsMxv_atan(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2756
+ }
2757
+ unsafe extern "C" {
2758
+ pub fn _ZGVsMxv_atanh(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2759
+ }
2760
+ unsafe extern "C" {
2761
+ pub fn _ZGVsMxv_atanpi(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2762
+ }
2763
+ unsafe extern "C" {
2764
+ pub fn _ZGVsMxv_cbrt(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2765
+ }
2766
+ unsafe extern "C" {
2767
+ pub fn _ZGVsMxv_cos(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2768
+ }
2769
+ unsafe extern "C" {
2770
+ pub fn _ZGVsMxv_cosh(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2771
+ }
2772
+ unsafe extern "C" {
2773
+ pub fn _ZGVsMxv_cospi(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2774
+ }
2775
+ unsafe extern "C" {
2776
+ pub fn _ZGVsMxv_erf(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2777
+ }
2778
+ unsafe extern "C" {
2779
+ pub fn _ZGVsMxv_erfc(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2780
+ }
2781
+ unsafe extern "C" {
2782
+ pub fn _ZGVsMxv_exp(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2783
+ }
2784
+ unsafe extern "C" {
2785
+ pub fn _ZGVsMxv_exp10(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2786
+ }
2787
+ unsafe extern "C" {
2788
+ pub fn _ZGVsMxv_exp2(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2789
+ }
2790
+ unsafe extern "C" {
2791
+ pub fn _ZGVsMxv_expm1(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2792
+ }
2793
+ unsafe extern "C" {
2794
+ pub fn _ZGVsMxvv_hypot(arg1: __sv_f64_t, arg2: __sv_f64_t, arg3: __sv_bool_t) -> __sv_f64_t;
2795
+ }
2796
+ unsafe extern "C" {
2797
+ pub fn _ZGVsMxv_log(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2798
+ }
2799
+ unsafe extern "C" {
2800
+ pub fn _ZGVsMxv_log10(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2801
+ }
2802
+ unsafe extern "C" {
2803
+ pub fn _ZGVsMxv_log1p(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2804
+ }
2805
+ unsafe extern "C" {
2806
+ pub fn _ZGVsMxv_log2(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2807
+ }
2808
+ unsafe extern "C" {
2809
+ pub fn _ZGVsMxv_logp1(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2810
+ }
2811
+ unsafe extern "C" {
2812
+ pub fn _ZGVsMxvv_pow(arg1: __sv_f64_t, arg2: __sv_f64_t, arg3: __sv_bool_t) -> __sv_f64_t;
2813
+ }
2814
+ unsafe extern "C" {
2815
+ pub fn _ZGVsMxv_sin(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2816
+ }
2817
+ unsafe extern "C" {
2818
+ pub fn _ZGVsMxv_sinh(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2819
+ }
2820
+ unsafe extern "C" {
2821
+ pub fn _ZGVsMxv_sinpi(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2822
+ }
2823
+ unsafe extern "C" {
2824
+ pub fn _ZGVsMxv_tan(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2825
+ }
2826
+ unsafe extern "C" {
2827
+ pub fn _ZGVsMxv_tanh(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2828
+ }
2829
+ unsafe extern "C" {
2830
+ pub fn _ZGVsMxv_tanpi(arg1: __sv_f64_t, arg2: __sv_bool_t) -> __sv_f64_t;
2831
+ }
2832
+ pub type float_t = f32;
2833
+ pub type double_t = f64;
2834
+ unsafe extern "C" {
2835
+ pub fn __fpclassify(__value: f64) -> ::std::os::raw::c_int;
2836
+ }
2837
+ unsafe extern "C" {
2838
+ pub fn __signbit(__value: f64) -> ::std::os::raw::c_int;
2839
+ }
2840
+ unsafe extern "C" {
2841
+ pub fn __isinf(__value: f64) -> ::std::os::raw::c_int;
2842
+ }
2843
+ unsafe extern "C" {
2844
+ pub fn __finite(__value: f64) -> ::std::os::raw::c_int;
2845
+ }
2846
+ unsafe extern "C" {
2847
+ pub fn __isnan(__value: f64) -> ::std::os::raw::c_int;
2848
+ }
2849
+ unsafe extern "C" {
2850
+ pub fn __iseqsig(__x: f64, __y: f64) -> ::std::os::raw::c_int;
2851
+ }
2852
+ unsafe extern "C" {
2853
+ pub fn __issignaling(__value: f64) -> ::std::os::raw::c_int;
2854
+ }
2855
+ unsafe extern "C" {
2856
+ pub fn acos(__x: f64) -> f64;
2857
+ }
2858
+ unsafe extern "C" {
2859
+ pub fn __acos(__x: f64) -> f64;
2860
+ }
2861
+ unsafe extern "C" {
2862
+ pub fn asin(__x: f64) -> f64;
2863
+ }
2864
+ unsafe extern "C" {
2865
+ pub fn __asin(__x: f64) -> f64;
2866
+ }
2867
+ unsafe extern "C" {
2868
+ pub fn atan(__x: f64) -> f64;
2869
+ }
2870
+ unsafe extern "C" {
2871
+ pub fn __atan(__x: f64) -> f64;
2872
+ }
2873
+ unsafe extern "C" {
2874
+ pub fn atan2(__y: f64, __x: f64) -> f64;
2875
+ }
2876
+ unsafe extern "C" {
2877
+ pub fn __atan2(__y: f64, __x: f64) -> f64;
2878
+ }
2879
+ unsafe extern "C" {
2880
+ pub fn cos(__x: f64) -> f64;
2881
+ }
2882
+ unsafe extern "C" {
2883
+ pub fn __cos(__x: f64) -> f64;
2884
+ }
2885
+ unsafe extern "C" {
2886
+ pub fn sin(__x: f64) -> f64;
2887
+ }
2888
+ unsafe extern "C" {
2889
+ pub fn __sin(__x: f64) -> f64;
2890
+ }
2891
+ unsafe extern "C" {
2892
+ pub fn tan(__x: f64) -> f64;
2893
+ }
2894
+ unsafe extern "C" {
2895
+ pub fn __tan(__x: f64) -> f64;
2896
+ }
2897
+ unsafe extern "C" {
2898
+ pub fn cosh(__x: f64) -> f64;
2899
+ }
2900
+ unsafe extern "C" {
2901
+ pub fn __cosh(__x: f64) -> f64;
2902
+ }
2903
+ unsafe extern "C" {
2904
+ pub fn sinh(__x: f64) -> f64;
2905
+ }
2906
+ unsafe extern "C" {
2907
+ pub fn __sinh(__x: f64) -> f64;
2908
+ }
2909
+ unsafe extern "C" {
2910
+ pub fn tanh(__x: f64) -> f64;
2911
+ }
2912
+ unsafe extern "C" {
2913
+ pub fn __tanh(__x: f64) -> f64;
2914
+ }
2915
+ unsafe extern "C" {
2916
+ pub fn acosh(__x: f64) -> f64;
2917
+ }
2918
+ unsafe extern "C" {
2919
+ pub fn __acosh(__x: f64) -> f64;
2920
+ }
2921
+ unsafe extern "C" {
2922
+ pub fn asinh(__x: f64) -> f64;
2923
+ }
2924
+ unsafe extern "C" {
2925
+ pub fn __asinh(__x: f64) -> f64;
2926
+ }
2927
+ unsafe extern "C" {
2928
+ pub fn atanh(__x: f64) -> f64;
2929
+ }
2930
+ unsafe extern "C" {
2931
+ pub fn __atanh(__x: f64) -> f64;
2932
+ }
2933
+ unsafe extern "C" {
2934
+ pub fn exp(__x: f64) -> f64;
2935
+ }
2936
+ unsafe extern "C" {
2937
+ pub fn __exp(__x: f64) -> f64;
2938
+ }
2939
+ unsafe extern "C" {
2940
+ pub fn frexp(__x: f64, __exponent: *mut ::std::os::raw::c_int) -> f64;
2941
+ }
2942
+ unsafe extern "C" {
2943
+ pub fn __frexp(__x: f64, __exponent: *mut ::std::os::raw::c_int) -> f64;
2944
+ }
2945
+ unsafe extern "C" {
2946
+ pub fn ldexp(__x: f64, __exponent: ::std::os::raw::c_int) -> f64;
2947
+ }
2948
+ unsafe extern "C" {
2949
+ pub fn __ldexp(__x: f64, __exponent: ::std::os::raw::c_int) -> f64;
2950
+ }
2951
+ unsafe extern "C" {
2952
+ pub fn log(__x: f64) -> f64;
2953
+ }
2954
+ unsafe extern "C" {
2955
+ pub fn __log(__x: f64) -> f64;
2956
+ }
2957
+ unsafe extern "C" {
2958
+ pub fn log10(__x: f64) -> f64;
2959
+ }
2960
+ unsafe extern "C" {
2961
+ pub fn __log10(__x: f64) -> f64;
2962
+ }
2963
+ unsafe extern "C" {
2964
+ pub fn modf(__x: f64, __iptr: *mut f64) -> f64;
2965
+ }
2966
+ unsafe extern "C" {
2967
+ pub fn __modf(__x: f64, __iptr: *mut f64) -> f64;
2968
+ }
2969
+ unsafe extern "C" {
2970
+ pub fn expm1(__x: f64) -> f64;
2971
+ }
2972
+ unsafe extern "C" {
2973
+ pub fn __expm1(__x: f64) -> f64;
2974
+ }
2975
+ unsafe extern "C" {
2976
+ pub fn log1p(__x: f64) -> f64;
2977
+ }
2978
+ unsafe extern "C" {
2979
+ pub fn __log1p(__x: f64) -> f64;
2980
+ }
2981
+ unsafe extern "C" {
2982
+ pub fn logb(__x: f64) -> f64;
2983
+ }
2984
+ unsafe extern "C" {
2985
+ pub fn __logb(__x: f64) -> f64;
2986
+ }
2987
+ unsafe extern "C" {
2988
+ pub fn exp2(__x: f64) -> f64;
2989
+ }
2990
+ unsafe extern "C" {
2991
+ pub fn __exp2(__x: f64) -> f64;
2992
+ }
2993
+ unsafe extern "C" {
2994
+ pub fn log2(__x: f64) -> f64;
2995
+ }
2996
+ unsafe extern "C" {
2997
+ pub fn __log2(__x: f64) -> f64;
2998
+ }
2999
+ unsafe extern "C" {
3000
+ pub fn pow(__x: f64, __y: f64) -> f64;
3001
+ }
3002
+ unsafe extern "C" {
3003
+ pub fn __pow(__x: f64, __y: f64) -> f64;
3004
+ }
3005
+ unsafe extern "C" {
3006
+ pub fn sqrt(__x: f64) -> f64;
3007
+ }
3008
+ unsafe extern "C" {
3009
+ pub fn __sqrt(__x: f64) -> f64;
3010
+ }
3011
+ unsafe extern "C" {
3012
+ pub fn hypot(__x: f64, __y: f64) -> f64;
3013
+ }
3014
+ unsafe extern "C" {
3015
+ pub fn __hypot(__x: f64, __y: f64) -> f64;
3016
+ }
3017
+ unsafe extern "C" {
3018
+ pub fn cbrt(__x: f64) -> f64;
3019
+ }
3020
+ unsafe extern "C" {
3021
+ pub fn __cbrt(__x: f64) -> f64;
3022
+ }
3023
+ unsafe extern "C" {
3024
+ pub fn ceil(__x: f64) -> f64;
3025
+ }
3026
+ unsafe extern "C" {
3027
+ pub fn fabs(__x: f64) -> f64;
3028
+ }
3029
+ unsafe extern "C" {
3030
+ pub fn floor(__x: f64) -> f64;
3031
+ }
3032
+ unsafe extern "C" {
3033
+ pub fn fmod(__x: f64, __y: f64) -> f64;
3034
+ }
3035
+ unsafe extern "C" {
3036
+ pub fn __fmod(__x: f64, __y: f64) -> f64;
3037
+ }
3038
+ unsafe extern "C" {
3039
+ pub fn isinf(__value: f64) -> ::std::os::raw::c_int;
3040
+ }
3041
+ unsafe extern "C" {
3042
+ pub fn finite(__value: f64) -> ::std::os::raw::c_int;
3043
+ }
3044
+ unsafe extern "C" {
3045
+ pub fn drem(__x: f64, __y: f64) -> f64;
3046
+ }
3047
+ unsafe extern "C" {
3048
+ pub fn __drem(__x: f64, __y: f64) -> f64;
3049
+ }
3050
+ unsafe extern "C" {
3051
+ pub fn significand(__x: f64) -> f64;
3052
+ }
3053
+ unsafe extern "C" {
3054
+ pub fn __significand(__x: f64) -> f64;
3055
+ }
3056
+ unsafe extern "C" {
3057
+ pub fn copysign(__x: f64, __y: f64) -> f64;
3058
+ }
3059
+ unsafe extern "C" {
3060
+ pub fn nan(__tagb: *const ::std::os::raw::c_char) -> f64;
3061
+ }
3062
+ unsafe extern "C" {
3063
+ pub fn __nan(__tagb: *const ::std::os::raw::c_char) -> f64;
3064
+ }
3065
+ unsafe extern "C" {
3066
+ pub fn isnan(__value: f64) -> ::std::os::raw::c_int;
3067
+ }
3068
+ unsafe extern "C" {
3069
+ pub fn j0(arg1: f64) -> f64;
3070
+ }
3071
+ unsafe extern "C" {
3072
+ pub fn __j0(arg1: f64) -> f64;
3073
+ }
3074
+ unsafe extern "C" {
3075
+ pub fn j1(arg1: f64) -> f64;
3076
+ }
3077
+ unsafe extern "C" {
3078
+ pub fn __j1(arg1: f64) -> f64;
3079
+ }
3080
+ unsafe extern "C" {
3081
+ pub fn jn(arg1: ::std::os::raw::c_int, arg2: f64) -> f64;
3082
+ }
3083
+ unsafe extern "C" {
3084
+ pub fn __jn(arg1: ::std::os::raw::c_int, arg2: f64) -> f64;
3085
+ }
3086
+ unsafe extern "C" {
3087
+ pub fn y0(arg1: f64) -> f64;
3088
+ }
3089
+ unsafe extern "C" {
3090
+ pub fn __y0(arg1: f64) -> f64;
3091
+ }
3092
+ unsafe extern "C" {
3093
+ pub fn y1(arg1: f64) -> f64;
3094
+ }
3095
+ unsafe extern "C" {
3096
+ pub fn __y1(arg1: f64) -> f64;
3097
+ }
3098
+ unsafe extern "C" {
3099
+ pub fn yn(arg1: ::std::os::raw::c_int, arg2: f64) -> f64;
3100
+ }
3101
+ unsafe extern "C" {
3102
+ pub fn __yn(arg1: ::std::os::raw::c_int, arg2: f64) -> f64;
3103
+ }
3104
+ unsafe extern "C" {
3105
+ pub fn erf(arg1: f64) -> f64;
3106
+ }
3107
+ unsafe extern "C" {
3108
+ pub fn __erf(arg1: f64) -> f64;
3109
+ }
3110
+ unsafe extern "C" {
3111
+ pub fn erfc(arg1: f64) -> f64;
3112
+ }
3113
+ unsafe extern "C" {
3114
+ pub fn __erfc(arg1: f64) -> f64;
3115
+ }
3116
+ unsafe extern "C" {
3117
+ pub fn lgamma(arg1: f64) -> f64;
3118
+ }
3119
+ unsafe extern "C" {
3120
+ pub fn __lgamma(arg1: f64) -> f64;
3121
+ }
3122
+ unsafe extern "C" {
3123
+ pub fn tgamma(arg1: f64) -> f64;
3124
+ }
3125
+ unsafe extern "C" {
3126
+ pub fn __tgamma(arg1: f64) -> f64;
3127
+ }
3128
+ unsafe extern "C" {
3129
+ pub fn gamma(arg1: f64) -> f64;
3130
+ }
3131
+ unsafe extern "C" {
3132
+ pub fn __gamma(arg1: f64) -> f64;
3133
+ }
3134
+ unsafe extern "C" {
3135
+ pub fn lgamma_r(arg1: f64, __signgamp: *mut ::std::os::raw::c_int) -> f64;
3136
+ }
3137
+ unsafe extern "C" {
3138
+ pub fn __lgamma_r(arg1: f64, __signgamp: *mut ::std::os::raw::c_int) -> f64;
3139
+ }
3140
+ unsafe extern "C" {
3141
+ pub fn rint(__x: f64) -> f64;
3142
+ }
3143
+ unsafe extern "C" {
3144
+ pub fn __rint(__x: f64) -> f64;
3145
+ }
3146
+ unsafe extern "C" {
3147
+ pub fn nextafter(__x: f64, __y: f64) -> f64;
3148
+ }
3149
+ unsafe extern "C" {
3150
+ pub fn __nextafter(__x: f64, __y: f64) -> f64;
3151
+ }
3152
+ unsafe extern "C" {
3153
+ pub fn nexttoward(__x: f64, __y: u128) -> f64;
3154
+ }
3155
+ unsafe extern "C" {
3156
+ pub fn __nexttoward(__x: f64, __y: u128) -> f64;
3157
+ }
3158
+ unsafe extern "C" {
3159
+ pub fn remainder(__x: f64, __y: f64) -> f64;
3160
+ }
3161
+ unsafe extern "C" {
3162
+ pub fn __remainder(__x: f64, __y: f64) -> f64;
3163
+ }
3164
+ unsafe extern "C" {
3165
+ pub fn scalbn(__x: f64, __n: ::std::os::raw::c_int) -> f64;
3166
+ }
3167
+ unsafe extern "C" {
3168
+ pub fn __scalbn(__x: f64, __n: ::std::os::raw::c_int) -> f64;
3169
+ }
3170
+ unsafe extern "C" {
3171
+ pub fn ilogb(__x: f64) -> ::std::os::raw::c_int;
3172
+ }
3173
+ unsafe extern "C" {
3174
+ pub fn __ilogb(__x: f64) -> ::std::os::raw::c_int;
3175
+ }
3176
+ unsafe extern "C" {
3177
+ pub fn scalbln(__x: f64, __n: ::std::os::raw::c_long) -> f64;
3178
+ }
3179
+ unsafe extern "C" {
3180
+ pub fn __scalbln(__x: f64, __n: ::std::os::raw::c_long) -> f64;
3181
+ }
3182
+ unsafe extern "C" {
3183
+ pub fn nearbyint(__x: f64) -> f64;
3184
+ }
3185
+ unsafe extern "C" {
3186
+ pub fn __nearbyint(__x: f64) -> f64;
3187
+ }
3188
+ unsafe extern "C" {
3189
+ pub fn round(__x: f64) -> f64;
3190
+ }
3191
+ unsafe extern "C" {
3192
+ pub fn trunc(__x: f64) -> f64;
3193
+ }
3194
+ unsafe extern "C" {
3195
+ pub fn remquo(__x: f64, __y: f64, __quo: *mut ::std::os::raw::c_int) -> f64;
3196
+ }
3197
+ unsafe extern "C" {
3198
+ pub fn __remquo(__x: f64, __y: f64, __quo: *mut ::std::os::raw::c_int) -> f64;
3199
+ }
3200
+ unsafe extern "C" {
3201
+ pub fn lrint(__x: f64) -> ::std::os::raw::c_long;
3202
+ }
3203
+ unsafe extern "C" {
3204
+ pub fn __lrint(__x: f64) -> ::std::os::raw::c_long;
3205
+ }
3206
+ unsafe extern "C" {
3207
+ pub fn llrint(__x: f64) -> ::std::os::raw::c_longlong;
3208
+ }
3209
+ unsafe extern "C" {
3210
+ pub fn __llrint(__x: f64) -> ::std::os::raw::c_longlong;
3211
+ }
3212
+ unsafe extern "C" {
3213
+ pub fn lround(__x: f64) -> ::std::os::raw::c_long;
3214
+ }
3215
+ unsafe extern "C" {
3216
+ pub fn __lround(__x: f64) -> ::std::os::raw::c_long;
3217
+ }
3218
+ unsafe extern "C" {
3219
+ pub fn llround(__x: f64) -> ::std::os::raw::c_longlong;
3220
+ }
3221
+ unsafe extern "C" {
3222
+ pub fn __llround(__x: f64) -> ::std::os::raw::c_longlong;
3223
+ }
3224
+ unsafe extern "C" {
3225
+ pub fn fdim(__x: f64, __y: f64) -> f64;
3226
+ }
3227
+ unsafe extern "C" {
3228
+ pub fn __fdim(__x: f64, __y: f64) -> f64;
3229
+ }
3230
+ unsafe extern "C" {
3231
+ pub fn fmax(__x: f64, __y: f64) -> f64;
3232
+ }
3233
+ unsafe extern "C" {
3234
+ pub fn fmin(__x: f64, __y: f64) -> f64;
3235
+ }
3236
+ unsafe extern "C" {
3237
+ pub fn fma(__x: f64, __y: f64, __z: f64) -> f64;
3238
+ }
3239
+ unsafe extern "C" {
3240
+ pub fn __fma(__x: f64, __y: f64, __z: f64) -> f64;
3241
+ }
3242
+ unsafe extern "C" {
3243
+ pub fn scalb(__x: f64, __n: f64) -> f64;
3244
+ }
3245
+ unsafe extern "C" {
3246
+ pub fn __scalb(__x: f64, __n: f64) -> f64;
3247
+ }
3248
+ unsafe extern "C" {
3249
+ pub fn __fpclassifyf(__value: f32) -> ::std::os::raw::c_int;
3250
+ }
3251
+ unsafe extern "C" {
3252
+ pub fn __signbitf(__value: f32) -> ::std::os::raw::c_int;
3253
+ }
3254
+ unsafe extern "C" {
3255
+ pub fn __isinff(__value: f32) -> ::std::os::raw::c_int;
3256
+ }
3257
+ unsafe extern "C" {
3258
+ pub fn __finitef(__value: f32) -> ::std::os::raw::c_int;
3259
+ }
3260
+ unsafe extern "C" {
3261
+ pub fn __isnanf(__value: f32) -> ::std::os::raw::c_int;
3262
+ }
3263
+ unsafe extern "C" {
3264
+ pub fn __iseqsigf(__x: f32, __y: f32) -> ::std::os::raw::c_int;
3265
+ }
3266
+ unsafe extern "C" {
3267
+ pub fn __issignalingf(__value: f32) -> ::std::os::raw::c_int;
3268
+ }
3269
+ unsafe extern "C" {
3270
+ pub fn acosf(__x: f32) -> f32;
3271
+ }
3272
+ unsafe extern "C" {
3273
+ pub fn __acosf(__x: f32) -> f32;
3274
+ }
3275
+ unsafe extern "C" {
3276
+ pub fn asinf(__x: f32) -> f32;
3277
+ }
3278
+ unsafe extern "C" {
3279
+ pub fn __asinf(__x: f32) -> f32;
3280
+ }
3281
+ unsafe extern "C" {
3282
+ pub fn atanf(__x: f32) -> f32;
3283
+ }
3284
+ unsafe extern "C" {
3285
+ pub fn __atanf(__x: f32) -> f32;
3286
+ }
3287
+ unsafe extern "C" {
3288
+ pub fn atan2f(__y: f32, __x: f32) -> f32;
3289
+ }
3290
+ unsafe extern "C" {
3291
+ pub fn __atan2f(__y: f32, __x: f32) -> f32;
3292
+ }
3293
+ unsafe extern "C" {
3294
+ pub fn cosf(__x: f32) -> f32;
3295
+ }
3296
+ unsafe extern "C" {
3297
+ pub fn __cosf(__x: f32) -> f32;
3298
+ }
3299
+ unsafe extern "C" {
3300
+ pub fn sinf(__x: f32) -> f32;
3301
+ }
3302
+ unsafe extern "C" {
3303
+ pub fn __sinf(__x: f32) -> f32;
3304
+ }
3305
+ unsafe extern "C" {
3306
+ pub fn tanf(__x: f32) -> f32;
3307
+ }
3308
+ unsafe extern "C" {
3309
+ pub fn __tanf(__x: f32) -> f32;
3310
+ }
3311
+ unsafe extern "C" {
3312
+ pub fn coshf(__x: f32) -> f32;
3313
+ }
3314
+ unsafe extern "C" {
3315
+ pub fn __coshf(__x: f32) -> f32;
3316
+ }
3317
+ unsafe extern "C" {
3318
+ pub fn sinhf(__x: f32) -> f32;
3319
+ }
3320
+ unsafe extern "C" {
3321
+ pub fn __sinhf(__x: f32) -> f32;
3322
+ }
3323
+ unsafe extern "C" {
3324
+ pub fn tanhf(__x: f32) -> f32;
3325
+ }
3326
+ unsafe extern "C" {
3327
+ pub fn __tanhf(__x: f32) -> f32;
3328
+ }
3329
+ unsafe extern "C" {
3330
+ pub fn acoshf(__x: f32) -> f32;
3331
+ }
3332
+ unsafe extern "C" {
3333
+ pub fn __acoshf(__x: f32) -> f32;
3334
+ }
3335
+ unsafe extern "C" {
3336
+ pub fn asinhf(__x: f32) -> f32;
3337
+ }
3338
+ unsafe extern "C" {
3339
+ pub fn __asinhf(__x: f32) -> f32;
3340
+ }
3341
+ unsafe extern "C" {
3342
+ pub fn atanhf(__x: f32) -> f32;
3343
+ }
3344
+ unsafe extern "C" {
3345
+ pub fn __atanhf(__x: f32) -> f32;
3346
+ }
3347
+ unsafe extern "C" {
3348
+ pub fn expf(__x: f32) -> f32;
3349
+ }
3350
+ unsafe extern "C" {
3351
+ pub fn __expf(__x: f32) -> f32;
3352
+ }
3353
+ unsafe extern "C" {
3354
+ pub fn frexpf(__x: f32, __exponent: *mut ::std::os::raw::c_int) -> f32;
3355
+ }
3356
+ unsafe extern "C" {
3357
+ pub fn __frexpf(__x: f32, __exponent: *mut ::std::os::raw::c_int) -> f32;
3358
+ }
3359
+ unsafe extern "C" {
3360
+ pub fn ldexpf(__x: f32, __exponent: ::std::os::raw::c_int) -> f32;
3361
+ }
3362
+ unsafe extern "C" {
3363
+ pub fn __ldexpf(__x: f32, __exponent: ::std::os::raw::c_int) -> f32;
3364
+ }
3365
+ unsafe extern "C" {
3366
+ pub fn logf(__x: f32) -> f32;
3367
+ }
3368
+ unsafe extern "C" {
3369
+ pub fn __logf(__x: f32) -> f32;
3370
+ }
3371
+ unsafe extern "C" {
3372
+ pub fn log10f(__x: f32) -> f32;
3373
+ }
3374
+ unsafe extern "C" {
3375
+ pub fn __log10f(__x: f32) -> f32;
3376
+ }
3377
+ unsafe extern "C" {
3378
+ pub fn modff(__x: f32, __iptr: *mut f32) -> f32;
3379
+ }
3380
+ unsafe extern "C" {
3381
+ pub fn __modff(__x: f32, __iptr: *mut f32) -> f32;
3382
+ }
3383
+ unsafe extern "C" {
3384
+ pub fn expm1f(__x: f32) -> f32;
3385
+ }
3386
+ unsafe extern "C" {
3387
+ pub fn __expm1f(__x: f32) -> f32;
3388
+ }
3389
+ unsafe extern "C" {
3390
+ pub fn log1pf(__x: f32) -> f32;
3391
+ }
3392
+ unsafe extern "C" {
3393
+ pub fn __log1pf(__x: f32) -> f32;
3394
+ }
3395
+ unsafe extern "C" {
3396
+ pub fn logbf(__x: f32) -> f32;
3397
+ }
3398
+ unsafe extern "C" {
3399
+ pub fn __logbf(__x: f32) -> f32;
3400
+ }
3401
+ unsafe extern "C" {
3402
+ pub fn exp2f(__x: f32) -> f32;
3403
+ }
3404
+ unsafe extern "C" {
3405
+ pub fn __exp2f(__x: f32) -> f32;
3406
+ }
3407
+ unsafe extern "C" {
3408
+ pub fn log2f(__x: f32) -> f32;
3409
+ }
3410
+ unsafe extern "C" {
3411
+ pub fn __log2f(__x: f32) -> f32;
3412
+ }
3413
+ unsafe extern "C" {
3414
+ pub fn powf(__x: f32, __y: f32) -> f32;
3415
+ }
3416
+ unsafe extern "C" {
3417
+ pub fn __powf(__x: f32, __y: f32) -> f32;
3418
+ }
3419
+ unsafe extern "C" {
3420
+ pub fn sqrtf(__x: f32) -> f32;
3421
+ }
3422
+ unsafe extern "C" {
3423
+ pub fn __sqrtf(__x: f32) -> f32;
3424
+ }
3425
+ unsafe extern "C" {
3426
+ pub fn hypotf(__x: f32, __y: f32) -> f32;
3427
+ }
3428
+ unsafe extern "C" {
3429
+ pub fn __hypotf(__x: f32, __y: f32) -> f32;
3430
+ }
3431
+ unsafe extern "C" {
3432
+ pub fn cbrtf(__x: f32) -> f32;
3433
+ }
3434
+ unsafe extern "C" {
3435
+ pub fn __cbrtf(__x: f32) -> f32;
3436
+ }
3437
+ unsafe extern "C" {
3438
+ pub fn ceilf(__x: f32) -> f32;
3439
+ }
3440
+ unsafe extern "C" {
3441
+ pub fn fabsf(__x: f32) -> f32;
3442
+ }
3443
+ unsafe extern "C" {
3444
+ pub fn floorf(__x: f32) -> f32;
3445
+ }
3446
+ unsafe extern "C" {
3447
+ pub fn fmodf(__x: f32, __y: f32) -> f32;
3448
+ }
3449
+ unsafe extern "C" {
3450
+ pub fn __fmodf(__x: f32, __y: f32) -> f32;
3451
+ }
3452
+ unsafe extern "C" {
3453
+ pub fn isinff(__value: f32) -> ::std::os::raw::c_int;
3454
+ }
3455
+ unsafe extern "C" {
3456
+ pub fn finitef(__value: f32) -> ::std::os::raw::c_int;
3457
+ }
3458
+ unsafe extern "C" {
3459
+ pub fn dremf(__x: f32, __y: f32) -> f32;
3460
+ }
3461
+ unsafe extern "C" {
3462
+ pub fn __dremf(__x: f32, __y: f32) -> f32;
3463
+ }
3464
+ unsafe extern "C" {
3465
+ pub fn significandf(__x: f32) -> f32;
3466
+ }
3467
+ unsafe extern "C" {
3468
+ pub fn __significandf(__x: f32) -> f32;
3469
+ }
3470
+ unsafe extern "C" {
3471
+ pub fn copysignf(__x: f32, __y: f32) -> f32;
3472
+ }
3473
+ unsafe extern "C" {
3474
+ pub fn nanf(__tagb: *const ::std::os::raw::c_char) -> f32;
3475
+ }
3476
+ unsafe extern "C" {
3477
+ pub fn __nanf(__tagb: *const ::std::os::raw::c_char) -> f32;
3478
+ }
3479
+ unsafe extern "C" {
3480
+ pub fn isnanf(__value: f32) -> ::std::os::raw::c_int;
3481
+ }
3482
+ unsafe extern "C" {
3483
+ pub fn j0f(arg1: f32) -> f32;
3484
+ }
3485
+ unsafe extern "C" {
3486
+ pub fn __j0f(arg1: f32) -> f32;
3487
+ }
3488
+ unsafe extern "C" {
3489
+ pub fn j1f(arg1: f32) -> f32;
3490
+ }
3491
+ unsafe extern "C" {
3492
+ pub fn __j1f(arg1: f32) -> f32;
3493
+ }
3494
+ unsafe extern "C" {
3495
+ pub fn jnf(arg1: ::std::os::raw::c_int, arg2: f32) -> f32;
3496
+ }
3497
+ unsafe extern "C" {
3498
+ pub fn __jnf(arg1: ::std::os::raw::c_int, arg2: f32) -> f32;
3499
+ }
3500
+ unsafe extern "C" {
3501
+ pub fn y0f(arg1: f32) -> f32;
3502
+ }
3503
+ unsafe extern "C" {
3504
+ pub fn __y0f(arg1: f32) -> f32;
3505
+ }
3506
+ unsafe extern "C" {
3507
+ pub fn y1f(arg1: f32) -> f32;
3508
+ }
3509
+ unsafe extern "C" {
3510
+ pub fn __y1f(arg1: f32) -> f32;
3511
+ }
3512
+ unsafe extern "C" {
3513
+ pub fn ynf(arg1: ::std::os::raw::c_int, arg2: f32) -> f32;
3514
+ }
3515
+ unsafe extern "C" {
3516
+ pub fn __ynf(arg1: ::std::os::raw::c_int, arg2: f32) -> f32;
3517
+ }
3518
+ unsafe extern "C" {
3519
+ pub fn erff(arg1: f32) -> f32;
3520
+ }
3521
+ unsafe extern "C" {
3522
+ pub fn __erff(arg1: f32) -> f32;
3523
+ }
3524
+ unsafe extern "C" {
3525
+ pub fn erfcf(arg1: f32) -> f32;
3526
+ }
3527
+ unsafe extern "C" {
3528
+ pub fn __erfcf(arg1: f32) -> f32;
3529
+ }
3530
+ unsafe extern "C" {
3531
+ pub fn lgammaf(arg1: f32) -> f32;
3532
+ }
3533
+ unsafe extern "C" {
3534
+ pub fn __lgammaf(arg1: f32) -> f32;
3535
+ }
3536
+ unsafe extern "C" {
3537
+ pub fn tgammaf(arg1: f32) -> f32;
3538
+ }
3539
+ unsafe extern "C" {
3540
+ pub fn __tgammaf(arg1: f32) -> f32;
3541
+ }
3542
+ unsafe extern "C" {
3543
+ pub fn gammaf(arg1: f32) -> f32;
3544
+ }
3545
+ unsafe extern "C" {
3546
+ pub fn __gammaf(arg1: f32) -> f32;
3547
+ }
3548
+ unsafe extern "C" {
3549
+ pub fn lgammaf_r(arg1: f32, __signgamp: *mut ::std::os::raw::c_int) -> f32;
3550
+ }
3551
+ unsafe extern "C" {
3552
+ pub fn __lgammaf_r(arg1: f32, __signgamp: *mut ::std::os::raw::c_int) -> f32;
3553
+ }
3554
+ unsafe extern "C" {
3555
+ pub fn rintf(__x: f32) -> f32;
3556
+ }
3557
+ unsafe extern "C" {
3558
+ pub fn __rintf(__x: f32) -> f32;
3559
+ }
3560
+ unsafe extern "C" {
3561
+ pub fn nextafterf(__x: f32, __y: f32) -> f32;
3562
+ }
3563
+ unsafe extern "C" {
3564
+ pub fn __nextafterf(__x: f32, __y: f32) -> f32;
3565
+ }
3566
+ unsafe extern "C" {
3567
+ pub fn nexttowardf(__x: f32, __y: u128) -> f32;
3568
+ }
3569
+ unsafe extern "C" {
3570
+ pub fn __nexttowardf(__x: f32, __y: u128) -> f32;
3571
+ }
3572
+ unsafe extern "C" {
3573
+ pub fn remainderf(__x: f32, __y: f32) -> f32;
3574
+ }
3575
+ unsafe extern "C" {
3576
+ pub fn __remainderf(__x: f32, __y: f32) -> f32;
3577
+ }
3578
+ unsafe extern "C" {
3579
+ pub fn scalbnf(__x: f32, __n: ::std::os::raw::c_int) -> f32;
3580
+ }
3581
+ unsafe extern "C" {
3582
+ pub fn __scalbnf(__x: f32, __n: ::std::os::raw::c_int) -> f32;
3583
+ }
3584
+ unsafe extern "C" {
3585
+ pub fn ilogbf(__x: f32) -> ::std::os::raw::c_int;
3586
+ }
3587
+ unsafe extern "C" {
3588
+ pub fn __ilogbf(__x: f32) -> ::std::os::raw::c_int;
3589
+ }
3590
+ unsafe extern "C" {
3591
+ pub fn scalblnf(__x: f32, __n: ::std::os::raw::c_long) -> f32;
3592
+ }
3593
+ unsafe extern "C" {
3594
+ pub fn __scalblnf(__x: f32, __n: ::std::os::raw::c_long) -> f32;
3595
+ }
3596
+ unsafe extern "C" {
3597
+ pub fn nearbyintf(__x: f32) -> f32;
3598
+ }
3599
+ unsafe extern "C" {
3600
+ pub fn __nearbyintf(__x: f32) -> f32;
3601
+ }
3602
+ unsafe extern "C" {
3603
+ pub fn roundf(__x: f32) -> f32;
3604
+ }
3605
+ unsafe extern "C" {
3606
+ pub fn truncf(__x: f32) -> f32;
3607
+ }
3608
+ unsafe extern "C" {
3609
+ pub fn remquof(__x: f32, __y: f32, __quo: *mut ::std::os::raw::c_int) -> f32;
3610
+ }
3611
+ unsafe extern "C" {
3612
+ pub fn __remquof(__x: f32, __y: f32, __quo: *mut ::std::os::raw::c_int) -> f32;
3613
+ }
3614
+ unsafe extern "C" {
3615
+ pub fn lrintf(__x: f32) -> ::std::os::raw::c_long;
3616
+ }
3617
+ unsafe extern "C" {
3618
+ pub fn __lrintf(__x: f32) -> ::std::os::raw::c_long;
3619
+ }
3620
+ unsafe extern "C" {
3621
+ pub fn llrintf(__x: f32) -> ::std::os::raw::c_longlong;
3622
+ }
3623
+ unsafe extern "C" {
3624
+ pub fn __llrintf(__x: f32) -> ::std::os::raw::c_longlong;
3625
+ }
3626
+ unsafe extern "C" {
3627
+ pub fn lroundf(__x: f32) -> ::std::os::raw::c_long;
3628
+ }
3629
+ unsafe extern "C" {
3630
+ pub fn __lroundf(__x: f32) -> ::std::os::raw::c_long;
3631
+ }
3632
+ unsafe extern "C" {
3633
+ pub fn llroundf(__x: f32) -> ::std::os::raw::c_longlong;
3634
+ }
3635
+ unsafe extern "C" {
3636
+ pub fn __llroundf(__x: f32) -> ::std::os::raw::c_longlong;
3637
+ }
3638
+ unsafe extern "C" {
3639
+ pub fn fdimf(__x: f32, __y: f32) -> f32;
3640
+ }
3641
+ unsafe extern "C" {
3642
+ pub fn __fdimf(__x: f32, __y: f32) -> f32;
3643
+ }
3644
+ unsafe extern "C" {
3645
+ pub fn fmaxf(__x: f32, __y: f32) -> f32;
3646
+ }
3647
+ unsafe extern "C" {
3648
+ pub fn fminf(__x: f32, __y: f32) -> f32;
3649
+ }
3650
+ unsafe extern "C" {
3651
+ pub fn fmaf(__x: f32, __y: f32, __z: f32) -> f32;
3652
+ }
3653
+ unsafe extern "C" {
3654
+ pub fn __fmaf(__x: f32, __y: f32, __z: f32) -> f32;
3655
+ }
3656
+ unsafe extern "C" {
3657
+ pub fn scalbf(__x: f32, __n: f32) -> f32;
3658
+ }
3659
+ unsafe extern "C" {
3660
+ pub fn __scalbf(__x: f32, __n: f32) -> f32;
3661
+ }
3662
+ unsafe extern "C" {
3663
+ pub fn __fpclassifyl(__value: u128) -> ::std::os::raw::c_int;
3664
+ }
3665
+ unsafe extern "C" {
3666
+ pub fn __signbitl(__value: u128) -> ::std::os::raw::c_int;
3667
+ }
3668
+ unsafe extern "C" {
3669
+ pub fn __isinfl(__value: u128) -> ::std::os::raw::c_int;
3670
+ }
3671
+ unsafe extern "C" {
3672
+ pub fn __finitel(__value: u128) -> ::std::os::raw::c_int;
3673
+ }
3674
+ unsafe extern "C" {
3675
+ pub fn __isnanl(__value: u128) -> ::std::os::raw::c_int;
3676
+ }
3677
+ unsafe extern "C" {
3678
+ pub fn __iseqsigl(__x: u128, __y: u128) -> ::std::os::raw::c_int;
3679
+ }
3680
+ unsafe extern "C" {
3681
+ pub fn __issignalingl(__value: u128) -> ::std::os::raw::c_int;
3682
+ }
3683
+ unsafe extern "C" {
3684
+ pub fn acosl(__x: u128) -> u128;
3685
+ }
3686
+ unsafe extern "C" {
3687
+ pub fn __acosl(__x: u128) -> u128;
3688
+ }
3689
+ unsafe extern "C" {
3690
+ pub fn asinl(__x: u128) -> u128;
3691
+ }
3692
+ unsafe extern "C" {
3693
+ pub fn __asinl(__x: u128) -> u128;
3694
+ }
3695
+ unsafe extern "C" {
3696
+ pub fn atanl(__x: u128) -> u128;
3697
+ }
3698
+ unsafe extern "C" {
3699
+ pub fn __atanl(__x: u128) -> u128;
3700
+ }
3701
+ unsafe extern "C" {
3702
+ pub fn atan2l(__y: u128, __x: u128) -> u128;
3703
+ }
3704
+ unsafe extern "C" {
3705
+ pub fn __atan2l(__y: u128, __x: u128) -> u128;
3706
+ }
3707
+ unsafe extern "C" {
3708
+ pub fn cosl(__x: u128) -> u128;
3709
+ }
3710
+ unsafe extern "C" {
3711
+ pub fn __cosl(__x: u128) -> u128;
3712
+ }
3713
+ unsafe extern "C" {
3714
+ pub fn sinl(__x: u128) -> u128;
3715
+ }
3716
+ unsafe extern "C" {
3717
+ pub fn __sinl(__x: u128) -> u128;
3718
+ }
3719
+ unsafe extern "C" {
3720
+ pub fn tanl(__x: u128) -> u128;
3721
+ }
3722
+ unsafe extern "C" {
3723
+ pub fn __tanl(__x: u128) -> u128;
3724
+ }
3725
+ unsafe extern "C" {
3726
+ pub fn coshl(__x: u128) -> u128;
3727
+ }
3728
+ unsafe extern "C" {
3729
+ pub fn __coshl(__x: u128) -> u128;
3730
+ }
3731
+ unsafe extern "C" {
3732
+ pub fn sinhl(__x: u128) -> u128;
3733
+ }
3734
+ unsafe extern "C" {
3735
+ pub fn __sinhl(__x: u128) -> u128;
3736
+ }
3737
+ unsafe extern "C" {
3738
+ pub fn tanhl(__x: u128) -> u128;
3739
+ }
3740
+ unsafe extern "C" {
3741
+ pub fn __tanhl(__x: u128) -> u128;
3742
+ }
3743
+ unsafe extern "C" {
3744
+ pub fn acoshl(__x: u128) -> u128;
3745
+ }
3746
+ unsafe extern "C" {
3747
+ pub fn __acoshl(__x: u128) -> u128;
3748
+ }
3749
+ unsafe extern "C" {
3750
+ pub fn asinhl(__x: u128) -> u128;
3751
+ }
3752
+ unsafe extern "C" {
3753
+ pub fn __asinhl(__x: u128) -> u128;
3754
+ }
3755
+ unsafe extern "C" {
3756
+ pub fn atanhl(__x: u128) -> u128;
3757
+ }
3758
+ unsafe extern "C" {
3759
+ pub fn __atanhl(__x: u128) -> u128;
3760
+ }
3761
+ unsafe extern "C" {
3762
+ pub fn expl(__x: u128) -> u128;
3763
+ }
3764
+ unsafe extern "C" {
3765
+ pub fn __expl(__x: u128) -> u128;
3766
+ }
3767
+ unsafe extern "C" {
3768
+ pub fn frexpl(__x: u128, __exponent: *mut ::std::os::raw::c_int) -> u128;
3769
+ }
3770
+ unsafe extern "C" {
3771
+ pub fn __frexpl(__x: u128, __exponent: *mut ::std::os::raw::c_int) -> u128;
3772
+ }
3773
+ unsafe extern "C" {
3774
+ pub fn ldexpl(__x: u128, __exponent: ::std::os::raw::c_int) -> u128;
3775
+ }
3776
+ unsafe extern "C" {
3777
+ pub fn __ldexpl(__x: u128, __exponent: ::std::os::raw::c_int) -> u128;
3778
+ }
3779
+ unsafe extern "C" {
3780
+ pub fn logl(__x: u128) -> u128;
3781
+ }
3782
+ unsafe extern "C" {
3783
+ pub fn __logl(__x: u128) -> u128;
3784
+ }
3785
+ unsafe extern "C" {
3786
+ pub fn log10l(__x: u128) -> u128;
3787
+ }
3788
+ unsafe extern "C" {
3789
+ pub fn __log10l(__x: u128) -> u128;
3790
+ }
3791
+ unsafe extern "C" {
3792
+ pub fn modfl(__x: u128, __iptr: *mut u128) -> u128;
3793
+ }
3794
+ unsafe extern "C" {
3795
+ pub fn __modfl(__x: u128, __iptr: *mut u128) -> u128;
3796
+ }
3797
+ unsafe extern "C" {
3798
+ pub fn expm1l(__x: u128) -> u128;
3799
+ }
3800
+ unsafe extern "C" {
3801
+ pub fn __expm1l(__x: u128) -> u128;
3802
+ }
3803
+ unsafe extern "C" {
3804
+ pub fn log1pl(__x: u128) -> u128;
3805
+ }
3806
+ unsafe extern "C" {
3807
+ pub fn __log1pl(__x: u128) -> u128;
3808
+ }
3809
+ unsafe extern "C" {
3810
+ pub fn logbl(__x: u128) -> u128;
3811
+ }
3812
+ unsafe extern "C" {
3813
+ pub fn __logbl(__x: u128) -> u128;
3814
+ }
3815
+ unsafe extern "C" {
3816
+ pub fn exp2l(__x: u128) -> u128;
3817
+ }
3818
+ unsafe extern "C" {
3819
+ pub fn __exp2l(__x: u128) -> u128;
3820
+ }
3821
+ unsafe extern "C" {
3822
+ pub fn log2l(__x: u128) -> u128;
3823
+ }
3824
+ unsafe extern "C" {
3825
+ pub fn __log2l(__x: u128) -> u128;
3826
+ }
3827
+ unsafe extern "C" {
3828
+ pub fn powl(__x: u128, __y: u128) -> u128;
3829
+ }
3830
+ unsafe extern "C" {
3831
+ pub fn __powl(__x: u128, __y: u128) -> u128;
3832
+ }
3833
+ unsafe extern "C" {
3834
+ pub fn sqrtl(__x: u128) -> u128;
3835
+ }
3836
+ unsafe extern "C" {
3837
+ pub fn __sqrtl(__x: u128) -> u128;
3838
+ }
3839
+ unsafe extern "C" {
3840
+ pub fn hypotl(__x: u128, __y: u128) -> u128;
3841
+ }
3842
+ unsafe extern "C" {
3843
+ pub fn __hypotl(__x: u128, __y: u128) -> u128;
3844
+ }
3845
+ unsafe extern "C" {
3846
+ pub fn cbrtl(__x: u128) -> u128;
3847
+ }
3848
+ unsafe extern "C" {
3849
+ pub fn __cbrtl(__x: u128) -> u128;
3850
+ }
3851
+ unsafe extern "C" {
3852
+ pub fn ceill(__x: u128) -> u128;
3853
+ }
3854
+ unsafe extern "C" {
3855
+ pub fn fabsl(__x: u128) -> u128;
3856
+ }
3857
+ unsafe extern "C" {
3858
+ pub fn floorl(__x: u128) -> u128;
3859
+ }
3860
+ unsafe extern "C" {
3861
+ pub fn fmodl(__x: u128, __y: u128) -> u128;
3862
+ }
3863
+ unsafe extern "C" {
3864
+ pub fn __fmodl(__x: u128, __y: u128) -> u128;
3865
+ }
3866
+ unsafe extern "C" {
3867
+ pub fn isinfl(__value: u128) -> ::std::os::raw::c_int;
3868
+ }
3869
+ unsafe extern "C" {
3870
+ pub fn finitel(__value: u128) -> ::std::os::raw::c_int;
3871
+ }
3872
+ unsafe extern "C" {
3873
+ pub fn dreml(__x: u128, __y: u128) -> u128;
3874
+ }
3875
+ unsafe extern "C" {
3876
+ pub fn __dreml(__x: u128, __y: u128) -> u128;
3877
+ }
3878
+ unsafe extern "C" {
3879
+ pub fn significandl(__x: u128) -> u128;
3880
+ }
3881
+ unsafe extern "C" {
3882
+ pub fn __significandl(__x: u128) -> u128;
3883
+ }
3884
+ unsafe extern "C" {
3885
+ pub fn copysignl(__x: u128, __y: u128) -> u128;
3886
+ }
3887
+ unsafe extern "C" {
3888
+ pub fn nanl(__tagb: *const ::std::os::raw::c_char) -> u128;
3889
+ }
3890
+ unsafe extern "C" {
3891
+ pub fn __nanl(__tagb: *const ::std::os::raw::c_char) -> u128;
3892
+ }
3893
+ unsafe extern "C" {
3894
+ pub fn isnanl(__value: u128) -> ::std::os::raw::c_int;
3895
+ }
3896
+ unsafe extern "C" {
3897
+ pub fn j0l(arg1: u128) -> u128;
3898
+ }
3899
+ unsafe extern "C" {
3900
+ pub fn __j0l(arg1: u128) -> u128;
3901
+ }
3902
+ unsafe extern "C" {
3903
+ pub fn j1l(arg1: u128) -> u128;
3904
+ }
3905
+ unsafe extern "C" {
3906
+ pub fn __j1l(arg1: u128) -> u128;
3907
+ }
3908
+ unsafe extern "C" {
3909
+ pub fn jnl(arg1: ::std::os::raw::c_int, arg2: u128) -> u128;
3910
+ }
3911
+ unsafe extern "C" {
3912
+ pub fn __jnl(arg1: ::std::os::raw::c_int, arg2: u128) -> u128;
3913
+ }
3914
+ unsafe extern "C" {
3915
+ pub fn y0l(arg1: u128) -> u128;
3916
+ }
3917
+ unsafe extern "C" {
3918
+ pub fn __y0l(arg1: u128) -> u128;
3919
+ }
3920
+ unsafe extern "C" {
3921
+ pub fn y1l(arg1: u128) -> u128;
3922
+ }
3923
+ unsafe extern "C" {
3924
+ pub fn __y1l(arg1: u128) -> u128;
3925
+ }
3926
+ unsafe extern "C" {
3927
+ pub fn ynl(arg1: ::std::os::raw::c_int, arg2: u128) -> u128;
3928
+ }
3929
+ unsafe extern "C" {
3930
+ pub fn __ynl(arg1: ::std::os::raw::c_int, arg2: u128) -> u128;
3931
+ }
3932
+ unsafe extern "C" {
3933
+ pub fn erfl(arg1: u128) -> u128;
3934
+ }
3935
+ unsafe extern "C" {
3936
+ pub fn __erfl(arg1: u128) -> u128;
3937
+ }
3938
+ unsafe extern "C" {
3939
+ pub fn erfcl(arg1: u128) -> u128;
3940
+ }
3941
+ unsafe extern "C" {
3942
+ pub fn __erfcl(arg1: u128) -> u128;
3943
+ }
3944
+ unsafe extern "C" {
3945
+ pub fn lgammal(arg1: u128) -> u128;
3946
+ }
3947
+ unsafe extern "C" {
3948
+ pub fn __lgammal(arg1: u128) -> u128;
3949
+ }
3950
+ unsafe extern "C" {
3951
+ pub fn tgammal(arg1: u128) -> u128;
3952
+ }
3953
+ unsafe extern "C" {
3954
+ pub fn __tgammal(arg1: u128) -> u128;
3955
+ }
3956
+ unsafe extern "C" {
3957
+ pub fn gammal(arg1: u128) -> u128;
3958
+ }
3959
+ unsafe extern "C" {
3960
+ pub fn __gammal(arg1: u128) -> u128;
3961
+ }
3962
+ unsafe extern "C" {
3963
+ pub fn lgammal_r(arg1: u128, __signgamp: *mut ::std::os::raw::c_int) -> u128;
3964
+ }
3965
+ unsafe extern "C" {
3966
+ pub fn __lgammal_r(arg1: u128, __signgamp: *mut ::std::os::raw::c_int) -> u128;
3967
+ }
3968
+ unsafe extern "C" {
3969
+ pub fn rintl(__x: u128) -> u128;
3970
+ }
3971
+ unsafe extern "C" {
3972
+ pub fn __rintl(__x: u128) -> u128;
3973
+ }
3974
+ unsafe extern "C" {
3975
+ pub fn nextafterl(__x: u128, __y: u128) -> u128;
3976
+ }
3977
+ unsafe extern "C" {
3978
+ pub fn __nextafterl(__x: u128, __y: u128) -> u128;
3979
+ }
3980
+ unsafe extern "C" {
3981
+ pub fn nexttowardl(__x: u128, __y: u128) -> u128;
3982
+ }
3983
+ unsafe extern "C" {
3984
+ pub fn __nexttowardl(__x: u128, __y: u128) -> u128;
3985
+ }
3986
+ unsafe extern "C" {
3987
+ pub fn remainderl(__x: u128, __y: u128) -> u128;
3988
+ }
3989
+ unsafe extern "C" {
3990
+ pub fn __remainderl(__x: u128, __y: u128) -> u128;
3991
+ }
3992
+ unsafe extern "C" {
3993
+ pub fn scalbnl(__x: u128, __n: ::std::os::raw::c_int) -> u128;
3994
+ }
3995
+ unsafe extern "C" {
3996
+ pub fn __scalbnl(__x: u128, __n: ::std::os::raw::c_int) -> u128;
3997
+ }
3998
+ unsafe extern "C" {
3999
+ pub fn ilogbl(__x: u128) -> ::std::os::raw::c_int;
4000
+ }
4001
+ unsafe extern "C" {
4002
+ pub fn __ilogbl(__x: u128) -> ::std::os::raw::c_int;
4003
+ }
4004
+ unsafe extern "C" {
4005
+ pub fn scalblnl(__x: u128, __n: ::std::os::raw::c_long) -> u128;
4006
+ }
4007
+ unsafe extern "C" {
4008
+ pub fn __scalblnl(__x: u128, __n: ::std::os::raw::c_long) -> u128;
4009
+ }
4010
+ unsafe extern "C" {
4011
+ pub fn nearbyintl(__x: u128) -> u128;
4012
+ }
4013
+ unsafe extern "C" {
4014
+ pub fn __nearbyintl(__x: u128) -> u128;
4015
+ }
4016
+ unsafe extern "C" {
4017
+ pub fn roundl(__x: u128) -> u128;
4018
+ }
4019
+ unsafe extern "C" {
4020
+ pub fn truncl(__x: u128) -> u128;
4021
+ }
4022
+ unsafe extern "C" {
4023
+ pub fn remquol(__x: u128, __y: u128, __quo: *mut ::std::os::raw::c_int) -> u128;
4024
+ }
4025
+ unsafe extern "C" {
4026
+ pub fn __remquol(__x: u128, __y: u128, __quo: *mut ::std::os::raw::c_int) -> u128;
4027
+ }
4028
+ unsafe extern "C" {
4029
+ pub fn lrintl(__x: u128) -> ::std::os::raw::c_long;
4030
+ }
4031
+ unsafe extern "C" {
4032
+ pub fn __lrintl(__x: u128) -> ::std::os::raw::c_long;
4033
+ }
4034
+ unsafe extern "C" {
4035
+ pub fn llrintl(__x: u128) -> ::std::os::raw::c_longlong;
4036
+ }
4037
+ unsafe extern "C" {
4038
+ pub fn __llrintl(__x: u128) -> ::std::os::raw::c_longlong;
4039
+ }
4040
+ unsafe extern "C" {
4041
+ pub fn lroundl(__x: u128) -> ::std::os::raw::c_long;
4042
+ }
4043
+ unsafe extern "C" {
4044
+ pub fn __lroundl(__x: u128) -> ::std::os::raw::c_long;
4045
+ }
4046
+ unsafe extern "C" {
4047
+ pub fn llroundl(__x: u128) -> ::std::os::raw::c_longlong;
4048
+ }
4049
+ unsafe extern "C" {
4050
+ pub fn __llroundl(__x: u128) -> ::std::os::raw::c_longlong;
4051
+ }
4052
+ unsafe extern "C" {
4053
+ pub fn fdiml(__x: u128, __y: u128) -> u128;
4054
+ }
4055
+ unsafe extern "C" {
4056
+ pub fn __fdiml(__x: u128, __y: u128) -> u128;
4057
+ }
4058
+ unsafe extern "C" {
4059
+ pub fn fmaxl(__x: u128, __y: u128) -> u128;
4060
+ }
4061
+ unsafe extern "C" {
4062
+ pub fn fminl(__x: u128, __y: u128) -> u128;
4063
+ }
4064
+ unsafe extern "C" {
4065
+ pub fn fmal(__x: u128, __y: u128, __z: u128) -> u128;
4066
+ }
4067
+ unsafe extern "C" {
4068
+ pub fn __fmal(__x: u128, __y: u128, __z: u128) -> u128;
4069
+ }
4070
+ unsafe extern "C" {
4071
+ pub fn scalbl(__x: u128, __n: u128) -> u128;
4072
+ }
4073
+ unsafe extern "C" {
4074
+ pub fn __scalbl(__x: u128, __n: u128) -> u128;
4075
+ }
4076
+ unsafe extern "C" {
4077
+ pub static mut signgam: ::std::os::raw::c_int;
4078
+ }
4079
+ pub const FP_NAN: _bindgen_ty_1 = 0;
4080
+ pub const FP_INFINITE: _bindgen_ty_1 = 1;
4081
+ pub const FP_ZERO: _bindgen_ty_1 = 2;
4082
+ pub const FP_SUBNORMAL: _bindgen_ty_1 = 3;
4083
+ pub const FP_NORMAL: _bindgen_ty_1 = 4;
4084
+ pub type _bindgen_ty_1 = ::std::os::raw::c_uint;
4085
+ pub type __gwchar_t = ::std::os::raw::c_uint;
4086
+ #[repr(C)]
4087
+ #[derive(Debug, Copy, Clone)]
4088
+ pub struct imaxdiv_t {
4089
+ pub quot: ::std::os::raw::c_long,
4090
+ pub rem: ::std::os::raw::c_long,
4091
+ }
4092
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
4093
+ const _: () = {
4094
+ ["Size of imaxdiv_t"][::std::mem::size_of::<imaxdiv_t>() - 16usize];
4095
+ ["Alignment of imaxdiv_t"][::std::mem::align_of::<imaxdiv_t>() - 8usize];
4096
+ ["Offset of field: imaxdiv_t::quot"][::std::mem::offset_of!(imaxdiv_t, quot) - 0usize];
4097
+ ["Offset of field: imaxdiv_t::rem"][::std::mem::offset_of!(imaxdiv_t, rem) - 8usize];
4098
+ };
4099
+ unsafe extern "C" {
4100
+ pub fn imaxabs(__n: intmax_t) -> intmax_t;
4101
+ }
4102
+ unsafe extern "C" {
4103
+ pub fn imaxdiv(__numer: intmax_t, __denom: intmax_t) -> imaxdiv_t;
4104
+ }
4105
+ unsafe extern "C" {
4106
+ pub fn strtoimax(
4107
+ __nptr: *const ::std::os::raw::c_char,
4108
+ __endptr: *mut *mut ::std::os::raw::c_char,
4109
+ __base: ::std::os::raw::c_int,
4110
+ ) -> intmax_t;
4111
+ }
4112
+ unsafe extern "C" {
4113
+ pub fn strtoumax(
4114
+ __nptr: *const ::std::os::raw::c_char,
4115
+ __endptr: *mut *mut ::std::os::raw::c_char,
4116
+ __base: ::std::os::raw::c_int,
4117
+ ) -> uintmax_t;
4118
+ }
4119
+ unsafe extern "C" {
4120
+ pub fn wcstoimax(
4121
+ __nptr: *const __gwchar_t,
4122
+ __endptr: *mut *mut __gwchar_t,
4123
+ __base: ::std::os::raw::c_int,
4124
+ ) -> intmax_t;
4125
+ }
4126
+ unsafe extern "C" {
4127
+ pub fn wcstoumax(
4128
+ __nptr: *const __gwchar_t,
4129
+ __endptr: *mut *mut __gwchar_t,
4130
+ __base: ::std::os::raw::c_int,
4131
+ ) -> uintmax_t;
4132
+ }
4133
+ unsafe extern "C" {
4134
+ pub fn js_create(buf: *mut ::std::os::raw::c_void, len: usize) -> *mut ant_t;
4135
+ }
4136
+ unsafe extern "C" {
4137
+ pub fn js_create_dynamic() -> *mut ant_t;
4138
+ }
4139
+ unsafe extern "C" {
4140
+ pub fn js_glob(arg1: *mut ant_t) -> ant_value_t;
4141
+ }
4142
+ unsafe extern "C" {
4143
+ pub fn js_mark_constructor(value: ant_value_t, is_constructor: bool);
4144
+ }
4145
+ unsafe extern "C" {
4146
+ pub fn js_eval_bytecode(
4147
+ arg1: *mut ant_t,
4148
+ arg2: *const ::std::os::raw::c_char,
4149
+ arg3: usize,
4150
+ ) -> ant_value_t;
4151
+ }
4152
+ unsafe extern "C" {
4153
+ pub fn js_eval_bytecode_module(
4154
+ arg1: *mut ant_t,
4155
+ arg2: *const ::std::os::raw::c_char,
4156
+ arg3: usize,
4157
+ ) -> ant_value_t;
4158
+ }
4159
+ unsafe extern "C" {
4160
+ pub fn js_eval_bytecode_eval(
4161
+ arg1: *mut ant_t,
4162
+ arg2: *const ::std::os::raw::c_char,
4163
+ arg3: usize,
4164
+ ) -> ant_value_t;
4165
+ }
4166
+ unsafe extern "C" {
4167
+ pub fn js_eval_bytecode_eval_with_strict(
4168
+ arg1: *mut ant_t,
4169
+ arg2: *const ::std::os::raw::c_char,
4170
+ arg3: usize,
4171
+ arg4: bool,
4172
+ ) -> ant_value_t;
4173
+ }
4174
+ unsafe extern "C" {
4175
+ pub fn js_eval_bytecode_repl(
4176
+ arg1: *mut ant_t,
4177
+ arg2: *const ::std::os::raw::c_char,
4178
+ arg3: usize,
4179
+ ) -> ant_value_t;
4180
+ }
4181
+ unsafe extern "C" {
4182
+ pub fn js_destroy(arg1: *mut ant_t);
4183
+ }
4184
+ unsafe extern "C" {
4185
+ pub fn js_truthy(arg1: *mut ant_t, arg2: ant_value_t) -> bool;
4186
+ }
4187
+ unsafe extern "C" {
4188
+ pub fn js_setstackbase(arg1: *mut ant_t, arg2: *mut ::std::os::raw::c_void);
4189
+ }
4190
+ unsafe extern "C" {
4191
+ pub fn js_setstacklimit(arg1: *mut ant_t, arg2: usize);
4192
+ }
4193
+ unsafe extern "C" {
4194
+ pub fn js_to_uint32(d: f64) -> u32;
4195
+ }
4196
+ unsafe extern "C" {
4197
+ pub fn js_to_int32(d: f64) -> i32;
4198
+ }
4199
+ unsafe extern "C" {
4200
+ pub fn js_chkargs(
4201
+ arg1: *mut ant_value_t,
4202
+ arg2: ::std::os::raw::c_int,
4203
+ arg3: *const ::std::os::raw::c_char,
4204
+ ) -> bool;
4205
+ }
4206
+ unsafe extern "C" {
4207
+ pub fn js_set_filename(arg1: *mut ant_t, arg2: *const ::std::os::raw::c_char);
4208
+ }
4209
+ unsafe extern "C" {
4210
+ pub fn js_stats(arg1: *mut ant_t, total: *mut usize, min: *mut usize, cstacksize: *mut usize);
4211
+ }
4212
+ unsafe extern "C" {
4213
+ pub fn js_mkundef() -> ant_value_t;
4214
+ }
4215
+ unsafe extern "C" {
4216
+ pub fn js_mknull() -> ant_value_t;
4217
+ }
4218
+ unsafe extern "C" {
4219
+ pub fn js_mknum(arg1: f64) -> ant_value_t;
4220
+ }
4221
+ unsafe extern "C" {
4222
+ pub fn js_mkpromise(js: *mut ant_t) -> ant_value_t;
4223
+ }
4224
+ unsafe extern "C" {
4225
+ pub fn js_mkgenerator(js: *mut ant_t) -> ant_value_t;
4226
+ }
4227
+ unsafe extern "C" {
4228
+ pub fn js_getthis(arg1: *mut ant_t) -> ant_value_t;
4229
+ }
4230
+ unsafe extern "C" {
4231
+ pub fn js_setthis(arg1: *mut ant_t, arg2: ant_value_t);
4232
+ }
4233
+ unsafe extern "C" {
4234
+ pub fn js_getcurrentfunc(arg1: *mut ant_t) -> ant_value_t;
4235
+ }
4236
+ unsafe extern "C" {
4237
+ pub fn js_get(
4238
+ arg1: *mut ant_t,
4239
+ arg2: ant_value_t,
4240
+ arg3: *const ::std::os::raw::c_char,
4241
+ ) -> ant_value_t;
4242
+ }
4243
+ unsafe extern "C" {
4244
+ pub fn js_getprop_proto(
4245
+ arg1: *mut ant_t,
4246
+ arg2: ant_value_t,
4247
+ arg3: *const ::std::os::raw::c_char,
4248
+ ) -> ant_value_t;
4249
+ }
4250
+ unsafe extern "C" {
4251
+ pub fn js_getprop_fallback(
4252
+ js: *mut ant_t,
4253
+ obj: ant_value_t,
4254
+ name: *const ::std::os::raw::c_char,
4255
+ ) -> ant_value_t;
4256
+ }
4257
+ unsafe extern "C" {
4258
+ pub fn js_getprop_super(
4259
+ js: *mut ant_t,
4260
+ super_obj: ant_value_t,
4261
+ receiver: ant_value_t,
4262
+ name: *const ::std::os::raw::c_char,
4263
+ ) -> ant_value_t;
4264
+ }
4265
+ unsafe extern "C" {
4266
+ pub fn js_arr_len(js: *mut ant_t, arr: ant_value_t) -> ant_offset_t;
4267
+ }
4268
+ unsafe extern "C" {
4269
+ pub fn js_arr_get(js: *mut ant_t, arr: ant_value_t, idx: ant_offset_t) -> ant_value_t;
4270
+ }
4271
+ unsafe extern "C" {
4272
+ pub fn js_iter(
4273
+ js: *mut ant_t,
4274
+ iterable: ant_value_t,
4275
+ callback: ::std::option::Option<
4276
+ unsafe extern "C" fn(
4277
+ js: *mut ant_t,
4278
+ value: ant_value_t,
4279
+ udata: *mut ::std::os::raw::c_void,
4280
+ ) -> bool,
4281
+ >,
4282
+ udata: *mut ::std::os::raw::c_void,
4283
+ ) -> bool;
4284
+ }
4285
+ unsafe extern "C" {
4286
+ pub fn js_sym_desc(sym: ant_value_t) -> *const ::std::os::raw::c_char;
4287
+ }
4288
+ unsafe extern "C" {
4289
+ pub fn js_sym_key(sym: ant_value_t) -> *const ::std::os::raw::c_char;
4290
+ }
4291
+ unsafe extern "C" {
4292
+ pub fn js_mksym_for(arg1: *mut ant_t, key: *const ::std::os::raw::c_char) -> ant_value_t;
4293
+ }
4294
+ unsafe extern "C" {
4295
+ pub fn js_symbol_to_string(js: *mut ant_t, sym: ant_value_t) -> ant_value_t;
4296
+ }
4297
+ unsafe extern "C" {
4298
+ pub fn js_get_sym(arg1: *mut ant_t, obj: ant_value_t, sym: ant_value_t) -> ant_value_t;
4299
+ }
4300
+ unsafe extern "C" {
4301
+ pub fn js_get_symbol(
4302
+ arg1: *mut ant_t,
4303
+ obj: ant_value_t,
4304
+ key: *const ::std::os::raw::c_char,
4305
+ ) -> ant_value_t;
4306
+ }
4307
+ unsafe extern "C" {
4308
+ pub fn js_get_sym_with_receiver(
4309
+ arg1: *mut ant_t,
4310
+ obj: ant_value_t,
4311
+ sym: ant_value_t,
4312
+ receiver: ant_value_t,
4313
+ ) -> ant_value_t;
4314
+ }
4315
+ unsafe extern "C" {
4316
+ pub fn js_mkobj(arg1: *mut ant_t) -> ant_value_t;
4317
+ }
4318
+ unsafe extern "C" {
4319
+ pub fn js_mkobj_with_inobj_limit(arg1: *mut ant_t, inobj_limit: u8) -> ant_value_t;
4320
+ }
4321
+ unsafe extern "C" {
4322
+ pub fn js_newobj(arg1: *mut ant_t) -> ant_value_t;
4323
+ }
4324
+ unsafe extern "C" {
4325
+ pub fn js_mkarr(arg1: *mut ant_t) -> ant_value_t;
4326
+ }
4327
+ unsafe extern "C" {
4328
+ pub fn js_mkstr(
4329
+ arg1: *mut ant_t,
4330
+ arg2: *const ::std::os::raw::c_void,
4331
+ arg3: usize,
4332
+ ) -> ant_value_t;
4333
+ }
4334
+ unsafe extern "C" {
4335
+ pub fn js_mkstr_permanent(
4336
+ arg1: *mut ant_t,
4337
+ arg2: *const ::std::os::raw::c_void,
4338
+ arg3: usize,
4339
+ ) -> ant_value_t;
4340
+ }
4341
+ unsafe extern "C" {
4342
+ pub fn js_mkbigint(
4343
+ arg1: *mut ant_t,
4344
+ digits: *const ::std::os::raw::c_char,
4345
+ len: usize,
4346
+ negative: bool,
4347
+ ) -> ant_value_t;
4348
+ }
4349
+ unsafe extern "C" {
4350
+ pub fn js_mksym(arg1: *mut ant_t, desc: *const ::std::os::raw::c_char) -> ant_value_t;
4351
+ }
4352
+ unsafe extern "C" {
4353
+ pub fn js_mksym_well_known(
4354
+ arg1: *mut ant_t,
4355
+ desc: *const ::std::os::raw::c_char,
4356
+ ) -> ant_value_t;
4357
+ }
4358
+ unsafe extern "C" {
4359
+ pub fn js_mkfun_meta(meta: *const ant_cfunc_meta_t) -> ant_value_t;
4360
+ }
4361
+ unsafe extern "C" {
4362
+ pub fn js_mkfun_dyn(fn_: ant_cfunc_t) -> ant_value_t;
4363
+ }
4364
+ unsafe extern "C" {
4365
+ pub fn js_heavy_mkfun(
4366
+ js: *mut ant_t,
4367
+ fn_: ::std::option::Option<
4368
+ unsafe extern "C" fn(
4369
+ js: *mut ant_t,
4370
+ args: *mut ant_value_t,
4371
+ nargs: ::std::os::raw::c_int,
4372
+ ) -> ant_value_t,
4373
+ >,
4374
+ data: ant_value_t,
4375
+ ) -> ant_value_t;
4376
+ }
4377
+ unsafe extern "C" {
4378
+ pub fn js_heavy_mkfun_native(
4379
+ js: *mut ant_t,
4380
+ fn_: ::std::option::Option<
4381
+ unsafe extern "C" fn(
4382
+ js: *mut ant_t,
4383
+ args: *mut ant_value_t,
4384
+ nargs: ::std::os::raw::c_int,
4385
+ ) -> ant_value_t,
4386
+ >,
4387
+ ptr: *mut ::std::os::raw::c_void,
4388
+ tag: u32,
4389
+ ) -> ant_value_t;
4390
+ }
4391
+ unsafe extern "C" {
4392
+ pub fn js_mkprop_fast(
4393
+ js: *mut ant_t,
4394
+ obj: ant_value_t,
4395
+ key: *const ::std::os::raw::c_char,
4396
+ len: usize,
4397
+ v: ant_value_t,
4398
+ ) -> ant_value_t;
4399
+ }
4400
+ unsafe extern "C" {
4401
+ pub fn js_mkprop_fast_off(
4402
+ js: *mut ant_t,
4403
+ obj: ant_value_t,
4404
+ key: *const ::std::os::raw::c_char,
4405
+ len: usize,
4406
+ v: ant_value_t,
4407
+ ) -> ant_offset_t;
4408
+ }
4409
+ unsafe extern "C" {
4410
+ pub fn js_set(
4411
+ arg1: *mut ant_t,
4412
+ arg2: ant_value_t,
4413
+ arg3: *const ::std::os::raw::c_char,
4414
+ arg4: ant_value_t,
4415
+ );
4416
+ }
4417
+ unsafe extern "C" {
4418
+ pub fn js_set_exact(
4419
+ arg1: *mut ant_t,
4420
+ arg2: ant_value_t,
4421
+ arg3: *const ::std::os::raw::c_char,
4422
+ arg4: ant_value_t,
4423
+ );
4424
+ }
4425
+ unsafe extern "C" {
4426
+ pub fn js_set_sym(arg1: *mut ant_t, obj: ant_value_t, sym: ant_value_t, val: ant_value_t);
4427
+ }
4428
+ unsafe extern "C" {
4429
+ pub fn js_set_symbol(
4430
+ arg1: *mut ant_t,
4431
+ obj: ant_value_t,
4432
+ key: *const ::std::os::raw::c_char,
4433
+ val: ant_value_t,
4434
+ );
4435
+ }
4436
+ unsafe extern "C" {
4437
+ pub fn js_saveval(js: *mut ant_t, off: ant_offset_t, v: ant_value_t);
4438
+ }
4439
+ unsafe extern "C" {
4440
+ pub fn js_merge_obj(arg1: *mut ant_t, dst: ant_value_t, src: ant_value_t);
4441
+ }
4442
+ unsafe extern "C" {
4443
+ pub fn js_arr_push(arg1: *mut ant_t, arr: ant_value_t, val: ant_value_t);
4444
+ }
4445
+ unsafe extern "C" {
4446
+ pub fn js_set_proto(obj: ant_value_t, proto: ant_value_t);
4447
+ }
4448
+ unsafe extern "C" {
4449
+ pub fn js_set_proto_wb(js: *mut ant_t, obj: ant_value_t, proto: ant_value_t);
4450
+ }
4451
+ unsafe extern "C" {
4452
+ pub fn js_set_proto_init(obj: ant_value_t, proto: ant_value_t);
4453
+ }
4454
+ unsafe extern "C" {
4455
+ pub fn js_propref_load(js: *mut ant_t, handle: ant_offset_t) -> ant_value_t;
4456
+ }
4457
+ unsafe extern "C" {
4458
+ pub fn js_setprop(
4459
+ arg1: *mut ant_t,
4460
+ obj: ant_value_t,
4461
+ key: ant_value_t,
4462
+ val: ant_value_t,
4463
+ ) -> ant_value_t;
4464
+ }
4465
+ unsafe extern "C" {
4466
+ pub fn js_setprop_nonconfigurable(
4467
+ arg1: *mut ant_t,
4468
+ obj: ant_value_t,
4469
+ key: *const ::std::os::raw::c_char,
4470
+ keylen: usize,
4471
+ val: ant_value_t,
4472
+ ) -> ant_value_t;
4473
+ }
4474
+ unsafe extern "C" {
4475
+ pub fn js_get_proto(arg1: *mut ant_t, obj: ant_value_t) -> ant_value_t;
4476
+ }
4477
+ unsafe extern "C" {
4478
+ pub fn js_get_ctor_proto(
4479
+ arg1: *mut ant_t,
4480
+ name: *const ::std::os::raw::c_char,
4481
+ len: usize,
4482
+ ) -> ant_value_t;
4483
+ }
4484
+ unsafe extern "C" {
4485
+ pub fn js_tostring_val(js: *mut ant_t, value: ant_value_t) -> ant_value_t;
4486
+ }
4487
+ unsafe extern "C" {
4488
+ pub fn vtype(val: ant_value_t) -> u8;
4489
+ }
4490
+ unsafe extern "C" {
4491
+ pub fn vdata(val: ant_value_t) -> usize;
4492
+ }
4493
+ unsafe extern "C" {
4494
+ pub fn js_is_constructor(value: ant_value_t) -> bool;
4495
+ }
4496
+ unsafe extern "C" {
4497
+ pub fn js_obj_ptr(val: ant_value_t) -> *mut ant_object_t;
4498
+ }
4499
+ unsafe extern "C" {
4500
+ pub fn js_obj_from_ptr(obj: *mut ant_object_t) -> ant_value_t;
4501
+ }
4502
+ unsafe extern "C" {
4503
+ pub fn js_getnum(val: ant_value_t) -> f64;
4504
+ }
4505
+ unsafe extern "C" {
4506
+ pub fn js_getstr(
4507
+ js: *mut ant_t,
4508
+ val: ant_value_t,
4509
+ len: *mut usize,
4510
+ ) -> *mut ::std::os::raw::c_char;
4511
+ }
4512
+ unsafe extern "C" {
4513
+ pub fn js_str(arg1: *mut ant_t, val: ant_value_t) -> *const ::std::os::raw::c_char;
4514
+ }
4515
+ unsafe extern "C" {
4516
+ pub fn get_str_prop(
4517
+ js: *mut ant_t,
4518
+ obj: ant_value_t,
4519
+ key: *const ::std::os::raw::c_char,
4520
+ klen: ant_offset_t,
4521
+ out_len: *mut ant_offset_t,
4522
+ ) -> *const ::std::os::raw::c_char;
4523
+ }
4524
+ #[repr(C)]
4525
+ #[derive(Debug, Copy, Clone)]
4526
+ pub struct ant_iter_t {
4527
+ pub ctx: *mut ::std::os::raw::c_void,
4528
+ pub off: ant_offset_t,
4529
+ }
4530
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
4531
+ const _: () = {
4532
+ ["Size of ant_iter_t"][::std::mem::size_of::<ant_iter_t>() - 16usize];
4533
+ ["Alignment of ant_iter_t"][::std::mem::align_of::<ant_iter_t>() - 8usize];
4534
+ ["Offset of field: ant_iter_t::ctx"][::std::mem::offset_of!(ant_iter_t, ctx) - 0usize];
4535
+ ["Offset of field: ant_iter_t::off"][::std::mem::offset_of!(ant_iter_t, off) - 8usize];
4536
+ };
4537
+ #[repr(C)]
4538
+ #[derive(Debug, Copy, Clone)]
4539
+ pub struct ant_iter_key_t {
4540
+ pub slot: u32,
4541
+ pub is_symbol: bool,
4542
+ pub str_: *const ::std::os::raw::c_char,
4543
+ pub key_len: usize,
4544
+ pub sym_off: ant_offset_t,
4545
+ }
4546
+ #[allow(clippy::unnecessary_operation, clippy::identity_op)]
4547
+ const _: () = {
4548
+ ["Size of ant_iter_key_t"][::std::mem::size_of::<ant_iter_key_t>() - 32usize];
4549
+ ["Alignment of ant_iter_key_t"][::std::mem::align_of::<ant_iter_key_t>() - 8usize];
4550
+ ["Offset of field: ant_iter_key_t::slot"]
4551
+ [::std::mem::offset_of!(ant_iter_key_t, slot) - 0usize];
4552
+ ["Offset of field: ant_iter_key_t::is_symbol"]
4553
+ [::std::mem::offset_of!(ant_iter_key_t, is_symbol) - 4usize];
4554
+ ["Offset of field: ant_iter_key_t::str_"]
4555
+ [::std::mem::offset_of!(ant_iter_key_t, str_) - 8usize];
4556
+ ["Offset of field: ant_iter_key_t::key_len"]
4557
+ [::std::mem::offset_of!(ant_iter_key_t, key_len) - 16usize];
4558
+ ["Offset of field: ant_iter_key_t::sym_off"]
4559
+ [::std::mem::offset_of!(ant_iter_key_t, sym_off) - 24usize];
4560
+ };
4561
+ unsafe extern "C" {
4562
+ pub fn js_prop_iter_begin(js: *mut ant_t, obj: ant_value_t) -> ant_iter_t;
4563
+ }
4564
+ unsafe extern "C" {
4565
+ pub fn js_prop_iter_end(iter: *mut ant_iter_t);
4566
+ }
4567
+ unsafe extern "C" {
4568
+ pub fn js_prop_iter_next_key(
4569
+ iter: *mut ant_iter_t,
4570
+ key_out: *mut ant_iter_key_t,
4571
+ value: *mut ant_value_t,
4572
+ ) -> bool;
4573
+ }
4574
+ unsafe extern "C" {
4575
+ pub fn js_prop_iter_next(
4576
+ iter: *mut ant_iter_t,
4577
+ key: *mut *const ::std::os::raw::c_char,
4578
+ key_len: *mut usize,
4579
+ value: *mut ant_value_t,
4580
+ ) -> bool;
4581
+ }
4582
+ unsafe extern "C" {
4583
+ pub fn js_prop_iter_next_val(
4584
+ iter: *mut ant_iter_t,
4585
+ key_out: *mut ant_value_t,
4586
+ value: *mut ant_value_t,
4587
+ ) -> bool;
4588
+ }
4589
+ unsafe extern "C" {
4590
+ pub fn js_is_own_enumerable_prop(
4591
+ js: *mut ant_t,
4592
+ source: ant_value_t,
4593
+ source_ptr: *mut ant_object_t,
4594
+ key: *const ant_iter_key_t,
4595
+ ) -> bool;
4596
+ }
4597
+ unsafe extern "C" {
4598
+ pub fn js_copy_exotic_own_props(js: *mut ant_t, dst: ant_value_t, src: ant_value_t) -> bool;
4599
+ }
4600
+ unsafe extern "C" {
4601
+ pub fn js_obj_to_func(obj: ant_value_t) -> ant_value_t;
4602
+ }
4603
+ unsafe extern "C" {
4604
+ pub fn js_obj_to_func_ex(obj: ant_value_t, flags: u8) -> ant_value_t;
4605
+ }
4606
+ unsafe extern "C" {
4607
+ pub fn js_mktypedarray(data: *mut ::std::os::raw::c_void) -> ant_value_t;
4608
+ }
4609
+ unsafe extern "C" {
4610
+ pub fn js_gettypedarray(val: ant_value_t) -> *mut ::std::os::raw::c_void;
4611
+ }
4612
+ unsafe extern "C" {
4613
+ pub fn js_check_unhandled_rejections(js: *mut ant_t);
4614
+ }
4615
+ unsafe extern "C" {
4616
+ pub fn js_setup_import_meta(js: *mut ant_t, filename: *const ::std::os::raw::c_char);
4617
+ }
4618
+ unsafe extern "C" {
4619
+ pub fn js_process_promise_handlers(js: *mut ant_t, promise: ant_value_t);
4620
+ }
4621
+ unsafe extern "C" {
4622
+ pub fn js_mark_promise_trigger_dequeued(js: *mut ant_t, promise: ant_value_t);
4623
+ }
4624
+ unsafe extern "C" {
4625
+ pub fn js_mark_promise_trigger_queued(js: *mut ant_t, promise: ant_value_t) -> bool;
4626
+ }
4627
+ unsafe extern "C" {
4628
+ pub fn js_try_get_own_data_prop(
4629
+ js: *mut ant_t,
4630
+ obj: ant_value_t,
4631
+ key: *const ::std::os::raw::c_char,
4632
+ key_len: usize,
4633
+ out: *mut ant_value_t,
4634
+ ) -> bool;
4635
+ }
4636
+ unsafe extern "C" {
4637
+ pub fn js_reject_promise(js: *mut ant_t, promise: ant_value_t, value: ant_value_t);
4638
+ }
4639
+ unsafe extern "C" {
4640
+ pub fn js_resolve_promise(js: *mut ant_t, promise: ant_value_t, value: ant_value_t);
4641
+ }
4642
+ pub type js_getter_fn = ::std::option::Option<
4643
+ unsafe extern "C" fn(
4644
+ js: *mut ant_t,
4645
+ obj: ant_value_t,
4646
+ key: *const ::std::os::raw::c_char,
4647
+ key_len: usize,
4648
+ ) -> ant_value_t,
4649
+ >;
4650
+ pub type js_keys_fn =
4651
+ ::std::option::Option<unsafe extern "C" fn(js: *mut ant_t, obj: ant_value_t) -> ant_value_t>;
4652
+ pub type js_setter_fn = ::std::option::Option<
4653
+ unsafe extern "C" fn(
4654
+ js: *mut ant_t,
4655
+ obj: ant_value_t,
4656
+ key: *const ::std::os::raw::c_char,
4657
+ key_len: usize,
4658
+ value: ant_value_t,
4659
+ ) -> bool,
4660
+ >;
4661
+ pub type js_deleter_fn = ::std::option::Option<
4662
+ unsafe extern "C" fn(
4663
+ js: *mut ant_t,
4664
+ obj: ant_value_t,
4665
+ key: *const ::std::os::raw::c_char,
4666
+ key_len: usize,
4667
+ ) -> bool,
4668
+ >;
4669
+ pub type js_finalizer_fn =
4670
+ ::std::option::Option<unsafe extern "C" fn(js: *mut ant_t, obj: *mut ant_object_t)>;
4671
+ unsafe extern "C" {
4672
+ pub fn js_set_getter(obj: ant_value_t, getter: js_getter_fn);
4673
+ }
4674
+ unsafe extern "C" {
4675
+ pub fn js_set_setter(obj: ant_value_t, setter: js_setter_fn);
4676
+ }
4677
+ unsafe extern "C" {
4678
+ pub fn js_set_deleter(obj: ant_value_t, deleter: js_deleter_fn);
4679
+ }
4680
+ unsafe extern "C" {
4681
+ pub fn js_set_keys(obj: ant_value_t, keys: js_keys_fn);
4682
+ }
4683
+ unsafe extern "C" {
4684
+ pub fn js_set_finalizer(obj: ant_value_t, fn_: js_finalizer_fn);
4685
+ }
4686
+ unsafe extern "C" {
4687
+ pub fn js_get_slot(obj: ant_value_t, slot: internal_slot_t) -> ant_value_t;
4688
+ }
4689
+ unsafe extern "C" {
4690
+ pub fn js_promise_assimilate_awaitable(js: *mut ant_t, value: ant_value_t) -> ant_value_t;
4691
+ }
4692
+ unsafe extern "C" {
4693
+ pub fn js_promise_then(
4694
+ js: *mut ant_t,
4695
+ promise: ant_value_t,
4696
+ on_fulfilled: ant_value_t,
4697
+ on_rejected: ant_value_t,
4698
+ ) -> ant_value_t;
4699
+ }
4700
+ unsafe extern "C" {
4701
+ pub fn js_set_slot(obj: ant_value_t, slot: internal_slot_t, value: ant_value_t);
4702
+ }
4703
+ unsafe extern "C" {
4704
+ pub fn js_set_slot_wb(
4705
+ arg1: *mut ant_t,
4706
+ obj: ant_value_t,
4707
+ slot: internal_slot_t,
4708
+ value: ant_value_t,
4709
+ );
4710
+ }
4711
+ unsafe extern "C" {
4712
+ pub fn init_bigint_module();
4713
+ }
4714
+ unsafe extern "C" {
4715
+ pub fn bigint_add(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4716
+ }
4717
+ unsafe extern "C" {
4718
+ pub fn bigint_sub(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4719
+ }
4720
+ unsafe extern "C" {
4721
+ pub fn bigint_mul(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4722
+ }
4723
+ unsafe extern "C" {
4724
+ pub fn bigint_div(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4725
+ }
4726
+ unsafe extern "C" {
4727
+ pub fn bigint_mod(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4728
+ }
4729
+ unsafe extern "C" {
4730
+ pub fn bigint_neg(js: *mut ant_t, a: ant_value_t) -> ant_value_t;
4731
+ }
4732
+ unsafe extern "C" {
4733
+ pub fn bigint_exp(js: *mut ant_t, base: ant_value_t, exp: ant_value_t) -> ant_value_t;
4734
+ }
4735
+ unsafe extern "C" {
4736
+ pub fn bigint_shift_left(js: *mut ant_t, value: ant_value_t, shift: u64) -> ant_value_t;
4737
+ }
4738
+ unsafe extern "C" {
4739
+ pub fn bigint_shift_right(js: *mut ant_t, value: ant_value_t, shift: u64) -> ant_value_t;
4740
+ }
4741
+ unsafe extern "C" {
4742
+ pub fn bigint_shift_right_logical(
4743
+ js: *mut ant_t,
4744
+ value: ant_value_t,
4745
+ shift: u64,
4746
+ ) -> ant_value_t;
4747
+ }
4748
+ unsafe extern "C" {
4749
+ pub fn bigint_bitand(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4750
+ }
4751
+ unsafe extern "C" {
4752
+ pub fn bigint_bitor(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4753
+ }
4754
+ unsafe extern "C" {
4755
+ pub fn bigint_bitxor(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ant_value_t;
4756
+ }
4757
+ unsafe extern "C" {
4758
+ pub fn bigint_bitnot(js: *mut ant_t, value: ant_value_t) -> ant_value_t;
4759
+ }
4760
+ unsafe extern "C" {
4761
+ pub fn bigint_asint_bits(js: *mut ant_t, arg: ant_value_t, bits_out: *mut u64) -> ant_value_t;
4762
+ }
4763
+ unsafe extern "C" {
4764
+ pub fn bigint_from_int64(js: *mut ant_t, value: i64) -> ant_value_t;
4765
+ }
4766
+ unsafe extern "C" {
4767
+ pub fn bigint_from_uint64(js: *mut ant_t, value: u64) -> ant_value_t;
4768
+ }
4769
+ unsafe extern "C" {
4770
+ pub fn bigint_from_integral_double(js: *mut ant_t, value: f64) -> ant_value_t;
4771
+ }
4772
+ unsafe extern "C" {
4773
+ pub fn bigint_from_value(js: *mut ant_t, arg: ant_value_t) -> ant_value_t;
4774
+ }
4775
+ unsafe extern "C" {
4776
+ pub fn bigint_to_int64_wrapping(js: *mut ant_t, value: ant_value_t, out: *mut i64) -> bool;
4777
+ }
4778
+ unsafe extern "C" {
4779
+ pub fn bigint_to_uint64_wrapping(js: *mut ant_t, value: ant_value_t, out: *mut u64) -> bool;
4780
+ }
4781
+ unsafe extern "C" {
4782
+ pub fn bigint_is_negative(js: *mut ant_t, v: ant_value_t) -> bool;
4783
+ }
4784
+ unsafe extern "C" {
4785
+ pub fn bigint_is_zero(js: *mut ant_t, v: ant_value_t) -> bool;
4786
+ }
4787
+ unsafe extern "C" {
4788
+ pub fn bigint_to_double(js: *mut ant_t, v: ant_value_t) -> f64;
4789
+ }
4790
+ unsafe extern "C" {
4791
+ pub fn bigint_digits_len(js: *mut ant_t, v: ant_value_t) -> usize;
4792
+ }
4793
+ unsafe extern "C" {
4794
+ pub fn strbigint(
4795
+ js: *mut ant_t,
4796
+ value: ant_value_t,
4797
+ buf: *mut ::std::os::raw::c_char,
4798
+ len: usize,
4799
+ ) -> usize;
4800
+ }
4801
+ unsafe extern "C" {
4802
+ pub fn bigint_compare(js: *mut ant_t, a: ant_value_t, b: ant_value_t) -> ::std::os::raw::c_int;
4803
+ }
4804
+ unsafe extern "C" {
4805
+ pub fn js_mkfun(fn_: ant_cfunc_t) -> ant_value_t;
4806
+ }
4807
+ unsafe extern "C" {
4808
+ pub fn js_mkffi(idx: ::std::os::raw::c_uint) -> ant_value_t;
4809
+ }
4810
+ unsafe extern "C" {
4811
+ pub fn js_getffi(val: ant_value_t) -> ::std::os::raw::c_int;
4812
+ }
4813
+ #[repr(C)]
4814
+ #[derive(Debug, Copy, Clone)]
4815
+ pub struct arg_file {
4816
+ _unused: [u8; 0],
4817
+ }
4818
+ #[repr(C)]
4819
+ #[derive(Debug, Copy, Clone)]
4820
+ pub struct ant_runtime {
4821
+ _unused: [u8; 0],
4822
+ }
4823
+ unsafe extern "C" {
4824
+ pub fn ant_promise_state(promise: ant_value_t) -> ::std::os::raw::c_int;
4825
+ }
4826
+ unsafe extern "C" {
4827
+ pub fn ant_promise_value(promise: ant_value_t) -> ant_value_t;
4828
+ }
4829
+ unsafe extern "C" {
4830
+ pub fn ant_await_value(
4831
+ js: *mut ant_t,
4832
+ value: ant_value_t,
4833
+ out: *mut ant_value_t,
4834
+ ) -> ::std::os::raw::c_int;
4835
+ }
4836
+ unsafe extern "C" {
4837
+ pub fn ant_await_value_timeout(
4838
+ js: *mut ant_t,
4839
+ value: ant_value_t,
4840
+ out: *mut ant_value_t,
4841
+ timeout_ms: u64,
4842
+ ) -> ::std::os::raw::c_int;
4843
+ }
4844
+ unsafe extern "C" {
4845
+ pub fn ant_call_function(
4846
+ js: *mut ant_t,
4847
+ func: ant_value_t,
4848
+ args: *mut ant_value_t,
4849
+ argc: ::std::os::raw::c_int,
4850
+ ) -> ant_value_t;
4851
+ }
4852
+ unsafe extern "C" {
4853
+ pub fn ant_bridge_throw_error(
4854
+ js: *mut ant_t,
4855
+ err_type: ::std::os::raw::c_int,
4856
+ message: *const ::std::os::raw::c_char,
4857
+ ) -> ant_value_t;
4858
+ }
4859
+ unsafe extern "C" {
4860
+ pub fn ant_event_loop_tick(js: *mut ant_t);
4861
+ }
4862
+ unsafe extern "C" {
4863
+ pub fn ant_set_poll_hook(
4864
+ hook: ::std::option::Option<unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void)>,
4865
+ data: *mut ::std::os::raw::c_void,
4866
+ );
4867
+ }
4868
+ unsafe extern "C" {
4869
+ pub fn ant_bridge_init_wakeup();
4870
+ }
4871
+ unsafe extern "C" {
4872
+ pub fn ant_bridge_wake();
4873
+ }
4874
+ unsafe extern "C" {
4875
+ pub fn os_thread_stack_size() -> usize;
4876
+ }
4877
+ unsafe extern "C" {
4878
+ pub fn ant_runtime_init(
4879
+ js: *mut ant_t,
4880
+ argc: ::std::os::raw::c_int,
4881
+ argv: *mut *mut ::std::os::raw::c_char,
4882
+ ls_p: *mut arg_file,
4883
+ ) -> *mut ant_runtime;
4884
+ }
4885
+ unsafe extern "C" {
4886
+ pub fn init_symbol_module();
4887
+ }
4888
+ unsafe extern "C" {
4889
+ pub fn init_iterator_module();
4890
+ }
4891
+ unsafe extern "C" {
4892
+ pub fn init_timer_module();
4893
+ }
4894
+ unsafe extern "C" {
4895
+ pub fn init_domexception_module();
4896
+ }
4897
+ unsafe extern "C" {
4898
+ pub fn init_globals_module();
4899
+ }
4900
+ unsafe extern "C" {
4901
+ pub fn init_builtin_module();
4902
+ }
4903
+ unsafe extern "C" {
4904
+ pub fn init_buffer_module();
4905
+ }
4906
+ unsafe extern "C" {
4907
+ pub fn init_structured_clone_module();
4908
+ }
4909
+ unsafe extern "C" {
4910
+ pub fn init_abort_module();
4911
+ }
4912
+ unsafe extern "C" {
4913
+ pub fn init_headers_module();
4914
+ }
4915
+ unsafe extern "C" {
4916
+ pub fn init_blob_module();
4917
+ }
4918
+ unsafe extern "C" {
4919
+ pub fn init_formdata_module();
4920
+ }
4921
+ unsafe extern "C" {
4922
+ pub fn init_math_module();
4923
+ }
4924
+ unsafe extern "C" {
4925
+ pub fn init_date_module();
4926
+ }
4927
+ unsafe extern "C" {
4928
+ pub fn init_regex_module();
4929
+ }
4930
+ unsafe extern "C" {
4931
+ pub fn init_collections_module();
4932
+ }
4933
+ unsafe extern "C" {
4934
+ pub fn init_queuing_strategies_module();
4935
+ }
4936
+ unsafe extern "C" {
4937
+ pub fn init_readable_stream_module();
4938
+ }
4939
+ unsafe extern "C" {
4940
+ pub fn init_writable_stream_module();
4941
+ }
4942
+ unsafe extern "C" {
4943
+ pub fn init_transform_stream_module();
4944
+ }
4945
+ unsafe extern "C" {
4946
+ pub fn init_codec_stream_module();
4947
+ }
4948
+ unsafe extern "C" {
4949
+ pub fn init_compression_stream_module();
4950
+ }
4951
+ unsafe extern "C" {
4952
+ pub fn init_fs_module();
4953
+ }
4954
+ unsafe extern "C" {
4955
+ pub fn init_atomics_module();
4956
+ }
4957
+ unsafe extern "C" {
4958
+ pub fn init_crypto_module();
4959
+ }
4960
+ unsafe extern "C" {
4961
+ pub fn init_request_module();
4962
+ }
4963
+ unsafe extern "C" {
4964
+ pub fn init_response_module();
4965
+ }
4966
+ unsafe extern "C" {
4967
+ pub fn init_fetch_module();
4968
+ }
4969
+ unsafe extern "C" {
4970
+ pub fn init_console_module();
4971
+ }
4972
+ unsafe extern "C" {
4973
+ pub fn init_json_module();
4974
+ }
4975
+ unsafe extern "C" {
4976
+ pub fn init_process_module();
4977
+ }
4978
+ unsafe extern "C" {
4979
+ pub fn init_tty_module();
4980
+ }
4981
+ unsafe extern "C" {
4982
+ pub fn init_events_module();
4983
+ }
4984
+ unsafe extern "C" {
4985
+ pub fn init_performance_module();
4986
+ }
4987
+ unsafe extern "C" {
4988
+ pub fn init_uri_module();
4989
+ }
4990
+ unsafe extern "C" {
4991
+ pub fn init_url_module();
4992
+ }
4993
+ unsafe extern "C" {
4994
+ pub fn init_reflect_module();
4995
+ }
4996
+ unsafe extern "C" {
4997
+ pub fn init_textcodec_module();
4998
+ }
4999
+ unsafe extern "C" {
5000
+ pub fn init_sessionstorage_module();
5001
+ }
5002
+ unsafe extern "C" {
5003
+ pub fn init_localstorage_module();
5004
+ }
5005
+ unsafe extern "C" {
5006
+ pub fn init_navigator_module();
5007
+ }
5008
+ unsafe extern "C" {
5009
+ pub fn init_observable_module();
5010
+ }