Home
last modified time | relevance | path

Searched refs:output_channel (Results 1 – 25 of 109) sorted by relevance

12345

/dports/lang/mit-scheme/mit-scheme-9.2/src/microcode/
H A Dos2tty.c34 static Tchannel output_channel; variable
42 output_channel = (OS2_make_channel (1, CHANNEL_WRITE)); in OS2_initialize_tty()
43 (CHANNEL_INTERNAL (output_channel)) = 1; in OS2_initialize_tty()
55 return (output_channel); in OS_tty_output_channel()
H A Duxtty.c46 static Tchannel output_channel; variable
65 return (output_channel); in OS_tty_output_channel()
219 output_channel = (OS_open_fd (STDOUT_FILENO)); in UX_initialize_tty()
220 (CHANNEL_INTERNAL (output_channel)) = 1; in UX_initialize_tty()
H A Dnttty.c37 static Tchannel output_channel; variable
56 return (output_channel); in OS_tty_output_channel()
90 output_channel = input_channel; in NT_initialize_tty()
/dports/misc/tvm/incubator-tvm-0.6.1/tests/python/relay/
H A Dtest_pass_mac_count.py53 output_channel = 64
61 weight = relay.var("weight", shape=(output_channel, input_channel, kh, kw))
66 channels=output_channel,
72 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
142 output_channel = 64
150 weight = relay.var("weight", shape=(input_channel, output_channel, kh, kw))
155 channels=output_channel,
162 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/tests/python/relay/
H A Dtest_pass_mac_count.py54 output_channel = 64
62 weight = relay.var("weight", shape=(output_channel, input_channel, kh, kw))
65 data, weight, channels=output_channel, kernel_size=(kh, kw), padding=(h_padding, w_padding)
70 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
126 output_channel = 64
134 weight = relay.var("weight", shape=(input_channel, output_channel, kh, kw))
137 data, weight, channels=output_channel, kernel_size=(kh, kw), padding=(h_padding, w_padding)
142 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
/dports/misc/py-tvm/incubator-tvm-0.6.1/tests/python/relay/
H A Dtest_pass_mac_count.py53 output_channel = 64
61 weight = relay.var("weight", shape=(output_channel, input_channel, kh, kw))
66 channels=output_channel,
72 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
142 output_channel = 64
150 weight = relay.var("weight", shape=(input_channel, output_channel, kh, kw))
155 channels=output_channel,
162 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
/dports/science/py-chainer-chemistry/chainer-chemistry-0.7.1/chainer_chemistry/models/
H A Dweavenet.py105 def __init__(self, n_atom, output_channel, n_sub_layer, argument
109 self.atom_layer = LinearLayer(output_channel, n_sub_layer)
110 self.pair_layer = LinearLayer(output_channel, n_sub_layer)
111 self.atom_to_atom = LinearLayer(output_channel, n_sub_layer)
112 self.pair_to_pair = LinearLayer(output_channel, n_sub_layer)
113 self.atom_to_pair = AtomToPair(output_channel, n_sub_layer, n_atom)
114 self.pair_to_atom = PairToAtom(output_channel, n_sub_layer, n_atom,
117 self.n_channel = output_channel
/dports/graphics/darktable38/darktable-3.8.0/src/iop/
H A Dchannelmixer.c99 GtkWidget *output_channel; // Output channel member
620 g->output_channel = dt_bauhaus_combobox_new(self); in gui_init()
621 dt_bauhaus_widget_set_label(g->output_channel, NULL, N_("destination")); in gui_init()
622 dt_bauhaus_combobox_add(g->output_channel, _("hue")); in gui_init()
623 dt_bauhaus_combobox_add(g->output_channel, _("saturation")); in gui_init()
624 dt_bauhaus_combobox_add(g->output_channel, _("lightness")); in gui_init()
625 dt_bauhaus_combobox_add(g->output_channel, _("red")); in gui_init()
626 dt_bauhaus_combobox_add(g->output_channel, _("green")); in gui_init()
627 dt_bauhaus_combobox_add(g->output_channel, _("blue")); in gui_init()
628 dt_bauhaus_combobox_add(g->output_channel, C_("channelmixer", "gray")); in gui_init()
[all …]
/dports/graphics/darktable/darktable-3.6.1/src/iop/
H A Dchannelmixer.c99 GtkWidget *output_channel; // Output channel member
620 g->output_channel = dt_bauhaus_combobox_new(self); in gui_init()
621 dt_bauhaus_widget_set_label(g->output_channel, NULL, N_("destination")); in gui_init()
622 dt_bauhaus_combobox_add(g->output_channel, _("hue")); in gui_init()
623 dt_bauhaus_combobox_add(g->output_channel, _("saturation")); in gui_init()
624 dt_bauhaus_combobox_add(g->output_channel, _("lightness")); in gui_init()
625 dt_bauhaus_combobox_add(g->output_channel, _("red")); in gui_init()
626 dt_bauhaus_combobox_add(g->output_channel, _("green")); in gui_init()
627 dt_bauhaus_combobox_add(g->output_channel, _("blue")); in gui_init()
628 dt_bauhaus_combobox_add(g->output_channel, C_("channelmixer", "gray")); in gui_init()
[all …]
/dports/lang/ocaml/ocaml-4.05.0/asmcomp/
H A Demitaux.ml18 let output_channel = ref stdout var
20 let emit_string s = output_string !output_channel s
22 let emit_int n = output_string !output_channel (string_of_int n)
24 let emit_char c = output_char !output_channel c
29 Printf.fprintf !output_channel fmt
38 output_char !output_channel c
40 Printf.fprintf !output_channel "%c%02x" esc (Char.code c)
50 then Printf.fprintf !output_channel "\\%o" (Char.code c)
51 else output_char !output_channel c
53 output_char !output_channel c;
[all …]
/dports/lang/ocaml-nox11/ocaml-4.05.0/asmcomp/
H A Demitaux.ml18 let output_channel = ref stdout var
20 let emit_string s = output_string !output_channel s
22 let emit_int n = output_string !output_channel (string_of_int n)
24 let emit_char c = output_char !output_channel c
29 Printf.fprintf !output_channel fmt
38 output_char !output_channel c
40 Printf.fprintf !output_channel "%c%02x" esc (Char.code c)
50 then Printf.fprintf !output_channel "\\%o" (Char.code c)
51 else output_char !output_channel c
53 output_char !output_channel c;
[all …]
/dports/print/lilypond/lilypond-2.22.1/lily/include/
H A Dpaper-book.hh68 void classic_output (SCM output_channel);
69 void output (SCM output_channel);
74 long output_aux (SCM output_channel,
/dports/audio/jack/jack2-eaedec353489f26617221d66f80fd2503953c663/linux/alsa/
H A Dhdsp.c93 int output_channel, int gain) in hdsp_set_mixer_gain() argument
102 output_channel = clamp_int(output_channel, 0, hdsp_num_output_channels); in hdsp_set_mixer_gain()
114 snd_ctl_elem_value_set_integer (ctl, 1, output_channel); in hdsp_set_mixer_gain()
/dports/multimedia/libmpeg3/libmpeg3-1.8/audio/
H A Dpcm.c64 float *output_channel = output[i]; in mpeg3audio_dopcm() local
80 *output_channel = (float)sample / 32767.0; in mpeg3audio_dopcm()
82 output_channel++; in mpeg3audio_dopcm()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/media/audio/
H A Dinterleaved_channel_mixer.cc37 for (const std::vector<float>& output_channel : matrix) { in InterleavedChannelMixer() local
38 transform_.insert(transform_.end(), output_channel.begin(), in InterleavedChannelMixer()
39 output_channel.end()); in InterleavedChannelMixer()
/dports/print/lilypond-devel/lilypond-2.23.5/lily/include/
H A Dpaper-book.hh77 void classic_output (SCM output_channel);
78 void output (SCM output_channel);
83 long output_aux (SCM output_channel,
/dports/audio/py-fmoo-audiotools/audiotools-3.0/docs/reference/wavpack/algorithms/
H A Ddecode_wavpack.pfl17 VAR output_channel "output channel";
29 output_channel[c + i] <- block_channel[i];
33 return output_channel;
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/
H A Dpcmconverter.c76 a_int* output = self->output_channel;
123 self->output_channel->del(self->output_channel);
134 self->output_channel = a_int_new();
691 a_int* output_channel =
695 output_channel->resize(output_channel, input_channel->len);
699 a_append(output_channel,
728 a_int* output_channel =
732 output_channel->resize(output_channel, input_channel->len);
734 a_append(output_channel, input_channel->_[i] << shift);
/dports/lang/scheme48/scheme48-1.9.2/c/unix/
H A Dsocket.c95 s48_ref_t output_channel; in dup_socket_channel() local
104 output_channel = s48_add_channel_2(call, s48_channel_status_output_2(call), in dup_socket_channel()
108 if (!s48_channel_p_2(call, output_channel)) in dup_socket_channel()
111 s48_raise_scheme_exception_2(call, s48_extract_long_2(call, output_channel), 0); in dup_socket_channel()
114 return output_channel; in dup_socket_channel()
148 s48_ref_t input_channel, output_channel; in s48_accept() local
/dports/audio/traverso/traverso-0.49.6/src/engine/
H A DAlsaDriver.h137 inline void copy_channel (channel_t input_channel, channel_t output_channel, nframes_t nsamples) in copy_channel() argument
139 channel_copy ( playback_addr[output_channel], in copy_channel()
142 playback_interleave_skip[output_channel], in copy_channel()
144 mark_channel_done (output_channel); in copy_channel()
/dports/print/lilypond-devel/lilypond-2.23.5/lily/
H A Dpaper-book.cc135 Paper_book::output_aux (SCM output_channel, in output_aux() argument
144 output_channel, in output_aux()
155 page_number += pbookpart->output_aux (output_channel, is_last_part, in output_aux()
218 Paper_book::output (SCM output_channel) in output() argument
234 if (!output_aux (output_channel, in output()
240 dump_header_fields (output_channel, false); in output()
241 dump_signatures (output_channel); in output()
253 output_stencils (output_channel, scm_reverse_x (stencils, SCM_EOL), in output()
260 = Lily::clipped_systems_stencils (output_channel, systems ()); in output()
271 std::string basename = ly_scm2string (output_channel); in output()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/webaudio/
H A Dchannel_merger_node.cc85 AudioChannel* output_channel = output.Bus()->Channel(i); in Process() local
95 output_channel->CopyFrom(input_channel); in Process()
99 output_channel->Zero(); in Process()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/webaudio/
H A Dchannel_merger_node.cc85 AudioChannel* output_channel = output.Bus()->Channel(i); in Process() local
95 output_channel->CopyFrom(input_channel); in Process()
99 output_channel->Zero(); in Process()
/dports/devel/py-orange-canvas-core/orange-canvas-core-0.1.20/orangecanvas/scheme/tests/
H A Dtest_nodes.py31 channel = node.output_channel(ch.name)
34 self.assertRaises(ValueError, node.output_channel, "%%&&&$$()[()[")
/dports/print/lilypond/lilypond-2.22.1/lily/
H A Dpaper-book.cc115 Paper_book::output_aux (SCM output_channel, in output_aux() argument
124 output_channel, in output_aux()
135 page_nb += pbookpart->output_aux (output_channel, in output_aux()
157 Paper_book::output (SCM output_channel) in output() argument
173 if (!output_aux (output_channel, in output()
196 output_channel, in output()
215 output_channel, in output()
234 output_channel, in output()

12345