/freebsd/crypto/openssl/crypto/sha/asm/ |
H A D | sha512-ia64.pl | 2 # Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved. 20 # faster than gcc and >60%(!) faster than code generated by HP-UX 21 # compiler (yes, HP-UX is generating slower code, because unlike gcc, 23 # substitutes for 64-bit rotate). 26 # and HP-UX compiler - by >40% (yes, gcc won sha512_block, but lost 28 # too much. I mean it's 64 32-bit rounds vs. 80 virtually identical 29 # 64-bit ones and 1003*64/80 gives 802. Extra cycles, 2 per round, 30 # are spent on extra work to provide for 32-bit rotations. 32-bit 32 # reason lower 32 bits are deposited to upper half of 64-bit register 36 # as custom 'mux2', "parallel 32-bit add," 'padd4' and "parallel [all …]
|
/freebsd/share/doc/usd/12.vi/vi/ |
H A D | vi.chars | 41 characters are presented in their order in the \s-2ASCII\s0 character 51 .iP "^@" 15 59 .iP "^A" 15 61 .iP "^B" 15 65 .iP "^C" 15 67 .iP "^D" 15 68 As a command, scrolls down a half-window of text. 73 .iP "^E" 15 77 .iP "^F" 15 80 .iP "^G" 15 [all …]
|
/freebsd/share/man/man4/ |
H A D | snd_hda.4 | 1 .\" Copyright (c) 2006-2008 Joel Dahl <joel@FreeBSD.org> 35 .Bd -ragged -offset indent 43 .Bd -literal -offset indent 77 HDMI audio input/output. 90 .Ss Boot-time Configuration 91 The following variables are available at boot-time through the 94 .Bl -tag -width ".Va hint.hdac.%d.config"-offset indent 162 May be specified as a set of space-separated 174 .Dq Li input . 184 May be specified as a 32-bit hexadecimal value with a leading [all …]
|
/freebsd/usr.bin/clang/llvm-symbolizer/ |
H A D | llvm-symbolizer.1 | 4 .nr rst2man-indent-level 0 7 \\$1 \\n[an-margin] 8 level \\n[rst2man-indent-level] 9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 10 - 11 \\n[rst2man-indent0] 12 \\n[rst2man-indent1] 13 \\n[rst2man-indent2] 18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 19 . nr rst2man-indent-level +1 [all …]
|
/freebsd/tools/build/bootstrap-m4/ |
H A D | inittokenizer.c | 17 /* First, we deal with platform-specific or compiler-specific issues. */ 32 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */ 61 #define INT8_MIN (-128) 64 #define INT16_MIN (-32767-1) 67 #define INT32_MIN (-2147483647-1) 107 /* Returned upon end-of-file. */ 116 * but we do it the disgusting crufty way forced on us by the ()-less 124 #define YY_START (((yy_start) - 1) / 2) 132 /* Size of default input buffer. */ 135 /* On IA-64, the buffer size is 16k, not 8k. [all …]
|
/freebsd/sys/crypto/chacha20/ |
H A D | chacha.c | 2 chacha-merged.c version 20080118 26 (U32V((v) << (n)) | ((v) >> (32 - (n)))) 53 static const char sigma[16] = "expand 32-byte k"; 54 static const char tau[16] = "expand 16-byte k"; 61 x->input[4] = U8TO32_LITTLE(k + 0); in chacha_keysetup() 62 x->input[5] = U8TO32_LITTLE(k + 4); in chacha_keysetup() 63 x->input[6] = U8TO32_LITTLE(k + 8); in chacha_keysetup() 64 x->input[7] = U8TO32_LITTLE(k + 12); in chacha_keysetup() 71 x->input[8] = U8TO32_LITTLE(k + 0); in chacha_keysetup() 72 x->input[9] = U8TO32_LITTLE(k + 4); in chacha_keysetup() [all …]
|
/freebsd/lib/libc/tests/stdio/ |
H A D | sscanf_test.c | 1 /*- 2 * Copyright (c) 2023 Dag-Erling Smørgrav 4 * SPDX-License-Identifier: BSD-2-Clause 12 #include <atf-c.h> 15 char input[8]; member 20 // input binary octal decimal hexadecimal automatic 37 { "F", { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 1, 15, 1 }, { 0, 0, 0 }, }, 44 { "f", { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 1, 15, 1 }, { 0, 0, 0 }, }, 62 { "0F", { 1, 0, 1 }, { 1, 0, 1 }, { 1, 0, 1 }, { 1, 15, 2 }, { 1, 0, 1 }, }, 69 { "0f", { 1, 0, 1 }, { 1, 0, 1 }, { 1, 0, 1 }, { 1, 15, 2 }, { 1, 0, 1 }, }, [all …]
|
H A D | swscanf_test.c | 1 /*- 2 * Copyright (c) 2023 Dag-Erling Smørgrav 4 * SPDX-License-Identifier: BSD-2-Clause 13 #include <atf-c.h> 18 wchar_t input[8]; member 23 // input binary octal decimal hexadecimal automatic 40 { L"F", { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 1, 15, 1 }, { 0, 0, 0 }, }, 47 { L"f", { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 1, 15, 1 }, { 0, 0, 0 }, }, 65 { L"0F", { 1, 0, 1 }, { 1, 0, 1 }, { 1, 0, 1 }, { 1, 15, 2 }, { 1, 0, 1 }, }, 72 { L"0f", { 1, 0, 1 }, { 1, 0, 1 }, { 1, 0, 1 }, { 1, 15, 2 }, { 1, 0, 1 }, }, [all …]
|
/freebsd/crypto/openssl/crypto/chacha/ |
H A D | chacha_enc.c | 2 * Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved. 25 # define ROTATE(v, n) (((v) << (n)) | ((v) >> (32 - (n)))) 41 /* chacha_core performs 20 rounds of ChaCha on the input words in 42 * |input| and writes the 64 output bytes to |output|. */ 43 static void chacha20_core(chacha_buf *output, const u32 input[16]) in chacha20_core() 49 memcpy(x, input, sizeof(x)); in chacha20_core() 51 for (i = 20; i > 0; i -= 2) { in chacha20_core() 55 QUARTERROUND(3, 7, 11, 15); in chacha20_core() 56 QUARTERROUND(0, 5, 10, 15); in chacha20_core() 64 output->u[i] = x[i] + input[i]; in chacha20_core() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | adi,max98396.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Ryan Lee <ryans.lee@analog.com> 13 The MAX98396 is a mono Class-DG speaker amplifier with I/V sense. 16 The MAX98397 is a variant of MAX98396 with wide input supply range. 21 - adi,max98396 22 - adi,max98397 27 avdd-supply: 30 dvdd-supply: [all …]
|
/freebsd/contrib/gdtoa/ |
H A D | changes | 3 (fixed-point mode); fix rounding bug in these modes when the input 4 d (to be converted) satisfies 10^-(ndigits+1) <= |d| < 10^-ndigits , 7 the result is empty (i.e., when |d| <= 5 * 10^-ndigits). 16 Sun Oct 6 15:34:15 EDT 1991 23 defined; for input decimal strings representing numbers too large, have 25 return +-Infinity for IEEE arithmetic, +- the largest machine number 30 dtoa.c: tweak strtod (one-line addition) so the end-pointer = start 31 pointer when the input has, e.g., only white space. 35 reasonably with huge numbers and 16-bit ints. 47 < for(result_k = 0; sizeof(Bigint) - sizeof(unsigned long) + j < i; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | amlogic,c3-peripherals-clkc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 # Copyright (C) 2022-2023 Amlogic, Inc. All rights reserved 4 --- 5 $id: http://devicetree.org/schemas/clock/amlogic,c3-peripherals-clkc.yaml# 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Neil Armstrong <neil.armstrong@linaro.org> 12 - Jerome Brunet <jbrunet@baylibre.com> 13 - Xianwei Zhao <xianwei.zhao@amlogic.com> 14 - Chuan Liu <chuan.liu@amlogic.com> 18 const: amlogic,c3-peripherals-clkc [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
H A D | pumpkin-common.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 7 #include <dt-bindings/gpio/gpio.h> 16 stdout-path = "serial0:921600n8"; 21 compatible = "linaro,optee-tz"; 26 gpio-keys { 27 compatible = "gpio-keys"; 28 pinctrl-names = "default"; 29 pinctrl-0 = <&gpio_keys_default>; 31 key-volume-up { 35 wakeup-source; [all …]
|
/freebsd/contrib/kyua/utils/logging/ |
H A D | operations_test.cpp | 38 #include <atf-c++.hpp> 54 ATF_REQUIRE_EQ(fs::path("/some/dir/foobar.20110221-181000.log"), in ATF_TEST_CASE_BODY() 61 ATF_REQUIRE_EQ(fs::path("/some/dir/foobar.20110221-181000.log"), in ATF_TEST_CASE_BODY() 69 datetime::set_mock_now(2011, 2, 21, 18, 15, 0, 0); in ATF_TEST_CASE_BODY() 71 datetime::set_mock_now(2011, 2, 21, 18, 15, 1, 987654); in ATF_TEST_CASE_BODY() 74 datetime::set_mock_now(2011, 2, 21, 18, 15, 2, 123); in ATF_TEST_CASE_BODY() 75 ATF_REQUIRE_EQ(fs::path("/some/dir/foobar.20110221-181500.log"), in ATF_TEST_CASE_BODY() 78 datetime::set_mock_now(2011, 2, 21, 18, 15, 3, 1); in ATF_TEST_CASE_BODY() 81 datetime::set_mock_now(2011, 2, 21, 18, 15, 4, 91); in ATF_TEST_CASE_BODY() 82 ATF_REQUIRE_EQ(fs::path("/some/dir/foobar.20110221-181500.log"), in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/crypto/libecc/src/examples/hash/ |
H A D | gostr34_11_94.c | 2 * Copyright (C) 2021 - This file is part of libecc project 13 /* The 8 4-bit GOST block cipher encryption SBOX */ 16 { 4, 10, 9, 2, 13, 8, 0, 14, 6, 11, 1, 12, 7, 15, 5, 3 }, 17 { 14, 11, 4, 12, 6, 13, 15, 10, 2, 3, 8, 1, 0, 7, 5, 9 }, 18 { 5, 8, 1, 13, 10, 3, 4, 2, 14, 15, 12, 7, 6, 0, 9, 11 }, 19 { 7, 13, 10, 1, 0, 8, 9, 15, 14, 4, 6, 12, 11, 2, 5, 3 }, 20 { 6, 12, 7, 1, 5, 15, 13, 8, 4, 10, 9, 14, 0, 3, 11, 2 }, 21 { 4, 11, 10, 0, 7, 2, 1, 13, 3, 6, 8, 5, 9, 12, 15, 14 }, 22 { 13, 11, 4, 1, 3, 15, 5, 9, 0, 10, 14, 7, 6, 8, 2, 12 }, 23 { 1, 15, 13, 0, 5, 7, 10, 4, 9, 2, 3, 14, 6, 11, 8, 12 } [all …]
|
/freebsd/share/doc/psd/15.yacc/ |
H A D | ss_ | 1 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved. 36 .EH 'PSD:15-%''Yacc: Yet Another Compiler-Compiler' 37 .OH 'Yacc: Yet Another Compiler-Compiler''PSD:15-%' 42 Yet Another Compiler-Compiler 43 .AU "MH 2C-559" 3968 50 Computer program input generally has some structure; 51 in fact, every computer program that does input can be thought of as defining 52 an ``input language'' which it accepts. 53 An input language may be as complex as a programming language, or as simple as 55 Unfortunately, usual input facilities [all …]
|
/freebsd/sys/dev/sound/pci/hda/ |
H A D | hdaa_patches.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 6 * Copyright (c) 2008-2012 Alexander Motin <mav@FreeBSD.org> 154 if (vendor_id != p->id) in match_pin_patches() 156 for (struct model_pin_patch_t *pp = p->patches; pp->models; pp++) { in match_pin_patches() 157 for (struct pin_machine_model_t *model = pp->models; model->id != 0; model++) { in match_pin_patches() 158 if (HDA_DEV_MATCH(model->id, vendor_subid)) in match_pin_patches() 159 return (pp->pin_patches); in match_pin_patches() 172 nid_t nid = w->nid; in hdac_pin_patch() 174 config = orig = w->wclass.pin.config; in hdac_pin_patch() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/power/reset/ |
H A D | atmel,sama5d2-shdwc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/power/reset/atmel,sama5d2-shdwc.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Claudiu Beznea <claudiu.beznea@microchip.com> 14 and VDDCORE and the wake-up detection on debounced input lines. 19 - items: 20 - const: microchip,sama7g5-shdwc 21 - const: syscon 22 - enum: [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/ |
H A D | salsa20_xmm6int-sse2.c | 19 # include "salsa20_xmm6int-sse2.h" 24 uint32_t input[16]; member 28 0, 5, 10, 15, 12, 1, 6, 11, 8, 13, 2, 7, 4, 9, 14, 3 34 ctx->input[TR[1]] = LOAD32_LE(k + 0); in salsa_keysetup() 35 ctx->input[TR[2]] = LOAD32_LE(k + 4); in salsa_keysetup() 36 ctx->input[TR[3]] = LOAD32_LE(k + 8); in salsa_keysetup() 37 ctx->input[TR[4]] = LOAD32_LE(k + 12); in salsa_keysetup() 38 ctx->input[TR[11]] = LOAD32_LE(k + 16); in salsa_keysetup() 39 ctx->input[TR[12]] = LOAD32_LE(k + 20); in salsa_keysetup() 40 ctx->input[TR[13]] = LOAD32_LE(k + 24); in salsa_keysetup() [all …]
|
H A D | salsa20_xmm6int-avx2.c | 27 # include "salsa20_xmm6int-avx2.h" 32 uint32_t input[16]; member 36 0, 5, 10, 15, 12, 1, 6, 11, 8, 13, 2, 7, 4, 9, 14, 3 42 ctx->input[TR[1]] = LOAD32_LE(k + 0); in salsa_keysetup() 43 ctx->input[TR[2]] = LOAD32_LE(k + 4); in salsa_keysetup() 44 ctx->input[TR[3]] = LOAD32_LE(k + 8); in salsa_keysetup() 45 ctx->input[TR[4]] = LOAD32_LE(k + 12); in salsa_keysetup() 46 ctx->input[TR[11]] = LOAD32_LE(k + 16); in salsa_keysetup() 47 ctx->input[TR[12]] = LOAD32_LE(k + 20); in salsa_keysetup() 48 ctx->input[TR[13]] = LOAD32_LE(k + 24); in salsa_keysetup() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | msm8998-fxtec-pro1.dts | 1 // SPDX-License-Identifier: BSD-3-Clause 7 /dts-v1/; 9 #include <dt-bindings/input/input.h> 10 #include <dt-bindings/leds/common.h> 11 #include <dt-binding [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
H A D | blake3_portable.c | 5 return (w >> c) | (w << (32 - c)); in rotr32() 28 g(state, 3, 7, 11, 15, msg[schedule[6]], msg[schedule[7]]); in round_fn() 31 g(state, 0, 5, 10, 15, msg[schedule[8]], msg[schedule[9]]); in round_fn() 34 g(state, 3, 4, 9, 14, msg[schedule[14]], msg[schedule[15]]); in round_fn() 56 block_words[15] = load32(block + 4 * 15); in compress_pre() 73 state[15] = (uint32_t)flags; in compress_pre() 97 cv[7] = state[7] ^ state[15]; in blake3_compress_in_place_portable() 114 store32(&out[7 * 4], state[7] ^ state[15]); in blake3_compress_xof_portable() 122 store32(&out[15 * 4], state[15] ^ cv[7]); in blake3_compress_xof_portable() 125 INLINE void hash_one_portable(const uint8_t *input, size_t blocks, in hash_one_portable() argument [all …]
|
/freebsd/crypto/libecc/src/hash/ |
H A D | ripemd160.c | 2 * Copyright (C) 2021 - This file is part of libecc project 18 * 32-bit integer manipulation macros (big endian) 41 * 64-bit integer manipulation macros (big endian) 58 #define ROTL_RIPEMD160(x, n) ((((u32)(x)) << (n)) | (((u32)(x)) >> (32-(n)))) 77 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 78 { 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8 }, 79 { 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12 }, 80 { 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2 }, 81 { 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13 } 84 { 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8 }, [all …]
|
/freebsd/sys/contrib/zlib/ |
H A D | inffast.c | 1 /* inffast.c -- fast decoding 2 * Copyright (C) 1995-2017 Mark Adler 12 # pragma message("Assembler code may have bugs -- use at your own risk") 17 literal and match bytes until either not enough input or output is 18 available, an end-of-block is encountered, or a data error is encountered. 19 When large enough input and output buffers are supplied to inflate(), for 20 example, a 16K input buffer and a 64K output buffer, more than 95% of the 25 state->mode == LEN 26 strm->avail_in >= 6 27 strm->avail_out >= 258 [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/ref/ |
H A D | chacha20_ref.c | 3 chacha-merged.c version 20080118 21 uint32_t input[16]; member 48 ctx->input[0] = U32C(0x61707865); in chacha_keysetup() 49 ctx->input[1] = U32C(0x3320646e); in chacha_keysetup() 50 ctx->input[2] = U32C(0x79622d32); in chacha_keysetup() 51 ctx->input[3] = U32C(0x6b206574); in chacha_keysetup() 52 ctx->input[4] = LOAD32_LE(k + 0); in chacha_keysetup() 53 ctx->input[5] = LOAD32_LE(k + 4); in chacha_keysetup() 54 ctx->input[6] = LOAD32_LE(k + 8); in chacha_keysetup() 55 ctx->input[7] = LOAD32_LE(k + 12); in chacha_keysetup() [all …]
|