Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 28) sorted by relevance

12

/lib/
Dmd5.c10 #define MD5STEP(f, w, x, y, z, in, s) \ argument
11 (w += f(x, y, z) + in, w = (w<<s | w>>(32-s)) + x)
13 void md5_transform(__u32 *hash, __u32 const *in) in md5_transform() argument
22 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in md5_transform()
23 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in md5_transform()
24 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in md5_transform()
25 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in md5_transform()
26 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in md5_transform()
27 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in md5_transform()
28 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in md5_transform()
[all …]
Dhalfmd4.c26 __u32 half_md4_transform(__u32 buf[4], __u32 const in[8]) in half_md4_transform()
31 ROUND(F, a, b, c, d, in[0] + K1, 3); in half_md4_transform()
32 ROUND(F, d, a, b, c, in[1] + K1, 7); in half_md4_transform()
33 ROUND(F, c, d, a, b, in[2] + K1, 11); in half_md4_transform()
34 ROUND(F, b, c, d, a, in[3] + K1, 19); in half_md4_transform()
35 ROUND(F, a, b, c, d, in[4] + K1, 3); in half_md4_transform()
36 ROUND(F, d, a, b, c, in[5] + K1, 7); in half_md4_transform()
37 ROUND(F, c, d, a, b, in[6] + K1, 11); in half_md4_transform()
38 ROUND(F, b, c, d, a, in[7] + K1, 19); in half_md4_transform()
41 ROUND(G, a, b, c, d, in[1] + K2, 3); in half_md4_transform()
[all …]
Dtest-string_helpers.c15 char *in, size_t p, in test_string_check_buf() argument
25 in, p, true); in test_string_check_buf()
35 const char *in; member
42 .in = "\\f\\ \\n\\r\\t\\v",
47 .in = "\\40\\1\\387\\0064\\05\\040\\8a\\110\\777",
52 .in = "\\xv\\xa\\x2c\\xD\\x6f2",
57 .in = "\\h\\\\\\\"\\a\\e\\",
67 char *in = kmalloc(q_real, GFP_KERNEL); in test_string_unescape() local
72 if (!in || !out_test || !out_real) in test_string_unescape()
76 const char *s = strings[i].in; in test_string_unescape()
[all …]
Dkfifo.c35 return (fifo->mask + 1) - (fifo->in - fifo->out); in kfifo_unused()
47 fifo->in = 0; in __kfifo_alloc()
72 fifo->in = 0; in __kfifo_free()
88 fifo->in = 0; in __kfifo_init()
136 kfifo_copy_in(fifo, buf, len, fifo->in); in __kfifo_in()
137 fifo->in += len; in __kfifo_in()
171 l = fifo->in - fifo->out; in __kfifo_out_peek()
239 ret = kfifo_copy_from_user(fifo, from, len, fifo->in, copied); in __kfifo_from_user()
245 fifo->in += len; in __kfifo_from_user()
295 l = fifo->in - fifo->out; in __kfifo_to_user()
[all …]
Ddecompress_unxz.c251 STATIC int INIT unxz(unsigned char *in, long in_size, in unxz() argument
287 if (in == NULL) { in unxz()
289 in = malloc(XZ_IOBUF_SIZE); in unxz()
290 if (in == NULL) in unxz()
294 b.in = in; in unxz()
309 in_size = fill(in, XZ_IOBUF_SIZE); in unxz()
340 free(in); in unxz()
Dtest_siphash.c115 u8 in[64] __aligned(SIPHASH_ALIGNMENT); in siphash_test_init() local
121 in[i] = i; in siphash_test_init()
123 if (siphash(in, i, &test_key_siphash) != in siphash_test_init()
133 if (hsiphash(in, i, &test_key_hsiphash) != in siphash_test_init()
Dsg_split.c22 static int sg_calculate_split(struct scatterlist *in, int nents, int nb_splits, in sg_calculate_split() argument
37 for_each_sg(in, sg, nents, i) { in sg_calculate_split()
150 int sg_split(struct scatterlist *in, const int in_mapped_nents, in sg_split() argument
163 ret = sg_calculate_split(in, sg_nents(in), nb_splits, skip, split_sizes, in sg_split()
181 ret = sg_calculate_split(in, in_mapped_nents, nb_splits, skip, in sg_split()
Ddigsig.c81 MPI in = NULL, res = NULL, pkey[2]; in digsig_verify_rsa() local
134 in = mpi_read_from_buffer(sig, &nret); in digsig_verify_rsa()
135 if (!in) in digsig_verify_rsa()
138 res = mpi_alloc(mpi_get_nlimbs(in) * 2); in digsig_verify_rsa()
142 err = mpi_powm(res, in, pkey[1], pkey[0]); in digsig_verify_rsa()
170 mpi_free(in); in digsig_verify_rsa()
DKconfig.kgdb13 CONFIG_FRAME_POINTER to aid in producing more reliable stack
14 backtraces in the external debugger. Documentation of
16 as well as in DocBook form in Documentation/DocBook/. If
29 to break in initially.
49 to pass in a kernel parameter
62 bool "KGDB: Allow debugging with traps in notifiers"
120 kernel is still usable in this situation.
122 No guarantees that the kernel is still usable in this situation.
DKconfig.debug35 specified in milliseconds on the kernel command line,
58 implicitly compiles in all pr_debug() and dev_dbg() calls, which
62 pr_debug() calls in it are enabled by default, but can be
69 which is contained in the 'debugfs' filesystem. Thus, the debugfs
98 // enable all the messages in file svcsock.c
102 // enable all the messages in the NFS server module
106 // enable all 12 messages in the function svc_process()
110 // disable all 12 messages in the function svc_process()
125 debugging info resulting in a larger kernel image.
147 bool "Produce split debuginfo in .dwo files"
[all …]
DKconfig65 This option is provided for the case where no in-kernel-tree
73 This option is provided for the case where no in-kernel-tree
83 This option is only needed if a module that's not in the
90 This option is provided for the case where no in-kernel-tree
100 This option is provided for the case where no in-kernel-tree
165 This option is provided for the case where no in-kernel-tree
175 This option is provided for the case where no in-kernel-tree
329 Constant value for error correction capability in bits 't'.
355 overlapping range in log(n) time and then iterate over all
422 simple text pattern matching. It originated in the ATA code
[all …]
DKconfig.kmemcheck57 Select the maximum number of errors to store in the queue. Since
58 errors can occur virtually anywhere and in any context, we need a
DKconfig.kasan41 memory accesses. This is faster than outline (in some workloads
/lib/zlib_inflate/
Dinffast.c70 const unsigned char *in; /* local strm->next_in */ in inflate_fast() local
97 in = strm->next_in; in inflate_fast()
98 last = in + (strm->avail_in - 5); in inflate_fast()
120 hold += (unsigned long)(*in++) << bits; in inflate_fast()
122 hold += (unsigned long)(*in++) << bits; in inflate_fast()
139 hold += (unsigned long)(*in++) << bits; in inflate_fast()
147 hold += (unsigned long)(*in++) << bits; in inflate_fast()
149 hold += (unsigned long)(*in++) << bits; in inflate_fast()
162 hold += (unsigned long)(*in++) << bits; in inflate_fast()
165 hold += (unsigned long)(*in++) << bits; in inflate_fast()
[all …]
Dinflate.c325 unsigned in, out; /* save starting available input and output */ in zlib_inflate() local
346 in = have; in zlib_inflate()
720 in -= strm->avail_in; in zlib_inflate()
722 strm->total_in += in; in zlib_inflate()
736 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK) in zlib_inflate()
/lib/lzo/
Dlzo1x_compress.c21 lzo1x_1_do_compress(const unsigned char *in, size_t in_len, in lzo1x_1_do_compress() argument
27 const unsigned char * const in_end = in + in_len; in lzo1x_1_do_compress()
28 const unsigned char * const ip_end = in + in_len - 20; in lzo1x_1_do_compress()
33 ip = in; in lzo1x_1_do_compress()
48 m_pos = in + dict[t]; in lzo1x_1_do_compress()
49 dict[t] = (lzo_dict_t) (ip - in); in lzo1x_1_do_compress()
216 int lzo1x_1_compress(const unsigned char *in, size_t in_len, in lzo1x_1_compress() argument
220 const unsigned char *ip = in; in lzo1x_1_compress()
240 const unsigned char *ii = in + in_len - t; in lzo1x_1_compress()
Dlzo1x_decompress_safe.c38 int lzo1x_decompress_safe(const unsigned char *in, size_t in_len, in lzo1x_decompress_safe() argument
46 const unsigned char * const ip_end = in + in_len; in lzo1x_decompress_safe()
50 ip = in; in lzo1x_decompress_safe()
/lib/842/
D842_decompress.c60 u8 *in; member
98 u8 *in = p->in, b = p->bit, bits = b + n; in next_bits() local
119 *d = *in >> (8 - bits); in next_bits()
121 *d = be16_to_cpu(get_unaligned((__be16 *)in)) >> (16 - bits); in next_bits()
123 *d = be32_to_cpu(get_unaligned((__be32 *)in)) >> (32 - bits); in next_bits()
125 *d = be64_to_cpu(get_unaligned((__be64 *)in)) >> (64 - bits); in next_bits()
132 p->in += p->bit / 8; in next_bits()
282 int sw842_decompress(const u8 *in, unsigned int ilen, in sw842_decompress() argument
290 p.in = (u8 *)in; in sw842_decompress()
D842_compress.c98 u8 *in; member
119 be##b##_to_cpu(get_unaligned((__be##b *)((p)->in + (o))))
154 (unsigned int)((p)->in - (p)->instart), \
352 ret = add_bits(p, p->in[i], 8); in add_short_data_template()
434 u64 pos = p->in - p->instart; in update_hashtables()
486 int sw842_compress(const u8 *in, unsigned int ilen, in sw842_compress() argument
501 p->in = (u8 *)in; in sw842_compress()
502 p->instart = p->in; in sw842_compress()
523 last = ~get_unaligned((u64 *)p->in); in sw842_compress()
526 next = get_unaligned((u64 *)p->in); in sw842_compress()
[all …]
/lib/xz/
Dxz_dec_lzma2.c109 const uint8_t *in; member
397 memmove(dict->buf + dict->pos, b->in + b->in_pos, copy_size); in dict_uncompressed()
411 memmove(b->out + b->out_pos, b->in + b->in_pos, in dict_uncompressed()
472 rc->code = (rc->code << 8) + b->in[b->in_pos++]; in rc_read_init()
499 rc->code = (rc->code << RC_SHIFT_BITS) + rc->in[rc->in_pos++]; in rc_normalize()
876 memcpy(s->temp.buf + s->temp.size, b->in + b->in_pos, tmp); in lzma2_lzma()
891 s->rc.in = s->temp.buf; in lzma2_lzma()
912 s->rc.in = b->in; in lzma2_lzma()
936 memcpy(s->temp.buf, b->in + b->in_pos, in_avail); in lzma2_lzma()
987 tmp = b->in[b->in_pos++]; in xz_dec_lzma2_run()
[all …]
Dxz_dec_stream.c162 memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size); in fill_temp()
175 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli() argument
184 byte = in[*in_pos]; in dec_vli()
285 s->crc32 = xz_crc32(b->in + s->in_start, in_used, s->crc32); in index_update()
301 ret = dec_vli(s, b->in, &b->in_pos, b->in_size); in dec_index()
352 if (((s->crc32 >> s->pos) & 0xFF) != b->in[b->in_pos++]) in crc32_validate()
592 if (b->in[b->in_pos] == 0) { in dec_main()
603 = ((uint32_t)b->in[b->in_pos] + 1) * 4; in dec_main()
638 if (b->in[b->in_pos++] != 0) in dec_main()
676 if (b->in[b->in_pos++] != 0) in dec_main()
DKconfig52 This allows passing .xz files to the in-kernel XZ decoder via
Dxz_dec_test.c53 .in = buffer_in,
/lib/raid6/
Daltivec.uc20 * <benh> hpa: in process,
22 * bracked this with preempt_disable/enable or in a lock)
53 * The MASK() operation returns 0xFF in any byte for which the high
/lib/fonts/
DKconfig11 bool "Select compiled-in fonts"
101 big letters (like the letters used in the SPARC PROM). If the

12