Home
last modified time | relevance | path

Searched refs:NUM_CHANNELS (Results 1 – 12 of 12) sorted by relevance

/external/u-boot/arch/x86/include/asm/arch-quark/
Dmrc.h16 #define NUM_CHANNELS 1 /* number of channels */ macro
75 uint32_t rcvn[NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
76 uint32_t rdqs[NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
77 uint32_t wdqs[NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
78 uint32_t wdq[NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
79 uint32_t vref[NUM_CHANNELS][NUM_BYTE_LANES];
80 uint32_t wctl[NUM_CHANNELS][NUM_RANKS];
81 uint32_t wcmd[NUM_CHANNELS];
143 uint32_t channel_size[NUM_CHANNELS];
144 uint32_t column_bits[NUM_CHANNELS];
[all …]
/external/u-boot/drivers/pwm/
Dsandbox_pwm.c14 NUM_CHANNELS = 3, enumerator
25 struct sandbox_pwm_chan chan[NUM_CHANNELS];
34 if (channel >= NUM_CHANNELS) in sandbox_pwm_set_config()
49 if (channel >= NUM_CHANNELS) in sandbox_pwm_set_enable()
63 if (channel >= NUM_CHANNELS) in sandbox_pwm_set_invert()
/external/tensorflow/tensorflow/lite/experimental/microfrontend/python/kernel_tests/
Daudio_microfrontend_op_test.py29 NUM_CHANNELS = 2 variable
48 num_channels=NUM_CHANNELS,
67 num_channels=NUM_CHANNELS,
89 num_channels=NUM_CHANNELS,
109 num_channels=NUM_CHANNELS,
132 num_channels=NUM_CHANNELS,
152 num_channels=NUM_CHANNELS,
/external/webp/src/demux/
Danim_decode.c24 #define NUM_CHANNELS 4 macro
117 dec->info_.canvas_width * NUM_CHANNELS, dec->info_.canvas_height); in WebPAnimDecoderNewInternal()
120 dec->info_.canvas_width * NUM_CHANNELS, dec->info_.canvas_height); in WebPAnimDecoderNewInternal()
147 (uint64_t)canvas_width * canvas_height * NUM_CHANNELS * sizeof(*buf); in ZeroFillCanvas()
157 assert(width * NUM_CHANNELS <= buf_stride); in ZeroFillFrameRect()
158 buf += y_offset * buf_stride + x_offset * NUM_CHANNELS; in ZeroFillFrameRect()
160 memset(buf, 0, width * NUM_CHANNELS); in ZeroFillFrameRect()
168 const uint64_t size = (uint64_t)width * height * NUM_CHANNELS; in CopyCanvas()
350 (iter.y_offset * width + iter.x_offset) * NUM_CHANNELS; in WebPAnimDecoderGetNext()
353 buf->stride = NUM_CHANNELS * width; in WebPAnimDecoderGetNext()
[all …]
/external/u-boot/arch/x86/cpu/quark/
Dsmc.c279 for (ch = 0; ch < NUM_CHANNELS; ch++) { in ddrphy_init()
303 for (ch = 0; ch < NUM_CHANNELS; ch++) { in ddrphy_init()
934 for (ch = 0; ch < NUM_CHANNELS; ch++) { in ddrphy_init()
970 for (ch = 0; ch < NUM_CHANNELS; ch++) { in ddrphy_init()
1006 for (ch = 0; ch < NUM_CHANNELS; ch++) { in ddrphy_init()
1058 for (ch = 0; ch < NUM_CHANNELS; ch++) { in ddrphy_init()
1356 for (ch = 0; ch < NUM_CHANNELS; ch++) { in restore_timings()
1384 for (ch = 0; ch < NUM_CHANNELS; ch++) { in default_timings()
1411 uint32_t final_delay[NUM_CHANNELS][NUM_BYTE_LANES]; in rcvn_cal()
1445 for (ch = 0; ch < NUM_CHANNELS; ch++) { in rcvn_cal()
[all …]
Dmrc_util.c1358 for (channel = 0; channel < NUM_CHANNELS; channel++) { in clear_pointers()
1455 for (channel = 0; channel < NUM_CHANNELS; channel++) { in print_timings()
/external/tensorflow/tensorflow/core/kernels/
Dreverse_op.cc47 template <typename T, int NUM_CHANNELS>
52 NUM_CHANNELS > 0 ? NUM_CHANNELS : input.dim_size(2); in ReverseRows()
96 template <typename T, int NUM_CHANNELS>
102 ReverseRows<uint8, NUM_CHANNELS>(context, input, result); in DoHandleReverseCase()
105 ReverseRows<uint16, NUM_CHANNELS>(context, input, result); in DoHandleReverseCase()
108 ReverseRows<uint32, NUM_CHANNELS>(context, input, result); in DoHandleReverseCase()
111 ReverseRows<uint64, NUM_CHANNELS>(context, input, result); in DoHandleReverseCase()
114 ReverseRows<complex128, NUM_CHANNELS>(context, input, result); in DoHandleReverseCase()
122 template <typename T, int NUM_CHANNELS>
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup_line.c42 #define NUM_CHANNELS 4 macro
183 for (i = 0; i < NUM_CHANNELS; i++) in setup_line_coefficients()
188 for (i = 0; i < NUM_CHANNELS; i++) in setup_line_coefficients()
195 for (i = 0; i < NUM_CHANNELS; i++) in setup_line_coefficients()
201 for (i = 0; i < NUM_CHANNELS; i++) in setup_line_coefficients()
217 for (i = 0; i < NUM_CHANNELS; i++) in setup_line_coefficients()
Dlp_setup_point.c43 #define NUM_CHANNELS 4 macro
255 for (i = 0; i < NUM_CHANNELS; i++) { in setup_point_coefficients()
267 for (i = 0; i < NUM_CHANNELS; i++) { in setup_point_coefficients()
280 for (i = 0; i < NUM_CHANNELS; i++) in setup_point_coefficients()
Dlp_setup_tri.c45 #define NUM_CHANNELS 4 macro
90 unsigned input_array_sz = NUM_CHANNELS * (nr_inputs + 1) * sizeof(float); in lp_setup_alloc_triangle()
/external/u-boot/drivers/adc/
Dmeson-saradc.c161 #define NUM_CHANNELS 8 macro
623 if (channel < 0 || channel >= NUM_CHANNELS) { in meson_saradc_start_channel()
686 uc_pdata->channel_mask = GENMASK(NUM_CHANNELS - 1, 0); in meson_saradc_ofdata_to_platdata()
/external/tensorflow/tensorflow/tools/docker/notebooks/
D3_mnist_from_scratch.ipynb987 "NUM_CHANNELS = 1\n",
996 " shape=(BATCH_SIZE, IMAGE_SIZE, IMAGE_SIZE, NUM_CHANNELS))\n",
1008 " tf.truncated_normal([5, 5, NUM_CHANNELS, 32], # 5x5 filter, depth 32.\n",