Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 1399) sorted by relevance

12345678910>>...56

/f-stack/freebsd/arm/nvidia/drm2/
H A Dtegra_drm_subr.c62 if (output->panel != NULL) { in tegra_drm_connector_get_modes()
68 edid = output->edid; in tegra_drm_connector_get_modes()
92 return &(output->encoder); in tegra_drm_connector_best_encoder()
129 (void **)&output->edid); in tegra_drm_encoder_attach()
133 device_printf(output->dev, in tegra_drm_encoder_attach()
135 if (output->edid != NULL) in tegra_drm_encoder_attach()
141 &output->gpio_hpd); in tegra_drm_encoder_attach()
146 if ((output->edid == NULL) && (output->ddc == NULL)) in tegra_drm_encoder_attach()
150 output->connector.polled = in tegra_drm_encoder_attach()
163 if (output->panel) { in tegra_drm_encoder_init()
[all …]
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dstream.c26 randombytes_buf(output, sizeof output); in main()
27 crypto_stream(output, sizeof output, nonce, firstkey); in main()
28 crypto_hash_sha256(h, output, sizeof output); in main()
32 assert(sizeof output > 4000); in main()
34 crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 0U, firstkey); in main()
36 assert(output[i] == 0); in main()
38 crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 1U, firstkey); in main()
39 crypto_hash_sha256(h, output, sizeof output); in main()
44 memset(output, i, 64); in main()
50 memset(output, 0, 192); in main()
[all …]
H A Dstream2.c14 static unsigned char output[4194304]; variable
22 crypto_stream_salsa20(output, sizeof output, noncesuffix, secondkey); in main()
23 crypto_hash_sha256(h, output, sizeof output); in main()
28 assert(sizeof output > 4000); in main()
30 crypto_stream_salsa20_xor_ic(output, output, 4000, noncesuffix, 0U, in main()
33 assert(output[i] == 0); in main()
35 crypto_stream_salsa20_xor_ic(output, output, 4000, noncesuffix, 1U, in main()
37 crypto_hash_sha256(h, output, sizeof output); in main()
H A Dkdf.exp11 Failure -- probably expected for output length=0
12 Failure -- probably expected for output length=1
13 Failure -- probably expected for output length=2
14 Failure -- probably expected for output length=3
15 Failure -- probably expected for output length=4
16 Failure -- probably expected for output length=5
17 Failure -- probably expected for output length=6
18 Failure -- probably expected for output length=7
19 Failure -- probably expected for output length=8
20 Failure -- probably expected for output length=9
[all …]
H A Dcore3.c24 unsigned char *output; in main() local
38 output = (unsigned char *) sodium_malloc(output_len); in main()
49 crypto_core_salsa20(output + pos, in, secondkey, c); in main()
56 crypto_hash_sha256(h, output, output_len); in main()
67 crypto_core_salsa2012(output + pos, in, secondkey, c); in main()
74 crypto_hash_sha256(h, output, output_len); in main()
84 crypto_core_salsa208(output + pos, in, secondkey, c); in main()
91 crypto_hash_sha256(h, output, output_len); in main()
103 sodium_free(output); in main()
/f-stack/freebsd/contrib/openzfs/cmd/arc_summary/
H A Darc_summary2212 output = {}
236 output["arc_misc"] = {}
347 return output
467 output = {}
586 return output
704 output = {}
819 return output
935 output = {}
956 return output
984 output = {}
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_ids_to_path/
H A Dzfs_ids_to_path_001_pos.ksh55 typeset output=$(zfs_ids_to_path $TESTPOOL $ds_id $file_id)
56 [[ "$output" == "$mntpnt/$file_path" ]] || \
57 log_fail "Incorrect output for non-verbose while mounted: $output"
58 output=$(zfs_ids_to_path -v $TESTPOOL $ds_id $file_id)
59 [[ "$output" == "$ds_path:/$file_path" ]] || \
60 log_fail "Incorrect output for verbose while mounted: $output"
62 output=$(zfs_ids_to_path $TESTPOOL $ds_id $file_id)
63 [[ "$output" == "$ds_path:/$file_path" ]] || \
65 output=$(zfs_ids_to_path -v $TESTPOOL $ds_id $file_id)
66 [[ "$output" == "$ds_path:/$file_path" ]] || \
[all …]
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dkeystone-clocks.dtsi20 clock-output-names = "mainmuxclk";
29 clock-output-names = "chipclk1";
85 clock-output-names = "paclk13";
175 clock-output-names = "usb";
216 clock-output-names = "pa";
236 clock-output-names = "sa";
246 clock-output-names = "pcie";
256 clock-output-names = "sr";
266 clock-output-names = "gem0";
376 clock-output-names = "i2c";
[all …]
H A Dkeystone-k2hk-clocks.dtsi57 clock-output-names = "tsip";
67 clock-output-names = "srio";
87 clock-output-names = "gem1";
97 clock-output-names = "gem2";
107 clock-output-names = "gem3";
117 clock-output-names = "gem4";
127 clock-output-names = "gem5";
137 clock-output-names = "gem6";
147 clock-output-names = "gem7";
167 clock-output-names = "tac";
[all …]
H A Dkeystone-k2l-clocks.dtsi13 clock-output-names = "arm-pll-clk";
30 clock-output-names = "papllclk";
48 clock-output-names = "dfe";
58 clock-output-names = "pcie";
68 clock-output-names = "gem1";
78 clock-output-names = "gem2";
88 clock-output-names = "gem3";
98 clock-output-names = "tac";
108 clock-output-names = "rac";
138 clock-output-names = "osr";
[all …]
/f-stack/dpdk/usertools/
H A Dcpu_layout.py46 output = " ".ljust(max_core_id_len + len('Core ')) variable
48 output += " Socket %s" % str(s).ljust(max_core_map_len - len('Socket '))
49 print(output)
51 output = " ".ljust(max_core_id_len + len('Core ')) variable
53 output += " --------".ljust(max_core_map_len)
54 output += " "
55 print(output)
58 output = "Core %s" % str(c).ljust(max_core_id_len) variable
61 output += " " + str(core_map[(s, c)]).ljust(max_core_map_len)
63 output += " " * (max_core_map_len + 1)
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
H A Dzdb_display_block.ksh71 output=$(zdb -ddddddbbbbbb $TESTPOOL/$TESTFS $obj 2> /dev/null \
73 dva=$(sed -Ene 's/^.+DVA\[0\]=<([^>]+)>.*/\1/p' <<< "$output")
75 output=$(zdb -ddddddbbbbbb $TESTPOOL/$TESTFS $obj 2> /dev/null \
77 blk_out0=${output##*>}
82 blk_out1=${output##*>}
85 output=$(export ZDB_NO_ZLE=\"true\"; zdb -R $TESTPOOL $dva:bd\
89 if [ "$output" != "$blk_out0" ]; then
97 if [ "$output" != "$blk_out1" ]; then
105 if [ "$output" != "$blk_out1" ]; then
113 block_cnt=$(echo "$output" | grep 'L0' | wc -l)
[all …]
H A Dzdb_objset_id.ksh61 output=$(zdb -d $TESTPOOL/$TESTFS)
62 objset_id=$(echo $output | awk '{split($0,array,",")} END{print array[2]}' |
70 output=$(zdb -dddddd $TESTPOOL/$id $obj)
72 echo $output |grep "$TESTPOOL/$TESTFS" > /dev/null
76 echo $output |grep "file1" > /dev/null
83 output=$(ls -1 /proc/spl/kstat/zfs/$TESTPOOL |grep objset- |tail -1)
84 objset_hex=${output#*-}
85 name_from_proc=$(cat /proc/spl/kstat/zfs/$TESTPOOL/$output |
90 output=$(zdb -dddddd $TESTPOOL/$objset_hex)
91 echo $output |grep "$name_from_proc" > /dev/null
H A Dzdb_decompress.ksh75 output=$(zdb -ddddddbbbbbb $TESTPOOL/$TESTFS $obj 2> /dev/null \
77 dva=$(sed -Ene 's/^.+DVA\[0\]=<([^>]+)>.*$/\1/p' <<< "$output")
81 size_str=$(sed -Ene 's/^.+ size=([^ ]+) .*$/\1/p' <<< "$output")
86 output=$(zdb -R $TESTPOOL $vdev:$offset:$size_str:d 2> /dev/null)
87 echo $output |grep $pattern > /dev/null
90 output=$(zdb -R $TESTPOOL $vdev:$offset:$size_str:dr 2> /dev/null)
91 echo $output |grep $four_k > /dev/null
94 output=$(zdb -R $TESTPOOL $vdev:$offset:$size_str:dr 2> /dev/null)
102 output=$(zdb -R $TESTPOOL $vdev:$offset:$lsize:dr 2> /dev/null)
109 output=$(zdb -R $TESTPOOL $vdev:$offset:$psize:dr 2> /dev/null)
/f-stack/tools/libxo/xohtml/
H A Dxohtml.js9 output = "";
11 output += "<b>Help</b>: " + help + "<br/>";
14 output += "<b>Type</b>: " + type + "<br/>";
17 output += "<div class='xpath-wrapper'>"
22 if (output.length > 0) {
23 output = "<div>" + output + "</div>";
30 var div = $(output);
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Dst,sta350.txt22 - st,output-conf: number, Selects the output configuration:
30 - st,ch1-output-mapping: Channel 1 output mapping
31 - st,ch2-output-mapping: Channel 2 output mapping
32 - st,ch3-output-mapping: Channel 3 output mapping
49 The FFX power output mode selects how the FFX output timing is
72 power output is enabled.
89 - st,activate-mute-output:
120 st,output-conf = /bits/ 8 <0x3>; // set output to 2-channel
123 st,ch1-output-mapping = /bits/ 8 <0>; // set channel 1 output ch 1
124 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1
[all …]
H A Dst,sta32x.txt26 - st,output-conf: number, Selects the output configuration:
34 - st,ch1-output-mapping: Channel 1 output mapping
35 - st,ch2-output-mapping: Channel 2 output mapping
36 - st,ch3-output-mapping: Channel 3 output mapping
56 Only required for "st,ffx-power-output-mode" ==
68 power output is enabled.
90 st,output-conf = /bits/ 8 <0x3>; // set output to 2-channel
93 st,ch1-output-mapping = /bits/ 8 <0>; // set channel 1 output ch 1
94 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1
95 st,ch3-output-mapping = /bits/ 8 <0>; // set channel 3 output ch 1
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/
H A Dxattr_008_pos.ksh46 for file in $TEST_BASE_DIR/output.$$ $TEST_BASE_DIR/expected-output.$$ \
61 create_expected_output $TEST_BASE_DIR/expected-output.$$ \
63 log_must diff $TEST_BASE_DIR/output.$$ $TEST_BASE_DIR/expected-output.$$
66 create_expected_output $TEST_BASE_DIR/expected-output.$$ . .. \
68 log_must diff $TEST_BASE_DIR/output.$$ $TEST_BASE_DIR/expected-output.$$
/f-stack/freebsd/contrib/zstd/lib/legacy/
H A Dzstd_legacy.h357 void* dst = (char*)output->dst + output->pos; in ZSTD_decompressLegacyStream()
358 size_t decodedSize = output->size - output->pos; in ZSTD_decompressLegacyStream()
360 output->pos += decodedSize; in ZSTD_decompressLegacyStream()
371 void* dst = (char*)output->dst + output->pos; in ZSTD_decompressLegacyStream()
372 size_t decodedSize = output->size - output->pos; in ZSTD_decompressLegacyStream()
374 output->pos += decodedSize; in ZSTD_decompressLegacyStream()
385 void* dst = (char*)output->dst + output->pos; in ZSTD_decompressLegacyStream()
386 size_t decodedSize = output->size - output->pos; in ZSTD_decompressLegacyStream()
388 output->pos += decodedSize; in ZSTD_decompressLegacyStream()
399 void* dst = (char*)output->dst + output->pos; in ZSTD_decompressLegacyStream()
[all …]
/f-stack/freebsd/contrib/openzfs/module/icp/core/
H A Dkcf_prov_lib.c118 crypto_put_output_data(uchar_t *buf, crypto_data_t *output, int len) in crypto_put_output_data() argument
120 switch (output->cd_format) { in crypto_put_output_data()
122 if (output->cd_raw.iov_len < len) { in crypto_put_output_data()
123 output->cd_length = len; in crypto_put_output_data()
126 bcopy(buf, (uchar_t *)(output->cd_raw.iov_base + in crypto_put_output_data()
127 output->cd_offset), len); in crypto_put_output_data()
131 return (crypto_uio_data(output, buf, len, in crypto_put_output_data()
148 ASSERT(input != output); in crypto_update_iov()
158 input->cd_length, output); in crypto_update_iov()
175 ASSERT(input != output); in crypto_update_uio()
[all …]
/f-stack/app/redis-5.0.5/src/
H A Dsparkline.c97 sds sparklineRenderRange(sds output, struct sequence *seq, int rows, int offset, int len, int flags… in sparklineRenderRange() argument
156 output = sdscatlen(output,chars,len); in sparklineRenderRange()
157 output = sdscatlen(output,"\n",1); in sparklineRenderRange()
161 return output; in sparklineRenderRange()
165 sds sparklineRender(sds output, struct sequence *seq, int columns, int rows, int flags) { in sparklineRender() argument
171 if (j != 0) output = sdscatlen(output,"\n",1); in sparklineRender()
172 output = sparklineRenderRange(output, seq, rows, j, sublen, flags); in sparklineRender()
174 return output; in sparklineRender()
/f-stack/freebsd/contrib/device-tree/Bindings/clock/
H A Dsilabs,si5351.txt40 - reg: number of clock output.
45 1 = multisynth 0 for output clocks 0-3, else multisynth4
54 0 = clock output is driven LOW when disabled
55 1 = clock output is driven HIGH when disabled
56 2 = clock output is FLOATING (HIGH-Z) when disabled
57 3 = clock output is NEVER disabled
87 * - 8mA output drive strength
89 * - multisynth0 as clock source of output divider
104 * - 4mA output drive strength
106 * - multisynth1 as clock source of output divider
[all …]
H A Dallwinner,sun4i-a10-usb-clk.yaml20 the index of the output.
39 clock-output-names:
49 - clock-output-names
62 clock-output-names:
73 clock-output-names:
84 clock-output-names:
95 clock-output-names:
106 clock-output-names:
127 clock-output-names = "usb_ohci0", "usb_phy";
137 clock-output-names = "usb_phy0", "usb_phy1", "usb_phy2",
[all …]
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Demitter.h76 emitter_output_t output; member
88 emitter->output = emitter_output; in emitter_init()
110 if (emitter->output == emitter_output_table) { in emitter_table_printf()
225 if (emitter->output == emitter_output_json) { in emitter_indent()
244 if (emitter->output == emitter_output_json) { in emitter_begin()
256 if (emitter->output == emitter_output_json) { in emitter_end()
272 if (emitter->output == emitter_output_json) { in emitter_kv_note()
304 if (emitter->output == emitter_output_json) { in emitter_json_kv()
320 if (emitter->output == emitter_output_json) { in emitter_dict_begin()
333 if (emitter->output == emitter_output_json) { in emitter_dict_end()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_upgrade/
H A Dzfs_upgrade_001_pos.ksh58 for file in $output $oldoutput ; do
69 typeset output=$TEST_BASE_DIR/zfs-versions.$$
104 zfs upgrade | nawk '$1 ~ "^[0-9]+$" {print $2}'> $output
105 COUNT=$( wc -l $output | awk '{print $1}' )
109 log_must grep "^$fs$" $output
114 cat $output
131 zfs upgrade | nawk '$1 ~ "^[0-9]+$" {print $2}'> $output
132 COUNT=$( wc -l $output | awk '{print $1}' )
135 cat $output

12345678910>>...56