/lib/ |
D | md5.c | 10 #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 …]
|
D | halfmd4.c | 26 __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 …]
|
D | test-string_helpers.c | 15 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 …]
|
D | kfifo.c | 35 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() 87 fifo->in = 0; in __kfifo_init() 135 kfifo_copy_in(fifo, buf, len, fifo->in); in __kfifo_in() 136 fifo->in += len; in __kfifo_in() 170 l = fifo->in - fifo->out; in __kfifo_out_peek() 238 ret = kfifo_copy_from_user(fifo, from, len, fifo->in, copied); in __kfifo_from_user() 244 fifo->in += len; in __kfifo_from_user() 294 l = fifo->in - fifo->out; in __kfifo_to_user() [all …]
|
D | decompress_unxz.c | 251 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()
|
D | digsig.c | 81 MPI in = NULL, res = NULL, pkey[2]; in digsig_verify_rsa() local 138 in = mpi_read_from_buffer(sig, &nret); in digsig_verify_rsa() 139 if (IS_ERR(in)) { in digsig_verify_rsa() 140 err = PTR_ERR(in); in digsig_verify_rsa() 144 res = mpi_alloc(mpi_get_nlimbs(in) * 2); in digsig_verify_rsa() 148 err = mpi_powm(res, in, pkey[1], pkey[0]); in digsig_verify_rsa() 176 mpi_free(in); in digsig_verify_rsa()
|
D | sg_split.c | 22 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()
|
D | Kconfig.kgdb | 13 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.
|
D | Kconfig.debug | 35 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 …]
|
D | Kconfig.ubsan | 12 behaviours in runtime. Various types of checks may be enabled 21 # use -Wmaybe-uninitilized in allmodconfig builds. 22 # So dependsy bellow used to disable this option in allmodconfig
|
D | Kconfig | 65 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 425 simple text pattern matching. It originated in the ATA code [all …]
|
D | Kconfig.kmemcheck | 57 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
|
/lib/zlib_inflate/ |
D | inffast.c | 91 const unsigned char *in; /* local strm->next_in */ in inflate_fast() local 118 in = strm->next_in - OFF; in inflate_fast() 119 last = in + (strm->avail_in - 5); in inflate_fast() 141 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 143 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 160 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 168 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 170 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 183 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 186 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() [all …]
|
D | inflate.c | 325 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/ |
D | lzo1x_compress.c | 21 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()
|
D | lzo1x_decompress_safe.c | 38 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/ |
D | 842_decompress.c | 60 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() 286 int sw842_decompress(const u8 *in, unsigned int ilen, in sw842_decompress() argument 294 p.in = (u8 *)in; in sw842_decompress()
|
D | 842_compress.c | 98 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/ |
D | xz_dec_lzma2.c | 109 const uint8_t *in; member 390 memcpy(dict->buf + dict->pos, b->in + b->in_pos, copy_size); in dict_uncompressed() 400 memcpy(b->out + b->out_pos, b->in + b->in_pos, in dict_uncompressed() 455 rc->code = (rc->code << 8) + b->in[b->in_pos++]; in rc_read_init() 482 rc->code = (rc->code << RC_SHIFT_BITS) + rc->in[rc->in_pos++]; in rc_normalize() 859 memcpy(s->temp.buf + s->temp.size, b->in + b->in_pos, tmp); in lzma2_lzma() 874 s->rc.in = s->temp.buf; in lzma2_lzma() 895 s->rc.in = b->in; in lzma2_lzma() 919 memcpy(s->temp.buf, b->in + b->in_pos, in_avail); in lzma2_lzma() 970 tmp = b->in[b->in_pos++]; in xz_dec_lzma2_run() [all …]
|
D | xz_dec_stream.c | 162 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()
|
D | Kconfig | 52 This allows passing .xz files to the in-kernel XZ decoder via
|
D | xz_dec_test.c | 53 .in = buffer_in,
|
/lib/raid6/ |
D | s390vx.uc | 27 * The SHLBYTE() operation shifts each of the 16 bytes in 28 * vector register y left by 1 bit and stores the result in 37 * For each of the 16 bytes in the vector register y the MASK() 39 * or 0x00 if the high bit is 0. The result is stored in vector
|
D | altivec.uc | 20 * <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/ |
D | Kconfig | 11 bool "Select compiled-in fonts" 101 big letters (like the letters used in the SPARC PROM). If the
|