/linux-4.19.296/fs/squashfs/ |
D | lzo_wrapper.c | 38 void *output; member 51 stream->output = vmalloc(block_size); in lzo_init() 52 if (stream->output == NULL) in lzo_init() 72 vfree(stream->output); in lzo_free() 80 struct squashfs_page_actor *output) in lzo_uncompress() argument 85 size_t out_len = output->length; in lzo_uncompress() 97 stream->output, &out_len); in lzo_uncompress() 102 data = squashfs_first_page(output); in lzo_uncompress() 103 buff = stream->output; in lzo_uncompress() 112 data = squashfs_next_page(output); in lzo_uncompress() [all …]
|
D | lz4_wrapper.c | 30 void *output; member 65 stream->output = vmalloc(block_size); in lz4_init() 66 if (stream->output == NULL) in lz4_init() 87 vfree(stream->output); in lz4_free() 95 struct squashfs_page_actor *output) in lz4_uncompress() argument 110 res = LZ4_decompress_safe(stream->input, stream->output, in lz4_uncompress() 111 length, output->length); in lz4_uncompress() 117 data = squashfs_first_page(output); in lz4_uncompress() 118 buff = stream->output; in lz4_uncompress() 127 data = squashfs_next_page(output); in lz4_uncompress() [all …]
|
D | block.c | 92 u64 *next_index, struct squashfs_page_actor *output) in squashfs_read_data() argument 100 bh = kcalloc(((output->length + msblk->devblksize - 1) in squashfs_read_data() 116 index, compressed ? "" : "un", length, output->length); in squashfs_read_data() 118 if (length < 0 || length > output->length || in squashfs_read_data() 150 if (length < 0 || length > output->length || in squashfs_read_data() 173 output); in squashfs_read_data() 181 void *data = squashfs_first_page(output); in squashfs_read_data() 188 data = squashfs_next_page(output); in squashfs_read_data() 202 squashfs_finish_page(output); in squashfs_read_data()
|
D | zlib_wrapper.c | 67 struct squashfs_page_actor *output) in zlib_uncompress() argument 73 stream->next_out = squashfs_first_page(output); in zlib_uncompress() 86 stream->next_out = squashfs_next_page(output); in zlib_uncompress() 94 squashfs_finish_page(output); in zlib_uncompress() 106 squashfs_finish_page(output); in zlib_uncompress()
|
D | zstd_wrapper.c | 72 struct squashfs_page_actor *output) in zstd_uncompress() argument 90 out_buf.dst = squashfs_first_page(output); in zstd_uncompress() 104 out_buf.dst = squashfs_next_page(output); in zstd_uncompress() 109 squashfs_finish_page(output); in zstd_uncompress() 124 squashfs_finish_page(output); in zstd_uncompress()
|
D | xz_wrapper.c | 134 struct squashfs_page_actor *output) in squashfs_xz_uncompress() argument 145 stream->buf.out = squashfs_first_page(output); in squashfs_xz_uncompress() 158 stream->buf.out = squashfs_next_page(output); in squashfs_xz_uncompress() 171 squashfs_finish_page(output); in squashfs_xz_uncompress()
|
D | decompressor_single.c | 65 int b, int offset, int length, struct squashfs_page_actor *output) in squashfs_decompress() argument 72 offset, length, output); in squashfs_decompress()
|
D | decompressor_multi_percpu.c | 78 int b, int offset, int length, struct squashfs_page_actor *output) in squashfs_decompress() argument 84 offset, length, output); in squashfs_decompress()
|
/linux-4.19.296/drivers/pwm/ |
D | pwm-lp3943.c | 48 pwm_map->output = pdata->pwms[hwpwm]->output; in lp3943_pwm_request_map() 52 offset = pwm_map->output[i]; in lp3943_pwm_request_map() 83 offset = pwm_map->output[i]; in lp3943_pwm_free_map() 146 index = pwm_map->output[i]; in lp3943_pwm_set_mode() 205 enum lp3943_pwm_output *output; in lp3943_pwm_parse_dt() local 229 output = devm_kcalloc(dev, num_outputs, sizeof(*output), in lp3943_pwm_parse_dt() 231 if (!output) in lp3943_pwm_parse_dt() 234 err = of_property_read_u32_array(node, name[i], output, in lp3943_pwm_parse_dt() 243 pwm_map->output = output; in lp3943_pwm_parse_dt()
|
/linux-4.19.296/lib/ |
D | decompress_unlz4.c | 37 u8 *output, long *posp, in unlz4() argument 53 if (output) { in unlz4() 54 outp = output; in unlz4() 179 if (output) in unlz4() 203 if (!output) in unlz4() 213 unsigned char *output, long out_len, in __decompress() argument 218 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
|
D | decompress_unlzo.c | 115 u8 *output, long *posp, in unlzo() argument 125 if (output) { in unlzo() 126 out_buf = output; in unlzo() 260 if (output) in unlzo() 285 if (!output) in unlzo()
|
/linux-4.19.296/usr/ |
D | gen_initramfs_list.sh | 51 cat <<-EOF >> ${output} 95 echo "# Last modified: ${my_mtime}" >> ${output} 96 echo "" >> ${output} 149 echo "${str}" >> ${output} 169 printf "\n#####################\n# $1\n" >> ${output} 205 print_mtime "$1" >> ${output} 206 cat "$1" >> ${output} 229 output="/dev/stdout" 245 output=${cpio_list}
|
/linux-4.19.296/crypto/asymmetric_keys/ |
D | public_key.c | 74 void *output; in public_key_verify_signature() local 115 output = kmalloc(outlen, GFP_KERNEL); in public_key_verify_signature() 116 if (!output) in public_key_verify_signature() 120 sg_init_one(&digest_sg, output, outlen); in public_key_verify_signature() 138 memcmp(sig->digest, output, sig->digest_size) != 0) in public_key_verify_signature() 142 kfree(output); in public_key_verify_signature()
|
/linux-4.19.296/include/trace/events/ |
D | thermal_power_allocator.h | 60 s64 p, s64 i, s64 d, s32 output), 61 TP_ARGS(tz, err, err_integral, p, i, d, output), 69 __field(s32, output ) 78 __entry->output = output; 83 __entry->p, __entry->i, __entry->d, __entry->output)
|
/linux-4.19.296/drivers/cpufreq/ |
D | pcc-cpufreq.c | 304 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; in pcc_cpufreq_do_osc() local 328 status = acpi_evaluate_object(*handle, "_OSC", &input, &output); in pcc_cpufreq_do_osc() 332 if (!output.length) in pcc_cpufreq_do_osc() 335 out_obj = output.pointer; in pcc_cpufreq_do_osc() 353 kfree(output.pointer); in pcc_cpufreq_do_osc() 357 status = acpi_evaluate_object(*handle, "_OSC", &input, &output); in pcc_cpufreq_do_osc() 361 if (!output.length) in pcc_cpufreq_do_osc() 364 out_obj = output.pointer; in pcc_cpufreq_do_osc() 383 kfree(output.pointer); in pcc_cpufreq_do_osc() 390 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; in pcc_cpufreq_probe() local [all …]
|
/linux-4.19.296/drivers/clk/at91/ |
D | clk-pll.c | 40 struct clk_range *output; member 234 if (bestrate >= characteristics->output[i].min && in clk_pll_get_best_div_mul() 235 bestrate <= characteristics->output[i].max) in clk_pll_get_best_div_mul() 371 struct clk_range *output; in of_at91_clk_pll_get_characteristics() local 394 output = kcalloc(num_output, sizeof(*output), GFP_KERNEL); in of_at91_clk_pll_get_characteristics() 395 if (!output) in of_at91_clk_pll_get_characteristics() 416 output[i].min = tmp; in of_at91_clk_pll_get_characteristics() 421 output[i].max = tmp; in of_at91_clk_pll_get_characteristics() 444 characteristics->output = output; in of_at91_clk_pll_get_characteristics() 452 kfree(output); in of_at91_clk_pll_get_characteristics()
|
D | clk-master.c | 28 struct clk_range output; member 98 if (rate < characteristics->output.min) in clk_master_recalc_rate() 100 else if (rate > characteristics->output.max) in clk_master_recalc_rate() 184 if (of_at91_get_clk_range(np, "atmel,clk-output-range", &characteristics->output)) in of_at91_clk_master_get_characteristics()
|
/linux-4.19.296/drivers/clk/st/ |
D | clkgen-fsyn.c | 77 unsigned long output, struct stm_fs *fs); 293 unsigned long output, struct stm_fs *fs) in clk_fs660c32_vco_get_params() argument 302 if (output < 384000000 || output > 660000000) in clk_fs660c32_vco_get_params() 311 output /= 1000; in clk_fs660c32_vco_get_params() 313 n = output * pdiv / input; in clk_fs660c32_vco_get_params() 590 signed long input, unsigned long output, uint64_t *p, in clk_fs660c32_get_pe() argument 597 val = (uint64_t)output << si; in clk_fs660c32_get_pe() 613 new_deviation = abs(output - new_freq); in clk_fs660c32_get_pe() 626 unsigned long output, struct stm_fs *fs) in clk_fs660c32_dig_get_params() argument 642 input, output, &p1, fs); in clk_fs660c32_dig_get_params() [all …]
|
D | clkgen-pll.c | 271 static int clk_pll3200c32_get_params(unsigned long input, unsigned long output, in clk_pll3200c32_get_params() argument 285 if (output < 800000000 || output > 1600000000) in clk_pll3200c32_get_params() 289 output /= 1000; in clk_pll3200c32_get_params() 292 n = i * output / (2 * input); in clk_pll3200c32_get_params() 302 new_deviation = abs(new_freq - output); in clk_pll3200c32_get_params() 432 static int clk_pll4600c28_get_params(unsigned long input, unsigned long output, in clk_pll4600c28_get_params() argument 441 if (output < 19000000 || output > 3000000000u) in clk_pll4600c28_get_params() 451 n = output / (infin * 2); in clk_pll4600c28_get_params() 459 if (new_freq < output) in clk_pll4600c28_get_params() 462 new_deviation = new_freq - output; in clk_pll4600c28_get_params()
|
/linux-4.19.296/drivers/gpio/ |
D | gpio-adp5520.c | 21 unsigned long output; member 36 if (test_bit(off, &dev->output)) in adp5520_gpio_get_value() 61 clear_bit(off, &dev->output); in adp5520_gpio_direction_input() 74 set_bit(off, &dev->output); in adp5520_gpio_direction_output()
|
/linux-4.19.296/drivers/iio/adc/ |
D | qcom-vadc-common.c | 51 u32 tablesize, s32 input, s64 *output) in qcom_vadc_map_voltage_temp() argument 80 *output = pts[0].y; in qcom_vadc_map_voltage_temp() 82 *output = pts[tablesize - 1].y; in qcom_vadc_map_voltage_temp() 86 *output = (((s32)((pts[i].y - pts[i - 1].y) * in qcom_vadc_map_voltage_temp()
|
/linux-4.19.296/drivers/regulator/ |
D | Kconfig | 13 output in order to save power and prolong battery life. This applies 14 to both voltage regulators (where voltage output is controllable) and 15 current sinks (where current output is controllable). 71 It delivers digitally programmable output, 87 This driver controls a active-semi act8865 voltage output 295 regulator that delivers a digitally programmable output from an 296 input voltage supply of 2.5V to 5.5V. The output voltage is 356 One boost output voltage is configurable and always on. 413 tristate "LTC3589 8-output voltage regulator" 418 8-output regulators controlled via I2C. [all …]
|
/linux-4.19.296/fs/jbd2/ |
D | Kconfig | 27 allows you to enable debugging output while the system is running, 29 By default, the debugging output will be turned off. 34 output is generated. To turn debugging off again, do
|
/linux-4.19.296/crypto/ |
D | ansi_cprng.c | 90 unsigned char *output = NULL; in _get_more_prng_bytes() local 112 output = ctx->I; in _get_more_prng_bytes() 124 output = ctx->rand_data; in _get_more_prng_bytes() 154 output = ctx->V; in _get_more_prng_bytes() 161 crypto_cipher_encrypt_one(ctx->tfm, output, tmp); in _get_more_prng_bytes()
|
/linux-4.19.296/include/media/davinci/ |
D | vpbe.h | 32 struct v4l2_output output; member 109 struct v4l2_output *output);
|