Searched refs:input (Results 1 – 9 of 9) sorted by relevance
/lib/ |
D | decompress_unlzo.c | 41 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len) in parse_header() argument 44 u8 *parse = input; in parse_header() 45 u8 *end = input + in_len; in parse_header() 94 *skip = parse - input; in parse_header() 98 STATIC int INIT unlzo(u8 *input, long in_len, in unlzo() argument 124 if (input && fill) { in unlzo() 127 } else if (input) { in unlzo() 128 in_buf = input; in unlzo() 268 if (!input) in unlzo()
|
D | xxhash.c | 94 static uint32_t xxh32_round(uint32_t seed, const uint32_t input) in xxh32_round() argument 96 seed += input * PRIME32_2; in xxh32_round() 102 uint32_t xxh32(const void *input, const size_t len, const uint32_t seed) in xxh32() argument 104 const uint8_t *p = (const uint8_t *)input; in xxh32() 156 static uint64_t xxh64_round(uint64_t acc, const uint64_t input) in xxh64_round() argument 158 acc += input * PRIME64_2; in xxh64_round() 172 uint64_t xxh64(const void *input, const size_t len, const uint64_t seed) in xxh64() argument 174 const uint8_t *p = (const uint8_t *)input; in xxh64() 270 int xxh32_update(struct xxh32_state *state, const void *input, const size_t len) in xxh32_update() argument 272 const uint8_t *p = (const uint8_t *)input; in xxh32_update() [all …]
|
D | decompress_unlz4.c | 31 STATIC inline int INIT unlz4(u8 *input, long in_len, in unlz4() argument 45 size_t out_len = get_unaligned_le32(input + in_len); in unlz4() 63 if (input && fill) { in unlz4() 66 } else if (input) { in unlz4() 67 inp = input; in unlz4() 189 if (!input) in unlz4()
|
D | Kconfig.kgdb | 103 bool "KGDB_KDB: keyboard as input device" 107 KDB can use a PS/2 type keyboard for an input device
|
D | sha1.c | 55 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument 56 __u32 TEMP = input(t); setW(t, TEMP); \
|
D | kobject_uevent.c | 761 .input = uevent_net_rcv, in uevent_net_init()
|
/lib/zstd/ |
D | decompress.c | 2298 size_t ZSTD_decompressStream(ZSTD_DStream *zds, ZSTD_outBuffer *output, ZSTD_inBuffer *input) in ZSTD_decompressStream() argument 2300 const char *const istart = (const char *)(input->src) + input->pos; in ZSTD_decompressStream() 2301 const char *const iend = (const char *)(input->src) + input->size; in ZSTD_decompressStream() 2323 input->pos = input->size; in ZSTD_decompressStream() 2464 input->pos += (size_t)(ip - istart); in ZSTD_decompressStream() 2471 if (input->pos >= input->size) { in ZSTD_decompressStream() 2475 input->pos++; /* release hostage */ in ZSTD_decompressStream() 2480 input->pos--; /* note : pos > 0, otherwise, impossible to finish reading last block */ in ZSTD_decompressStream()
|
D | compress.c | 3223 size_t ZSTD_compressStream(ZSTD_CStream *zcs, ZSTD_outBuffer *output, ZSTD_inBuffer *input) in ZSTD_compressStream() argument 3225 size_t sizeRead = input->size - input->pos; in ZSTD_compressStream() 3228 … (char *)(output->dst) + output->pos, &sizeWritten, (const char *)(input->src) + input->pos, &size… in ZSTD_compressStream() 3229 input->pos += sizeRead; in ZSTD_compressStream()
|
/lib/crypto/ |
D | sha256.c | 36 static inline void LOAD_OP(int I, u32 *W, const u8 *input) in LOAD_OP() argument 38 W[I] = get_unaligned_be32((__u32 *)input + I); in LOAD_OP() 46 static void sha256_transform(u32 *state, const u8 *input) in sha256_transform() argument 54 LOAD_OP(i, W, input); in sha256_transform()
|