/src/sys/crypto/blowfish/ |
bf_skey.c | 14 * apply to all code found in this distribution, be it the RC4, RSA, 19 * Copyright remains Eric Young's, and as such any Copyright notices in 21 * If this package is used in a product, Eric Young should be given attribution 23 * This can be in the form of a textual message at program startup or 24 * in documentation (online or textual) provided with the package. 26 * Redistribution and use in source and binary forms, with or without 31 * 2. Redistributions in binary form must reproduce the above copyright 32 * notice, this list of conditions and the following disclaimer in the 47 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC 80 BF_LONG *p, ri, in[2]; local in function:BF_set_key [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa2012/ref/ |
stream_salsa2012_ref.c | 17 unsigned char in[16]; local in function:crypto_stream_salsa2012 30 in[i] = n[i]; 33 in[i] = 0; 36 crypto_core_salsa2012(c, in, kcopy, NULL); 39 u += (unsigned int)in[i]; 40 in[i] = u; 47 crypto_core_salsa2012(block, in, kcopy, NULL); 63 unsigned char in[16]; local in function:crypto_stream_salsa2012_xor 76 in[i] = n[i]; 79 in[i] = 0 [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa208/ref/ |
stream_salsa208_ref.c | 17 unsigned char in[16]; local in function:crypto_stream_salsa208 30 in[i] = n[i]; 33 in[i] = 0; 36 crypto_core_salsa208(c, in, kcopy, NULL); 39 u += (unsigned int)in[i]; 40 in[i] = u; 47 crypto_core_salsa208(block, in, kcopy, NULL); 63 unsigned char in[16]; local in function:crypto_stream_salsa208_xor 76 in[i] = n[i]; 79 in[i] = 0 [all...] |
/src/sys/external/isc/libsodium/dist/test/default/ |
core4.c | 10 static unsigned char in[16] = { 101, 102, 103, 104, 105, 106, 107, 108, variable in typeref:typename:unsigned char[16] 23 crypto_core_salsa20(out, in, k, c);
|
core5.c | 10 static unsigned char in[16] = { variable in typeref:typename:unsigned char[16] 25 crypto_core_hsalsa20(out, in, k, c);
|
generichash2.c | 10 unsigned char in[MAXLEN], out[crypto_generichash_BYTES_MAX], local in function:main 19 in[i] = (unsigned char) i; 26 crypto_generichash_update(&st, in, i); 27 crypto_generichash_update(&st, in, i); 28 crypto_generichash_update(&st, in, i);
|
shorthash.c | 10 unsigned char in[MAXLEN]; local in function:main 20 in[i] = (unsigned char) i; 21 crypto_shorthash(out, in, (unsigned long long) i, k);
|
siphashx24.c | 10 unsigned char in[MAXLEN]; local in function:main 20 in[i] = (unsigned char) i; 21 crypto_shorthash_siphashx24(out, in, (unsigned long long) i, k);
|
core3.c | 23 unsigned char *in; local in function:main 37 in = (unsigned char *) sodium_malloc(16); 42 in[i] = noncesuffix[i]; 45 in[i] = 0; 49 crypto_core_salsa20(output + pos, in, secondkey, c); 51 in[8]++; 52 } while (in[8] != 0); 53 in[9]++; 54 } while (in[9] != 0); 67 crypto_core_salsa2012(output + pos, in, secondkey, c) [all...] |
/src/usr.bin/vndcompress/ |
Makefile | 15 XFAIL+= oneblock.in-outx 17 oneblock.in: 22 XFAIL+= tenblock.in-outx 24 tenblock.in: 29 XFAIL+= smallfile.in-outx 31 smallfile.in: 39 smallfile.cl2pipe: smallfile.in vndcompress 45 onechunk.in: 50 tenchunk.in: 55 XFAIL+= extrablock.in-out [all...] |
/src/usr.sbin/bootp/common/ |
trylook.c | 13 #include <netinet/in.h> 29 struct in_addr in; local in function:main 41 if (lookup_ipa(argv[i], &in.s_addr)) 44 a = inet_ntoa(in);
|
/src/usr.sbin/postinstall/ |
Makefile | 15 .SUFFIXES: .in 16 .in:
|
/src/usr.bin/make/unit-tests/ |
var-op-assign.mk | 9 # it is not expanded in any way. 23 # The '#' needs to be escaped with a backslash, this happens in a very 32 # When a string literal appears in a condition, the escaping rules are 39 # In this example, the reference is to the variable with the empty name, 57 # In a variable assignment, the variable name must consist of a single word. 71 VAR(spaces in parentheses)= () 72 VAR{spaces in braces}= {} 75 # accepting the test in case the parser just uses "VAR" as the variable name, 78 VARNAME_PAREN= VAR(spaces in parentheses) 79 VARNAME_BRACES= VAR{spaces in braces [all...] |
opt-file.mk | 9 all: file-ending-in-backslash 10 all: file-ending-in-backslash-mmap 17 # In the unlikely case where a file ends in a backslash instead of a newline, 40 file-ending-in-backslash: .PHONY 45 # there was an out-of-bounds write in ParseGetLine, where line_end pointed at 46 # the end of the allocated buffer, in the special case where loadedfile_mmap 48 file-ending-in-backslash-mmap: .PHONY 53 # Since parse.c 1.511 from 2020-12-22, an assertion in ParseGetLine failed 54 # for lines that contained trailing whitespace. Worked around in parse. [all...] |
/src/common/dist/zlib/contrib/iostream2/ |
zstream_test.cpp | 13 izstream in("temp.gz"); // read it back local in function:main 14 char *x = read_string(in), *y = new char[256], z[256]; 15 in > y > z; 16 in.close();
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/ref/ |
salsa20_ref.c | 22 unsigned char in[16]; local in function:stream_ref 35 in[i] = n[i]; 38 in[i] = 0; 41 crypto_core_salsa20(c, in, kcopy, NULL); 44 u += (unsigned int) in[i]; 45 in[i] = u; 52 crypto_core_salsa20(block, in, kcopy, NULL); 68 unsigned char in[16]; local in function:stream_ref_xor_ic 81 in[i] = n[i]; 84 in[i] = (unsigned char) (ic & 0xff) [all...] |
/src/sys/external/mit/xen-include-public/dist/xen/include/public/io/ |
console.h | 8 * deal in the Software without restriction, including without limitation the 13 * The above copyright notice and this permission notice shall be included in 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 35 char in[1024]; member in struct:xencons_interface
|
/src/etc/rc.d/ |
Makefile | 13 # You can find a script to visualize the dependency graph in 61 .SUFFIXES: .in 62 .in:
|
/src/etc/pam.d/ |
Makefile | 12 .for f in display_manager ftpd sshd su system 16 .SUFFIXES: .in 18 .in:
|
/src/tests/libexec/ld.elf_so/ |
t_hash.c | 7 * Redistribution and use in source and binary forms, with or without 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 const char *in; member in struct:kat 105 unsigned long long h = _rtld_sysv_hash(kat[i].in); 109 i, kat[i].in, h, kat[i].out); 155 unsigned long long h = sysv_broken_hash(kat[i].in); [all...] |
/src/common/dist/zlib/examples/ |
zpipe.c | 10 1.3 6 Apr 2005 Remove incorrect assertion in inf() 41 unsigned char in[CHUNK]; local in function:def 54 strm.avail_in = fread(in, 1, CHUNK, source); 60 strm.next_in = in; 63 compression if all of source has been read in */ 77 /* done when last data in file processed */ 97 unsigned char in[CHUNK]; local in function:inf 112 strm.avail_in = fread(in, 1, CHUNK, source); 119 strm.next_in = in;
|
/src/common/lib/libc/arch/powerpc/string/ |
memcmp.S | 10 * Redistribution and use in source and binary forms, with or 17 * * Redistributions in binary form must reproduce the above 19 * disclaimer in the documentation and/or other materials 29 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 34 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 60 * Check count passed in R5. If zero, return 0; otherwise continue. 66 * Most of the time the difference is found in the first 137 b in /* To the loop */ 150 in label [all...] |
/src/sys/crypto/des/ |
des_cbc.c | 10 * apply to all code found in this distribution, be it the RC4, RSA, 15 * Copyright remains Eric Young's, and as such any Copyright notices in 17 * If this package is used in a product, Eric Young should be given attribution 19 * This can be in the form of a textual message at program startup or 20 * in documentation (online or textual) provided with the package. 22 * Redistribution and use in source and binary forms, with or without 27 * 2. Redistributions in binary form must reproduce the above copyright 28 * notice, this list of conditions and the following disclaimer in the 43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC 144 register const unsigned char *in; local in function:des_ede3_cbc_encrypt [all...] |
des_ecb.c | 15 * Copyright remains Eric Young's, and as such any Copyright notices in 16 * the code are not to be removed. If this code is used in a product, 18 * This can be in the form of a textual message at program startup or 19 * in documentation (online or textual) provided with the package. 21 * Redistribution and use in source and binary forms, with or without 26 * 2. Redistributions in binary form must reproduce the above copyright 27 * notice, this list of conditions and the following disclaimer in the 36 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 40 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 41 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WA 112 const unsigned char *in=&(*input)[0]; local in function:des_ecb_encrypt 129 const unsigned char *in = &(*input)[0]; local in function:des_ecb3_encrypt [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/ |
nouveau_dispnv50_lut.c | 8 * to deal in the Software without restriction, including without limitation 13 * The above copyright notice and this permission notice shall be included in 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 * OTHER DEALINGS IN THE SOFTWARE. 46 struct drm_color_lut *in = blob ? blob->data : NULL; local in function:nv50_lut_load 51 if (!in) { 52 in = kvmalloc_array(1024, sizeof(*in), GFP_KERNEL) [all...] |