| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lzio.c | 26 buff = z->reader(L, z->data, &size); in luaZ_fill() 29 z->n = size - 1; in luaZ_fill() 30 z->p = buff; in luaZ_fill() 36 if (z->n == 0) { in luaZ_lookahead() 41 z->p--; in luaZ_lookahead() 49 z->L = L; in luaZ_init() 52 z->n = 0; in luaZ_init() 53 z->p = NULL; in luaZ_init() 63 m = (n <= z->n) ? n : z->n; /* min. between n and z->n */ in luaZ_read() 65 z->n -= m; in luaZ_read() [all …]
|
| H A D | lzio.h | 22 #define zgetc(z) (((z)->n--)>0 ? char2int(*(z)->p++) : luaZ_fill(z)) argument 47 LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, 49 LUAI_FUNC size_t luaZ_read (ZIO* z, void* b, size_t n); /* read next n bytes */ 50 LUAI_FUNC int luaZ_lookahead (ZIO *z); 65 LUAI_FUNC int luaZ_fill (ZIO *z);
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lzio.c | 22 lua_State *L = z->L; in luaZ_fill() 25 buff = z->reader(L, z->data, &size); in luaZ_fill() 30 z->p = buff; in luaZ_fill() 36 z->L = L; in luaZ_init() 38 z->data = data; in luaZ_init() 39 z->n = 0; in luaZ_init() 40 z->p = NULL; in luaZ_init() 53 z->p--; in luaZ_read() 56 m = (n <= z->n) ? n : z->n; /* min. between n and z->n */ in luaZ_read() 58 z->n -= m; in luaZ_read() [all …]
|
| H A D | lzio.h | 21 #define zgetc(z) (((z)->n--)>0 ? cast_uchar(*(z)->p++) : luaZ_fill(z)) argument 47 LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, 49 LUAI_FUNC size_t luaZ_read (ZIO* z, void* b, size_t n); /* read next n bytes */ 64 LUAI_FUNC int luaZ_fill (ZIO *z);
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | zfs_znode.h | 92 #define SA_ZPL_ATIME(z) z->z_attr_table[ZPL_ATIME] argument 93 #define SA_ZPL_MTIME(z) z->z_attr_table[ZPL_MTIME] argument 94 #define SA_ZPL_CTIME(z) z->z_attr_table[ZPL_CTIME] argument 96 #define SA_ZPL_GEN(z) z->z_attr_table[ZPL_GEN] argument 98 #define SA_ZPL_XATTR(z) z->z_attr_table[ZPL_XATTR] argument 100 #define SA_ZPL_RDEV(z) z->z_attr_table[ZPL_RDEV] argument 102 #define SA_ZPL_UID(z) z->z_attr_table[ZPL_UID] argument 103 #define SA_ZPL_GID(z) z->z_attr_table[ZPL_GID] argument 106 #define SA_ZPL_MODE(z) z->z_attr_table[ZPL_MODE] argument 109 #define SA_ZPL_SIZE(z) z->z_attr_table[ZPL_SIZE] argument [all …]
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/ |
| H A D | u4.h | 364 z##A = _mm_add_epi32(z##A, orig##A); \ 365 z##B = _mm_add_epi32(z##B, orig##B); \ 366 z##C = _mm_add_epi32(z##C, orig##C); \ 367 z##D = _mm_add_epi32(z##D, orig##D); \ 372 z##A = _mm_shuffle_epi32(z##A, 0x39); \ 373 z##B = _mm_shuffle_epi32(z##B, 0x39); \ 374 z##C = _mm_shuffle_epi32(z##C, 0x39); \ 440 z##A = _mm_add_epi32(z##A, orig##A); \ 441 z##B = _mm_add_epi32(z##B, orig##B); \ 442 z##C = _mm_add_epi32(z##C, orig##C); \ [all …]
|
| H A D | u8.h | 367 z##A = _mm256_add_epi32(z##A, orig##A); \ 368 z##B = _mm256_add_epi32(z##B, orig##B); \ 369 z##C = _mm256_add_epi32(z##C, orig##C); \ 409 z##A = _mm256_add_epi32(z##A, orig##A); \ 410 z##B = _mm256_add_epi32(z##B, orig##B); \ 411 z##C = _mm256_add_epi32(z##C, orig##C); \ 412 z##D = _mm256_add_epi32(z##D, orig##D); \ 413 y##A = _mm256_unpacklo_epi32(z##A, z##B); \ 414 y##B = _mm256_unpacklo_epi32(z##C, z##D); \ 415 y##C = _mm256_unpackhi_epi32(z##A, z##B); \ [all …]
|
| /f-stack/tools/compat/include/vm/ |
| H A D | uma_int.h | 528 #define ZDOM_GET(z, n) \ argument 575 #define ZDOM_LOCK_FINI(z) mtx_destroy(&(z)->uzd_lock) argument 576 #define ZDOM_LOCK_ASSERT(z) mtx_assert(&(z)->uzd_lock, MA_OWNED) argument 578 #define ZDOM_LOCK(z) mtx_lock(&(z)->uzd_lock) argument 579 #define ZDOM_OWNED(z) (mtx_owner(&(z)->uzd_lock) != NULL) argument 580 #define ZDOM_UNLOCK(z) mtx_unlock(&(z)->uzd_lock) argument 582 #define ZONE_LOCK(z) ZDOM_LOCK(ZDOM_GET((z), 0)) argument 583 #define ZONE_UNLOCK(z) ZDOM_UNLOCK(ZDOM_GET((z), 0)) argument 587 #define ZONE_CROSS_LOCK(z) mtx_lock(&(z)->uz_cross_lock) argument 588 #define ZONE_CROSS_UNLOCK(z) mtx_unlock(&(z)->uz_cross_lock) argument [all …]
|
| /f-stack/freebsd/vm/ |
| H A D | uma_int.h | 529 #define ZDOM_GET(z, n) \ argument 576 #define ZDOM_LOCK_FINI(z) mtx_destroy(&(z)->uzd_lock) argument 577 #define ZDOM_LOCK_ASSERT(z) mtx_assert(&(z)->uzd_lock, MA_OWNED) argument 579 #define ZDOM_LOCK(z) mtx_lock(&(z)->uzd_lock) argument 580 #define ZDOM_OWNED(z) (mtx_owner(&(z)->uzd_lock) != NULL) argument 581 #define ZDOM_UNLOCK(z) mtx_unlock(&(z)->uzd_lock) argument 583 #define ZONE_LOCK(z) ZDOM_LOCK(ZDOM_GET((z), 0)) argument 584 #define ZONE_UNLOCK(z) ZDOM_UNLOCK(ZDOM_GET((z), 0)) argument 588 #define ZONE_CROSS_LOCK(z) mtx_lock(&(z)->uz_cross_lock) argument 589 #define ZONE_CROSS_UNLOCK(z) mtx_unlock(&(z)->uz_cross_lock) argument [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/accel/ |
| H A D | lis302.txt | 25 x/y/z axis. 28 x/y/z axis. 29 - st,click-thresh-{x,y,z}: set the x/y/z axis threshold 47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for 50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for 61 - st,{min,max}-limit-{x,y,z} set the min/max limits for x/y/z axis 76 st,click-single-z; 86 st,wakeup-z-lo; 87 st,wakeup-z-hi; 110 st,wakeup-z-lo; [all …]
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/ |
| H A D | jemalloc_internal_macros.h | 15 #define ZU(z) ((size_t)z) argument 16 #define ZD(z) ((ssize_t)z) argument 20 #define KZU(z) ZU(z##ULL) argument 21 #define KZD(z) ZD(z##LL) argument
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/ |
| H A D | zfs_zstd.c | 562 if (!z) { in zstd_alloc() 582 if (!z) { in zstd_dctx_alloc() 585 if (z) { in zstd_dctx_alloc() 586 z->pool = NULL; in zstd_dctx_alloc() 594 if (!z) { in zstd_dctx_alloc() 608 if (!z) { in zstd_dctx_alloc() 612 z->kmem_type = type; in zstd_dctx_alloc() 613 z->kmem_size = nbytes; in zstd_dctx_alloc() 628 type = z->kmem_type; in zstd_free() 631 vmem_free(z, z->kmem_size); in zstd_free() [all …]
|
| /f-stack/freebsd/tools/ |
| H A D | pccarddevs2h.awk | 136 z = "{ " 142 z = z $f " " 147 z = z "NULL " 149 z = z "NULL, " 152 products[nproducts, 4] = z $f
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/test/include/test/ |
| H A D | SFMT-sse2.h | 65 __m128i v, x, y, z; in mm_recursion() local 69 z = _mm_srli_si128(c, SR2); in mm_recursion() 71 z = _mm_xor_si128(z, x); in mm_recursion() 72 z = _mm_xor_si128(z, v); in mm_recursion() 75 z = _mm_xor_si128(z, x); in mm_recursion() 76 z = _mm_xor_si128(z, y); in mm_recursion() 77 return z; in mm_recursion()
|
| H A D | SFMT-alti.h | 80 vector unsigned int v, w, x, y, z; in vec_recursion() local 84 z = vec_perm(c, (vector unsigned int)perm_sr, perm_sr); in vec_recursion() 86 z = vec_xor(z, w); in vec_recursion() 89 z = vec_xor(z, y); in vec_recursion() 90 z = vec_xor(z, v); in vec_recursion() 91 return z; in vec_recursion()
|
| H A D | math.h | 11 double f, z; in ln_gamma() local 17 z = x; in ln_gamma() 18 while (z < 7.0) { in ln_gamma() 19 f *= z; in ln_gamma() 20 z += 1.0; in ln_gamma() 22 x = z; in ln_gamma() 28 z = 1.0 / (x * x); in ln_gamma() 31 (((-0.000595238095238 * z + 0.000793650793651) * z - in ln_gamma() 32 0.002777777777778) * z + 0.083333333333333) / x; in ln_gamma()
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_verify/sodium/ |
| H A D | verify.c | 39 volatile __m128i v1, v2, z; in crypto_verify_n() local 49 z = _mm_xor_si128(v1, v2); in crypto_verify_n() 53 z = _mm_or_si128(z, _mm_xor_si128(v1, v2)); in crypto_verify_n() 55 m = _mm_movemask_epi8(_mm_cmpeq_epi32(z, zero)); in crypto_verify_n() 56 v1 = zero; v2 = zero; z = zero; in crypto_verify_n()
|
| /f-stack/freebsd/contrib/device-tree/src/arm/ |
| H A D | omap3-gta04a3.dts | 25 st,click-single-z; 28 st,click-thresh-z = <10>; 36 st,wakeup-z-lo; 37 st,wakeup-z-hi; 40 st,min-limit-z = <3>; 43 st,max-limit-z = <32>;
|
| H A D | omap3-overo-common-peripherals.dtsi | 62 st,click-single-z; 65 st,click-thresh-z = <10>; 72 st,wakeup-z-lo; 73 st,wakeup-z-hi; 76 st,min-limit-z = <140>; 79 st,max-limit-z = <750>;
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/ |
| H A D | .gitignore | 53 /test/integration/[A-Za-z]* 54 !/test/integration/[A-Za-z]*.* 58 /test/integration/cpp/[A-Za-z]* 59 !/test/integration/cpp/[A-Za-z]*.* 65 /test/stress/[A-Za-z]* 66 !/test/stress/[A-Za-z]*.* 70 /test/unit/[A-Za-z]* 71 !/test/unit/[A-Za-z]*.*
|
| /f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/ |
| H A D | gcm_generic.c | 45 struct aes_block z = {0, 0}; in gcm_generic_mul() local 57 z.a ^= v.a; in gcm_generic_mul() 58 z.b ^= v.b; in gcm_generic_mul() 69 res[0] = htonll(z.a); in gcm_generic_mul() 70 res[1] = htonll(z.b); in gcm_generic_mul()
|
| /f-stack/freebsd/contrib/openzfs/cmd/zed/ |
| H A D | zed_exec.c | 201 const char *z; in zed_exec_process() local 223 for (z = zed_strings_first(zedlets); z; z = zed_strings_next(zedlets)) { in zed_exec_process() 226 if ((strncmp(z, *csp, n) == 0) && !isalpha(z[n])) in zed_exec_process() 227 _zed_exec_fork_child(eid, dir, z, e, zfd); in zed_exec_process()
|
| /f-stack/freebsd/crypto/siphash/ |
| H A D | siphash.h | 77 #define SipHash24(x, y, z, i) SipHashX((x), 2, 4, (y), (z), (i)); argument 78 #define SipHash48(x, y, z, i) SipHashX((x), 4, 8, (y), (z), (i)); argument
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/ |
| H A D | mount-matrix.txt | 21 of the (x,y,z) triplets, such as different registers to read these coordinates, 29 screen and (z) being depth, the axis perpendicular to the screen. 33 and (z) depth to be negative under the screen and positive in front of it, 57 as the gravity vector is projected 1:1 onto the sensors (z)-axis. 64 ^ z: +g ^ z: > 0 85 ! ! x: +g <- z: +g -> x: -g 97 perpendicular to the North axis and positive towards the East and (z) is 142 ! ! ! z > 0 173 x' = mxx * x + myx * y + mzx * z 174 y' = mxy * x + myy * y + mzy * z [all …]
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/test/integration/ |
| H A D | mallocx.c | 6 size_t z; in get_nsizes_impl() local 8 z = sizeof(unsigned); in get_nsizes_impl() 9 assert_d_eq(mallctl(cmd, (void *)&ret, &z, NULL, 0), 0, in get_nsizes_impl() 23 size_t z; in get_size_impl() local 27 z = sizeof(size_t); in get_size_impl() 31 z = sizeof(size_t); in get_size_impl() 32 assert_d_eq(mallctlbymib(mib, miblen, (void *)&ret, &z, NULL, 0), in get_size_impl()
|