Home
last modified time | relevance | path

Searched refs:input_channel (Results 1 – 25 of 134) sorted by relevance

123456

/dports/lang/mit-scheme/mit-scheme-9.2/src/microcode/
H A Dnttty.c36 static Tchannel input_channel; variable
50 return (input_channel); in OS_tty_input_channel()
88 input_channel = (NT_open_handle (master_tty_window)); in NT_initialize_tty()
89 (CHANNEL_INTERNAL (input_channel)) = 1; in NT_initialize_tty()
90 output_channel = input_channel; in NT_initialize_tty()
H A Dos2tty.c33 static Tchannel input_channel; variable
40 input_channel = (OS2_make_channel (0, CHANNEL_READ)); in OS2_initialize_tty()
41 (CHANNEL_INTERNAL (input_channel)) = 1; in OS2_initialize_tty()
49 return (input_channel); in OS_tty_input_channel()
H A Duxtty.c45 static Tchannel input_channel; variable
59 return (input_channel); in OS_tty_input_channel()
217 input_channel = (OS_open_fd (STDIN_FILENO)); in UX_initialize_tty()
218 (CHANNEL_INTERNAL (input_channel)) = 1; in UX_initialize_tty()
/dports/misc/tvm/incubator-tvm-0.6.1/tests/python/relay/
H A Dtest_pass_mac_count.py50 input_channel = 3
60 dshape = (batch_size, input_channel, h, w)
61 weight = relay.var("weight", shape=(output_channel, input_channel, kh, kw))
72 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
139 input_channel = 3
149 dshape = (batch_size, input_channel, h, w)
150 weight = relay.var("weight", shape=(input_channel, output_channel, kh, kw))
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.py51 input_channel = 3
61 dshape = (batch_size, input_channel, h, w)
62 weight = relay.var("weight", shape=(output_channel, input_channel, kh, kw))
70 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
123 input_channel = 3
133 dshape = (batch_size, input_channel, h, w)
134 weight = relay.var("weight", shape=(input_channel, output_channel, kh, kw))
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.py50 input_channel = 3
60 dshape = (batch_size, input_channel, h, w)
61 weight = relay.var("weight", shape=(output_channel, input_channel, kh, kw))
72 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
139 input_channel = 3
149 dshape = (batch_size, input_channel, h, w)
150 weight = relay.var("weight", shape=(input_channel, output_channel, kh, kw))
162 expect_count = batch_size * input_channel * oh * ow * output_channel * kh * kw
/dports/misc/tvm/incubator-tvm-0.6.1/src/relay/pass/
H A Dmac_count.cc78 int64_t input_channel = static_cast<int64_t>(data_shape[C_ind].as<IntImm>()->value); in ConvMacCount() local
80 input_channel *= static_cast<int64_t>(data_shape[c_ind].as<IntImm>()->value); in ConvMacCount()
89 CHECK_EQ(input_channel % conv_2d_attr->groups, 0) in ConvMacCount()
91 count *= input_channel/conv_2d_attr->groups; in ConvMacCount()
111 int64_t input_channel = static_cast<int64_t>(data_shape[C_ind].as<IntImm>()->value); in Conv2dTransposeMacCount() local
113 input_channel *= static_cast<int64_t>(data_shape[c_ind].as<IntImm>()->value); in Conv2dTransposeMacCount()
122 CHECK_EQ(input_channel % conv_2d_transpose_attr->groups, 0) in Conv2dTransposeMacCount()
124 count *= input_channel/conv_2d_transpose_attr->groups; in Conv2dTransposeMacCount()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/relay/analysis/
H A Dmac_count.cc76 int64_t input_channel = static_cast<int64_t>(data_shape[C_ind].as<IntImmNode>()->value); in ConvMacCount() local
77 if (c_ind != -1) input_channel *= static_cast<int64_t>(data_shape[c_ind].as<IntImmNode>()->value); in ConvMacCount()
85 CHECK_EQ(input_channel % conv_2d_attr->groups, 0) in ConvMacCount()
87 count *= input_channel / conv_2d_attr->groups; in ConvMacCount()
106 int64_t input_channel = static_cast<int64_t>(data_shape[C_ind].as<IntImmNode>()->value); in Conv2dTransposeMacCount() local
107 if (c_ind != -1) input_channel *= static_cast<int64_t>(data_shape[c_ind].as<IntImmNode>()->value); in Conv2dTransposeMacCount()
116 CHECK_EQ(input_channel % conv_2d_transpose_attr->groups, 0) in Conv2dTransposeMacCount()
118 count *= input_channel / conv_2d_transpose_attr->groups; in Conv2dTransposeMacCount()
/dports/misc/py-tvm/incubator-tvm-0.6.1/src/relay/pass/
H A Dmac_count.cc78 int64_t input_channel = static_cast<int64_t>(data_shape[C_ind].as<IntImm>()->value); in ConvMacCount() local
80 input_channel *= static_cast<int64_t>(data_shape[c_ind].as<IntImm>()->value); in ConvMacCount()
89 CHECK_EQ(input_channel % conv_2d_attr->groups, 0) in ConvMacCount()
91 count *= input_channel/conv_2d_attr->groups; in ConvMacCount()
111 int64_t input_channel = static_cast<int64_t>(data_shape[C_ind].as<IntImm>()->value); in Conv2dTransposeMacCount() local
113 input_channel *= static_cast<int64_t>(data_shape[c_ind].as<IntImm>()->value); in Conv2dTransposeMacCount()
122 CHECK_EQ(input_channel % conv_2d_transpose_attr->groups, 0) in Conv2dTransposeMacCount()
124 count *= input_channel/conv_2d_transpose_attr->groups; in Conv2dTransposeMacCount()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/media/audio/
H A Dcast_audio_resampler_impl.cc53 const float* input_channel = output_buffer_->channel(c); in ResampleOneChunk() local
54 output_channels[c].insert(output_channels[c].end(), input_channel, in ResampleOneChunk()
55 input_channel + output_frames); in ResampleOneChunk()
79 const float* input_channel = current_input_ + c * current_num_frames_; in CopyCurrentInputTo() local
80 std::copy_n(input_channel + current_frame_offset_, frames_to_copy, in CopyCurrentInputTo()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc69 std::unique_ptr<int16_t[]> input_channel( in Process() local
74 input_channel.get()); in Process()
78 16384, SignalScaling(input_channel.get(), input_length_per_channel, in Process()
85 Downsample(input_channel.get(), input_length_per_channel, in Process()
117 input_channel.get(), interpolation_length, mute_factor, increment)); in Process()
118 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
126 &input_channel[interpolation_length], in Process()
137 input_channel.get(), interpolation_length, in Process()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/audio_coding/neteq/
H A Dmerge.cc72 std::unique_ptr<int16_t[]> input_channel( in Process() local
77 input_channel.get()); in Process()
81 16384, SignalScaling(input_channel.get(), input_length_per_channel, in Process()
88 Downsample(input_channel.get(), input_length_per_channel, in Process()
120 input_channel.get(), interpolation_length, mute_factor, increment)); in Process()
121 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
129 &input_channel[interpolation_length], in Process()
140 input_channel.get(), interpolation_length, in Process()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc69 std::unique_ptr<int16_t[]> input_channel( in Process() local
74 input_channel.get()); in Process()
78 16384, SignalScaling(input_channel.get(), input_length_per_channel, in Process()
85 Downsample(input_channel.get(), input_length_per_channel, in Process()
117 input_channel.get(), interpolation_length, mute_factor, increment)); in Process()
118 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
126 &input_channel[interpolation_length], in Process()
137 input_channel.get(), interpolation_length, in Process()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/audio_coding/neteq/
H A Dmerge.cc69 std::unique_ptr<int16_t[]> input_channel( in Process() local
74 input_channel.get()); in Process()
78 16384, SignalScaling(input_channel.get(), input_length_per_channel, in Process()
85 Downsample(input_channel.get(), input_length_per_channel, in Process()
117 input_channel.get(), interpolation_length, mute_factor, increment)); in Process()
118 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
126 &input_channel[interpolation_length], in Process()
137 input_channel.get(), interpolation_length, in Process()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc68 std::unique_ptr<int16_t[]> input_channel( in Process() local
73 input_length_per_channel, 0, input_channel.get()); in Process()
77 input_channel.get(), input_length_per_channel, expanded_channel.get()); in Process()
95 Downsample(input_channel.get(), input_length_per_channel, in Process()
118 static_cast<int16_t>(DspHelper::RampSignal(input_channel.get(), in Process()
122 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
130 &input_channel[interpolation_length], in Process()
141 input_channel.get(), interpolation_length, in Process()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc68 std::unique_ptr<int16_t[]> input_channel( in Process() local
73 input_length_per_channel, 0, input_channel.get()); in Process()
77 input_channel.get(), input_length_per_channel, expanded_channel.get()); in Process()
95 Downsample(input_channel.get(), input_length_per_channel, in Process()
118 static_cast<int16_t>(DspHelper::RampSignal(input_channel.get(), in Process()
122 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
130 &input_channel[interpolation_length], in Process()
141 input_channel.get(), interpolation_length, in Process()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc66 std::unique_ptr<int16_t[]> input_channel( in Process() local
71 input_length_per_channel, 0, input_channel.get()); in Process()
75 input_channel.get(), input_length_per_channel, expanded_channel.get()); in Process()
93 Downsample(input_channel.get(), input_length_per_channel, in Process()
116 static_cast<int16_t>(DspHelper::RampSignal(input_channel.get(), in Process()
120 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
128 &input_channel[interpolation_length], in Process()
139 input_channel.get(), interpolation_length, in Process()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc68 std::unique_ptr<int16_t[]> input_channel( in Process() local
73 input_length_per_channel, 0, input_channel.get()); in Process()
77 input_channel.get(), input_length_per_channel, expanded_channel.get()); in Process()
95 Downsample(input_channel.get(), input_length_per_channel, in Process()
118 static_cast<int16_t>(DspHelper::RampSignal(input_channel.get(), in Process()
122 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
130 &input_channel[interpolation_length], in Process()
141 input_channel.get(), interpolation_length, in Process()
/dports/audio/jack/jack2-eaedec353489f26617221d66f80fd2503953c663/linux/alsa/
H A Dhdsp.c92 static int hdsp_set_mixer_gain(jack_hardware_t *hw, int input_channel, in hdsp_set_mixer_gain() argument
101 input_channel = clamp_int(input_channel, 0, hdsp_num_input_channels); in hdsp_set_mixer_gain()
113 snd_ctl_elem_value_set_integer (ctl, 0, input_channel); in hdsp_set_mixer_gain()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc50 int16_t* input_channel = &input_vector[channel][0];
54 input_channel, static_cast<int>(input_length_per_channel),
73 Downsample(input_channel, static_cast<int>(input_length_per_channel),
97 *external_mute_factor = DspHelper::RampSignal(input_channel,
101 DspHelper::UnmuteSignal(&input_channel[interpolation_length],
109 &input_channel[interpolation_length],
119 input_channel, interpolation_length,
/dports/multimedia/mswebrtc/mswebrtc-1.1.1/webrtc/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc64 int16_t* input_channel = &input_vector[channel][0]; in Process() local
68 input_channel, input_length_per_channel, expanded_channel, in Process()
87 Downsample(input_channel, input_length_per_channel, expanded_channel, in Process()
112 static_cast<int16_t>(DspHelper::RampSignal(input_channel, in Process()
116 DspHelper::UnmuteSignal(&input_channel[interpolation_length], in Process()
124 &input_channel[interpolation_length], in Process()
135 input_channel, interpolation_length, in Process()
/dports/math/py-keras/Keras-2.4.3/tests/keras/layers/
H A Dconvolutional_recurrent_test.py15 input_channel = 2 variable
33 input_channel,
38 input_channel)
77 input_channel)
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DSponsoredMessageManager.cpp43 auto input_channel = td_->contacts_manager_->get_input_channel(channel_id); in send() local
44 if (input_channel == nullptr) { in send()
47 …net_query_creator().create(telegram_api::channels_getSponsoredMessages(std::move(input_channel)))); in send()
75 auto input_channel = td_->contacts_manager_->get_input_channel(channel_id); in send() local
76 if (input_channel == nullptr) { in send()
80 … telegram_api::channels_viewSponsoredMessage(std::move(input_channel), BufferSlice(message_id)))); in send()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/filters/
H A Dwsola_internals.cc118 const float* input_channel = input->channel(k); in MultiChannelMovingBlockEnergies() local
124 energy[k] += input_channel[m] * input_channel[m]; in MultiChannelMovingBlockEnergies()
127 const float* slide_out = input_channel; in MultiChannelMovingBlockEnergies()
128 const float* slide_in = input_channel + frames_per_block; in MultiChannelMovingBlockEnergies()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/filters/
H A Dwsola_internals.cc117 const float* input_channel = input->channel(k); in MultiChannelMovingBlockEnergies() local
123 energy[k] += input_channel[m] * input_channel[m]; in MultiChannelMovingBlockEnergies()
126 const float* slide_out = input_channel; in MultiChannelMovingBlockEnergies()
127 const float* slide_in = input_channel + frames_per_block; in MultiChannelMovingBlockEnergies()

123456