/freebsd/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/ |
H A D | blake2b-compress-ref.c | 16 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 17 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }, 18 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 }, 19 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 }, 20 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 }, 21 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 }, 22 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 }, 23 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 }, 24 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 }, 25 { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 }, [all …]
|
/freebsd/bin/sh/tests/expansion/ |
H A D | arith2.0 | 12 unset v 13 check "v=2" 2 14 check "v" 2 15 check "$(($v))" 2 16 check "v+=1" 3 17 check "v" 3 27 v=42 28 check "!v" 0 29 check "!!v" 1 31 check "~0" -1 [all …]
|
/freebsd/sys/dev/wg/ |
H A D | wg_crypto.c | 1 /* SPDX-License-Identifier: MIT 3 * Copyright (C) 2015-2021 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. 22 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) 30 while (words--) { in cpu_to_le32_array() 37 while (words--) { in le32_to_cpu_array() 44 return (word >> (shift & 31)) | (word << ((-shift) & 31)); in ror32() 52 static const uint8_t blake2s_sigma[10][16] = { 53 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 54 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }, 55 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 }, [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
H A D | blake3_avx512.c | 76 * ---------------------------------------------------------------------------- 78 * ---------------------------------------------------------------------------- 103 // discussion at https://github.com/sneves/blake2-avx2/pull/4 139 t2 = _mm_shuffle_ps2(m2, m3, _MM_SHUFFLE(2, 0, 2, 0)); // 14 12 10 8 in compress_pre() 140 t2 = _mm_shuffle_epi32(t2, _MM_SHUFFLE(2, 1, 0, 3)); // 12 10 8 14 in compress_pre() 310 * ---------------------------------------------------------------------------- 312 * ---------------------------------------------------------------------------- 315 INLINE void round_fn4(__m128i v[16], __m128i m[16], size_t r) { in round_fn4() 316 v[0] = add_128(v[0], m[(size_t)MSG_SCHEDULE[r][0]]); in round_fn4() 317 v[1] = add_128(v[1], m[(size_t)MSG_SCHEDULE[r][2]]); in round_fn4() [all …]
|
H A D | blake3_avx2.c | 17 // Note that clang-format doesn't like the name "xor" for some reason. 24 x, _mm256_set_epi8(13, 12, 15, 14, 9, 8, 11, 10, 5, 4, 7, 6, 1, 0, 3, 2, in rot16() 25 13, 12, 15, 14, 9, 8, 11, 10, 5, 4, 7, 6, 1, 0, 3, 2)); in rot16() 29 return _mm256_or_si256(_mm256_srli_epi32(x, 12), _mm256_slli_epi32(x, 32 - 12)); in rot12() 34 x, _mm256_set_epi8(12, 15, 14, 13, 8, 11, 10, 9, 4, 7, 6, 5, 0, 3, 2, 1, in rot8() 35 12, 15, 14, 13, 8, 11, 10, 9, 4, 7, 6, 5, 0, 3, 2, 1)); in rot8() 39 return _mm256_or_si256(_mm256_srli_epi32(x, 7), _mm256_slli_epi32(x, 32 - 7)); in rot7() 42 INLINE void round_fn(__m256i v[16], __m256i m[16], size_t r) { in round_fn() 43 v[0] = addv(v[0], m[(size_t)MSG_SCHEDULE[r][0]]); in round_fn() 44 v[1] = addv(v[1], m[(size_t)MSG_SCHEDULE[r][2]]); in round_fn() [all …]
|
H A D | blake3_neon.c | 8 #error "This implementation only supports little-endian ARM." 9 // It might be that all we need for big-endian support here is to get the loads 41 return vorrq_u32(vshrq_n_u32(x, 16), vshlq_n_u32(x, 32 - 16)); in rot16_128() 45 return vorrq_u32(vshrq_n_u32(x, 12), vshlq_n_u32(x, 32 - 12)); in rot12_128() 49 return vorrq_u32(vshrq_n_u32(x, 8), vshlq_n_u32(x, 32 - 8)); in rot8_128() 53 return vorrq_u32(vshrq_n_u32(x, 7), vshlq_n_u32(x, 32 - 7)); in rot7_128() 61 * ---------------------------------------------------------------------------- 63 * ---------------------------------------------------------------------------- 66 INLINE void round_fn4(uint32x4_t v[16], uint32x4_t m[16], size_t r) { in round_fn4() 67 v[0] = add_128(v[0], m[(size_t)MSG_SCHEDULE[r][0]]); in round_fn4() [all …]
|
H A D | blake3_sse41.c | 21 // Note that clang-format doesn't like the name "xor" for some reason. 32 x, _mm_set_epi8(13, 12, 15, 14, 9, 8, 11, 10, 5, 4, 7, 6, 1, 0, 3, 2)); in rot16() 36 return xorv(_mm_srli_epi32(x, 12), _mm_slli_epi32(x, 32 - 12)); in rot12() 41 x, _mm_set_epi8(12, 15, 14, 13, 8, 11, 10, 9, 4, 7, 6, 5, 0, 3, 2, 1)); in rot8() 45 return xorv(_mm_srli_epi32(x, 7), _mm_slli_epi32(x, 32 - 7)); in rot7() 70 // discussion at https://github.com/sneves/blake2-avx2/pull/4 106 t2 = _mm_shuffle_ps2(m2, m3, _MM_SHUFFLE(2, 0, 2, 0)); // 14 12 10 8 in compress_pre() 107 t2 = _mm_shuffle_epi32(t2, _MM_SHUFFLE(2, 1, 0, 3)); // 12 10 8 14 in compress_pre() 276 INLINE void round_fn(__m128i v[16], __m128i m[16], size_t r) { in round_fn() 277 v[0] = addv(v[0], m[(size_t)MSG_SCHEDULE[r][0]]); in round_fn() [all …]
|
H A D | blake3_sse2.c | 21 // Note that clang-format doesn't like the name "xor" for some reason. 35 return xorv(_mm_srli_epi32(x, 12), _mm_slli_epi32(x, 32 - 12)); in rot12() 39 return xorv(_mm_srli_epi32(x, 8), _mm_slli_epi32(x, 32 - 8)); in rot8() 43 return xorv(_mm_srli_epi32(x, 7), _mm_slli_epi32(x, 32 - 7)); in rot7() 68 // discussion at https://github.com/sneves/blake2-avx2/pull/4 112 t2 = _mm_shuffle_ps2(m2, m3, _MM_SHUFFLE(2, 0, 2, 0)); // 14 12 10 8 in compress_pre() 113 t2 = _mm_shuffle_epi32(t2, _MM_SHUFFLE(2, 1, 0, 3)); // 12 10 8 14 in compress_pre() 282 INLINE void round_fn(__m128i v[16], __m128i m[16], size_t r) { in round_fn() 283 v[0] = addv(v[0], m[(size_t)MSG_SCHEDULE[r][0]]); in round_fn() 284 v[1] = addv(v[1], m[(size_t)MSG_SCHEDULE[r][2]]); in round_fn() [all …]
|
/freebsd/usr.sbin/bsnmpd/tools/libbsnmptools/ |
H A D | bsnmptc.c | 1 /*- 168 syslog(LOG_ERR, "malloc failed - %s", strerror(errno)); in snmp_oct2tc() 262 warnx("Octetstring too long - %d is max allowed", in parse_octetstring() 263 MAX_OCTSTRING_LEN - 1); in parse_octetstring() 264 return (-1); in parse_octetstring() 267 if ((value->v.octetstring.octets = malloc(len)) == NULL) { in parse_octetstring() 268 value->v.octetstring.len = 0; in parse_octetstring() 270 return (-1); in parse_octetstring() 273 value->v.octetstring.len = len; in parse_octetstring() 274 memcpy(value->v.octetstring.octets, val, len); in parse_octetstring() [all …]
|
/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | blake2b_prov.c | 2 * Copyright 2016-2024 The OpenSSL Project Authors. All Rights Reserved. 33 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 } , 34 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 } , 35 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 } , 36 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 } , 37 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 } , 38 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 } , 39 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 } , 40 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 } , 41 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 } , [all …]
|
H A D | blake2s_prov.c | 2 * Copyright 2016-2024 The OpenSSL Project Authors. All Rights Reserved. 29 static const uint8_t blake2s_sigma[10][16] = 31 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 } , 32 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 } , 33 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 } , 34 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 } , 35 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 } , 36 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 } , 37 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 } , 38 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 } , [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsDSPInstrFormats.td | 1 //===- MipsDSPInstrFormats.td - Mips Instruction Formats ---*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 23 def HasDSP : Predicate<"Subtarget->hasDSP()">, 25 def HasDSPR2 : Predicate<"Subtarget->hasDSPR2()">, 27 def HasDSPR3 : Predicate<"Subtarget->hasDSPR3()">, 40 bits<6> V = val; 64 // ADDU.QB sub-class format. 70 let Opcode = SPECIAL3_OPCODE.V; 72 let Inst{25-21} = rs; [all …]
|
/freebsd/sys/contrib/libb2/ |
H A D | blake2b-ref.c | 2 BLAKE2 reference source code package - reference C implementations 19 #include "blake2-impl.h" 31 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 } , 32 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 } , 33 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 } , 34 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 } , 35 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 } , 36 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 } , 37 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 } , 38 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 } , [all …]
|
H A D | blake2s-ref.c | 2 BLAKE2 reference source code package - reference C implementations 19 #include "blake2-impl.h" 27 static const uint8_t blake2s_sigma[10][16] = 29 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 } , 30 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 } , 31 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 } , 32 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 } , 33 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 } , 34 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 } , 35 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 } , [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_status/ |
H A D | zpool_status_004_pos.ksh | 1 #!/bin/ksh -p 10 # or https://opensource.org/licenses/CDDL-1.0. 43 log_must zinject -c all 45 rm -f $TESTDIR/vdev_a 50 log_assert "Verify 'zpool status -v' with feature@head_errlog=disabled works" 53 truncate -s $MINVDEVSIZE $TESTDIR/vdev_a 54 log_must zpool create -f -o feature@head_errlog=disabled $TESTPOOL2 $TESTDIR/vdev_a 56 state=$(zpool list -Ho feature@head_errlog $TESTPOOL2) 61 log_must fio --rw=write --name=job --size=10M --filename=/$TESTPOOL2/10m_file 62 log_must zinject -t data -e checksum -f 100 -am /$TESTPOOL2/10m_file [all …]
|
H A D | zpool_status_003_pos.ksh | 1 #!/bin/ksh -p 10 # or https://opensource.org/licenses/CDDL-1.0. 32 # Verify correct output with 'zpool status -v' after corrupting a file 39 # 5. Verify we see "snapshot, clone and filesystem" output in 'zpool status -v' 40 # and 'zpool status -ev' 44 log_must zinject -c all 46 rm -f $TESTDIR/vdev_a 51 log_assert "Verify correct 'zpool status -v' output with a corrupted file" 54 truncate -s $MINVDEVSIZE $TESTDIR/vdev_a 55 log_must zpool create -f $TESTPOOL2 $TESTDIR/vdev_a [all …]
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_blake2s_ref.c | 2 BLAKE2 reference source code package - reference C implementations 8 - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0 9 - OpenSSL license : https://www.openssl.org/source/license.html 10 - Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0 31 static const uint8_t blake2s_sigma[10][16] = 33 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 } , 34 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 } , 35 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 } , 36 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 } , 37 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 } , [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/ |
H A D | zfs_create_008_neg.ksh | 1 #!/bin/ksh -p 10 # or https://opensource.org/licenses/CDDL-1.0. 50 destroy_dataset $TESTPOOL/$TESTFS1 -f 55 set -A args "ab" "-?" "-cV" "-Vc" "-c -V" "c" "V" "--c" "-e" "-s" \ 56 "-blah" "-cV 12k" "-s -cV 1P" "-sc" "-Vs 5g" "-o" "--o" "-O" "--O" \ 57 "-o QuOta=none" "-o quota=non" "-o quota=abcd" "-o quota=0" "-o quota=" \ 58 "-o ResErVaTi0n=none" "-o reserV=none" "-o reservation=abcd" "-o reserv=" \ 59 "-o recorDSize=64k" "-o recordsize=32768K" "-o recordsize=32M" \ 60 "-o recordsize=256" "-o recsize=" "-o recsize=zero" "-o recordsize=0" \ 61 "-o mountPoint=/tmp/tmpfile$$" "-o mountpoint=non0" "-o mountpoint=" \ [all …]
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_create/ |
H A D | zfs_create_008_neg.ksh | 1 #!/usr/local/bin/ksh93 -p 46 # CODING_STATUS: COMPLETED (2005-07-04) 57 log_must $ZFS destroy -f $TESTPOOL/$TESTFS1 63 set -A args "ab" "-?" "-cV" "-Vc" "-c -V" "c" "V" "--c" "-e" "-s" \ 64 "-blah" "-cV 12k" "-s -cV 1P" "-sc" "-Vs 5g" "-o" "--o" "-O" "--O" \ 65 "-o QuOta=none" "-o quota=non" "-o quota=abcd" "-o quota=0" "-o quota=" \ 66 "-o ResErVaTi0n=none" "-o reserV=none" "-o reservation=abcd" "-o reserv=" \ 67 "-o recorDSize=64k" "-o recordsize=256K" "-o recordsize=256" \ 68 "-o recsize=" "-o recsize=zero" "-o recordsize=0" \ 69 "-o mountPoint=/tmp/tmpfile${TESTCASE_ID}" "-o mountpoint=non0" "-o mountpoint=" \ [all …]
|
/freebsd/contrib/bearssl/src/symcipher/ |
H A D | poly1305_ctmul32.c | 34 * Implementation notes: we split the 130-bit values into ten in poly1305_inner() 35 * 13-bit words. This gives us some space for carries and allows in poly1305_inner() 36 * using only 32x32->32 multiplications, which are way faster than in poly1305_inner() 37 * 32x32->64 multiplications on the ARM Cortex-M0/M0+, and also in poly1305_inner() 38 * help in making constant-time code on the Cortex-M3. in poly1305_inner() 40 * Since we compute modulo 2^130-5, the "upper words" become in poly1305_inner() 45 * In each loop iteration, a[] and r[] words are 13-bit each, in poly1305_inner() 53 uint32_t b[10]; in poly1305_inner() 54 unsigned u, v; in poly1305_inner() local 58 * If there is a partial block, right-pad it with zeros. in poly1305_inner() [all …]
|
/freebsd/sys/dev/drm2/ |
H A D | drm_fourcc.h | 78 #define DRM_FORMAT_XRGB2101010 fourcc_code('X', 'R', '3', '0') /* [31:0] x:R:G:B 2:10:10:10 little … 79 #define DRM_FORMAT_XBGR2101010 fourcc_code('X', 'B', '3', '0') /* [31:0] x:B:G:R 2:10:10:10 little … 80 #define DRM_FORMAT_RGBX1010102 fourcc_code('R', 'X', '3', '0') /* [31:0] R:G:B:x 10:10:10:2 little … 81 #define DRM_FORMAT_BGRX1010102 fourcc_code('B', 'X', '3', '0') /* [31:0] B:G:R:x 10:10:10:2 little … 83 #define DRM_FORMAT_ARGB2101010 fourcc_code('A', 'R', '3', '0') /* [31:0] A:R:G:B 2:10:10:10 little … 84 #define DRM_FORMAT_ABGR2101010 fourcc_code('A', 'B', '3', '0') /* [31:0] A:B:G:R 2:10:10:10 little … 85 #define DRM_FORMAT_RGBA1010102 fourcc_code('R', 'A', '3', '0') /* [31:0] R:G:B:A 10:10:10:2 little … 86 #define DRM_FORMAT_BGRA1010102 fourcc_code('B', 'A', '3', '0') /* [31:0] B:G:R:A 10:10:10:2 little … 89 #define DRM_FORMAT_YUYV fourcc_code('Y', 'U', 'Y', 'V') /* [31:0] Cr0:Y1:Cb0:Y0 8:8:8:8 little end… 90 #define DRM_FORMAT_YVYU fourcc_code('Y', 'V', 'Y', 'U') /* [31:0] Cb0:Y1:Cr0:Y0 8:8:8:8 little end… [all …]
|
/freebsd/share/doc/psd/04.uprog/ |
H A D | p9 | 1 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved. 63 or to machines other than the PDP-11 running a version of 81 .IP \f3stdin\f1 10 83 .IP \f3stdout\f1 10 85 .IP \f3stderr\f1 10 87 .IP \f3EOF\f1 10 88 is actually \-1, and is the value returned by 89 the read routines on end-of-file or error. 90 .IP \f3NULL\f1 10 92 pointer-valued functions [all …]
|
/freebsd/share/doc/usd/21.troff/ |
H A D | m0a | 1 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved. 54 .h1 \s-1#\s+1 * 59 \s-1#\s+1Notes are explained at the end of this Summary and Index 66 \fB&ps\fI\|\(+-N\fR 10\|point previous E Point size; also \fB\es\fI\(+-N\fR.\(dg 68 \fB&fz\fI|F|\(+-N\fR off - E font \fIF\fR to point size \fI\(+-N\fR. 70 \fB&fz|S|\fIF|\(+-N\fR off - E Special Font characters to point size \fI\(+-N\fR. 72 \fB&ss\fI|N\fR 12\(sl36\|em ignored E Space-character size 75 \fB&cs\fI|F\|N\|M\fR off - P Constant character 79 \fB&bd\fI|F|N\fR off - P Embolden font \fIF\fR by \fIN\fR\(mi1 units.\(dg 81 \fB&bd|S|\fIF|N\fR off - P Embolden Special Font when current font is \fIF\fR.\(dg [all …]
|
/freebsd/contrib/bearssl/src/ec/ |
H A D | ec_c25519_m15.c | 57 j -= k; 60 tmp[35 - k] |= (unsigned char)w; 61 tmp[34 - k] |= (unsigned char)(w >> 8); 62 tmp[33 - k] |= (unsigned char)(w >> 16); 63 tmp[32 - k] |= (unsigned char)(w >> 24); 74 * that right-shifting a signed negative integer copies the sign bit 75 * (arithmetic right-shift). This is "implementation-defined behaviour", 84 | ((-((uint32_t)(x) >> 31)) << (32 - (n)))) 90 * Convert an integer from unsigned little-endian encoding to a sequence of 91 * 13-bit words in little-endian order. The final "partial" word is [all …]
|
/freebsd/contrib/byacc/test/yacc/ |
H A D | varsyntax_calc1.tab.c | 10 #define YYEMPTY (-1) 14 #define YYENOMEM (-2) 180 static const YYINT varsyntax_calc1_lhs[] = { -1, 202 static const YYINT varsyntax_calc1_sindex[] = { -40, 203 -8, -48, -47, 0, -37, -37, 0, 2, 17, 0, 204 -34, -37, 0, 0, 0, 0, -25, 90, -37, -37, 205 -37, -37, 0, -37, -37, -37, -37, 0, -34, -34, 206 25, 125, 31, 0, -34, 0, -11, 37, -11, 37, 208 -34, -34, -34, -34, 0, 0, 118, 69, 69, 0, 215 0, -9, 0, 0, 0, 0, 51, -3, 56, 61, [all …]
|