Home
last modified time | relevance | path

Searched full:selected (Results 1 – 25 of 3478) sorted by relevance

12345678910>>...140

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/agic/
H A Drk_aiq_algo_agic_v1.cpp61 void GicV1SelectParam(rkaiq_gic_v1_param_selected_t* selected, int ratio, int index,
67 selected->iso = lo->iso;
68 selected->bypass = lo->bypass;
69 selected->gr_ratio = lo->gr_ratio;
70 selected->min_busy_thre = INTERPOLATION(ratio, hi->min_busy_thre, lo->min_busy_thre);
71 selected->min_grad_thr1 = INTERPOLATION(ratio, hi->min_grad_thr1, lo->min_grad_thr1);
72 selected->min_grad_thr2 = INTERPOLATION(ratio, hi->min_grad_thr2, lo->min_grad_thr2);
73 selected->k_grad1 = INTERPOLATION(ratio, hi->k_grad1, lo->k_grad1);
74 selected->k_grad2 = INTERPOLATION(ratio, hi->k_grad2, lo->k_grad1);
75 selected->gb_thre = INTERPOLATION(ratio, hi->gb_thre, lo->gb_thre);
[all …]
H A Drk_aiq_algo_agic_v2.cpp56 void GicV2SelectParam(rkaiq_gic_v2_param_selected_t* selected, int ratio, int index,
62 selected->iso = lo->iso;
63 selected->bypass = lo->bypass;
64 selected->gr_ratio = lo->gr_ratio;
65 selected->min_busy_thre = INTERPOLATION(ratio, hi->min_busy_thre, lo->min_busy_thre);
66 selected->min_grad_thr1 = INTERPOLATION(ratio, hi->min_grad_thr1, lo->min_grad_thr1);
67 selected->min_grad_thr2 = INTERPOLATION(ratio, hi->min_grad_thr2, lo->min_grad_thr2);
68 selected->k_grad1 = INTERPOLATION(ratio, hi->k_grad1, lo->k_grad1);
69 selected->k_grad2 = INTERPOLATION(ratio, hi->k_grad2, lo->k_grad2);
70 selected->gb_thre = INTERPOLATION(ratio, hi->gb_thre, lo->gb_thre);
[all …]
/OK3568_Linux_fs/kernel/init/
H A DKconfig.gki14 These are normally selected implicitly when including a
23 These are normally selected implicitly when a module
31 These are normally selected implicitly when a module
43 These are normally selected implicitly when a module
56 These are normally selected implicitly when a module
64 These are normally selected implicitly when a module
73 These are normally selected implicitly when a module
84 These are normally selected implicitly when a module
101 These are normally selected implicitly when a module
109 These are normally selected implicitly when a module
[all …]
/OK3568_Linux_fs/u-boot/drivers/serial/
H A Dserial.c325 * the STDIO "serial" device is selected as stdin/stdout/stderr,
360 * get_current() - Return pointer to currently selected serial port
362 * This function returns a pointer to currently selected serial port.
363 * The currently selected serial port is altered by serial_assign()
371 * Returns pointer to the currently selected serial port on success,
399 * serial_init() - Initialize currently selected serial port
401 * This function initializes the currently selected serial port. This
404 * to determine which port is selected.
415 * serial_setbrg() - Configure baud-rate of currently selected serial port
417 * This function configures the baud-rate of the currently selected
[all …]
/OK3568_Linux_fs/kernel/net/mac80211/
H A DKconfig111 selected some functions are marked "noinline" to allow
127 many debugging messages. It should not be selected
139 should not be selected on production systems as some
160 It should not be selected on production systems as some
171 be selected on production systems as those messages
182 be selected on production systems as those messages
194 It should not be selected on production systems as those
207 It should not be selected on production systems as those
220 It should not be selected on production systems as those
233 It should not be selected on production systems as those
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-multimedia/libopus/
H A Dlibopus_1.3.1.bb43 #| {standard input}:389: Error: selected processor does not support Thumb mode `smull r5,r7,r1,r4'
44 #| {standard input}:418: Error: selected processor does not support Thumb mode `smull r5,r6,r4,r1'
45 #| {standard input}:448: Error: selected processor does not support Thumb mode `smull r4,r5,r1,r0'
46 #| {standard input}:474: Error: selected processor does not support Thumb mode `smull r0,r4,r8,r1'
47 #| {standard input}:510: Error: selected processor does not support Thumb mode `smull fp,r0,r10,r1'
48 #| {standard input}:553: Error: selected processor does not support Thumb mode `smull fp,r1,r10,r3'
49 #| {standard input}:741: Error: selected processor does not support Thumb mode `smull r3,r0,r6,r10'
50 #| {standard input}:761: Error: selected processor does not support Thumb mode `smull fp,r2,r3,r9'
51 #| {standard input}:773: Error: selected processor does not support Thumb mode `smull fp,r3,r5,r8'
/OK3568_Linux_fs/kernel/scripts/kconfig/lxdialog/
H A Dmenubox.c21 * *) Formerly if I selected something my scrolling would be broken because
36 * lxdialog, it sets the scrolling so that the selected item is in the
54 int selected, int hotkey) in do_print_item() argument
75 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item()
78 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item()
82 if (selected) { in do_print_item()
89 #define print_item(index, choice, selected) \ argument
92 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
142 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument
147 print_button(win, "Select", y, x, selected == 0); in print_buttons()
[all …]
H A Dinputbox.c16 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
21 print_button(dialog, " Ok ", y, x, selected == 0); in print_buttons()
22 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
24 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
109 if (button == -1) { /* Input box selected */ in dialog_inputbox()
234 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
238 button = -1; /* Indicates input box is selected */ in dialog_inputbox()
244 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
254 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
258 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
[all …]
/OK3568_Linux_fs/u-boot/scripts/kconfig/lxdialog/
H A Dmenubox.c22 * *) Formerly if I selected something my scrolling would be broken because
37 * lxdialog, it sets the scrolling so that the selected item is in the
55 int selected, int hotkey) in do_print_item() argument
76 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item()
79 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item()
83 if (selected) { in do_print_item()
90 #define print_item(index, choice, selected) \ argument
93 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
143 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument
148 print_button(win, gettext("Select"), y, x, selected == 0); in print_buttons()
[all …]
H A Dinputbox.c17 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
22 print_button(dialog, gettext(" Ok "), y, x, selected == 0); in print_buttons()
23 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons()
25 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
110 if (button == -1) { /* Input box selected */ in dialog_inputbox()
234 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
238 button = -1; /* Indicates input box is selected */ in dialog_inputbox()
244 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
254 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
258 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
[all …]
/OK3568_Linux_fs/buildroot/support/kconfig/lxdialog/
H A Dmenubox.c34 * *) Formerly if I selected something my scrolling would be broken because
49 * lxdialog, it sets the scrolling so that the selected item is in the
67 int selected, int hotkey) in do_print_item() argument
88 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item()
91 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item()
95 if (selected) { in do_print_item()
102 #define print_item(index, choice, selected) \ argument
105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
155 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument
160 print_button(win, gettext("Select"), y, x, selected == 0); in print_buttons()
[all …]
H A Dinputbox.c29 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
34 print_button(dialog, gettext(" Ok "), y, x, selected == 0); in print_buttons()
35 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons()
37 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
122 if (button == -1) { /* Input box selected */ in dialog_inputbox()
246 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
250 button = -1; /* Indicates input box is selected */ in dialog_inputbox()
256 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
266 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
270 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/tiny/
H A DKconfig42 If M is selected the module will be called hx8357d.
54 If M is selected the module will be called ili9225.
67 If M is selected the module will be called ili9341.
81 If M is selected the module will be called ili9486.
92 If M is selected the module will be called mi0283qt.
106 If M is selected the module will be called repaper.
118 If M is selected the module will be called st7586.
133 If M is selected the module will be called st7735r.
/OK3568_Linux_fs/kernel/drivers/pci/controller/dwc/
H A DKconfig34 host-specific features PCI_DRA7XX_HOST must be selected and in order
35 to enable device-specific features PCI_DRA7XX_EP must be selected.
49 host-specific features PCI_DRA7XX_HOST must be selected and in order
50 to enable device-specific features PCI_DRA7XX_EP must be selected.
66 host-specific features PCIE_DW_PLAT_HOST must be selected and in
68 selected.
81 host-specific features PCIE_DW_PLAT_HOST must be selected and in
83 selected.
295 enable host-specific features PCIE_TEGRA194_HOST must be selected and
297 selected. This uses the DesignWare core.
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/cpu/arm926ejs/spear/
H A Dspear600.c124 * return true if the particular booting option is selected
138 /* Check whether SNOR boot is selected */ in snor_boot_selected()
160 /* Check whether NAND boot is selected */ in nand_boot_selected()
175 /* Parallel NOR boot is not selected in any SPEAr600 revision */ in pnor_boot_selected()
184 /* Check whether USB boot is selected */ in usb_boot_selected()
194 /* TFTP boot is not selected in any SPEAr600 revision */ in tftp_boot_selected()
200 /* UART boot is not selected in any SPEAr600 revision */ in uart_boot_selected()
206 /* SPI boot is not selected in any SPEAr600 revision */ in spi_boot_selected()
212 /* I2C boot is not selected in any SPEAr600 revision */ in i2c_boot_selected()
/OK3568_Linux_fs/u-boot/include/
H A Dadc.h14 /* The last possible selected channel with 32-bit mask */
105 * for the channel numbers selected by the bit mask.
111 * @channel_mask: bit mask of selected analog channels
128 * @channel: selected analog channel number
129 * @data: returned pointer to selected channel's output data
136 * channels_data() - get conversion data for the selected channels.
146 * @channel_mask: bit mask of selected analog channels
148 * selected by the given mask
196 * adc_channels_data() - get conversion data for the channels selected by mask
239 * adc_channels_single_shot() - get ADC conversion output data for the selected
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dvirtio_mmio.h80 /* Maximum size of the currently selected queue - Read Only */
83 /* Queue size for the currently selected queue - Write Only */
89 /* Used Ring alignment for the currently selected queue - Write Only */
92 /* Guest's PFN for the currently selected queue - Read Write */
98 /* Ready bit for the currently selected queue - Read Write */
113 /* Selected queue's Descriptor Table address, 64 bits in two halves */
117 /* Selected queue's Available Ring address, 64 bits in two halves */
121 /* Selected queue's Used Ring address, 64 bits in two halves */
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dvirtio_mmio.h80 /* Maximum size of the currently selected queue - Read Only */
83 /* Queue size for the currently selected queue - Write Only */
89 /* Used Ring alignment for the currently selected queue - Write Only */
92 /* Guest's PFN for the currently selected queue - Read Write */
98 /* Ready bit for the currently selected queue - Read Write */
113 /* Selected queue's Descriptor Table address, 64 bits in two halves */
117 /* Selected queue's Available Ring address, 64 bits in two halves */
121 /* Selected queue's Used Ring address, 64 bits in two halves */
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dboard.py166 """Return a dictionary containing the selected boards
169 List of Board objects that are marked selected
178 """Return a list of selected boards
181 List of Board objects that are marked selected
186 """Return a list of selected boards
189 List of board names that are marked selected
208 a board to be selected.
243 """Mark boards selected based on args
248 empty, all boards are selected.
252 Dictionary which holds the list of boards which were selected
H A Dcontrol.py26 def GetActionSummary(is_summary, commits, selected, options): argument
40 len(selected))
55 boards_selected: Dict of selected boards, key is target name,
193 selected = boards.GetSelected()
194 if not len(selected):
234 options.threads = min(multiprocessing.cpu_count(), len(selected))
237 len(selected) - 1) / len(selected))
247 # Create a new builder with the selected options.
273 ShowActions(series, why_selected, selected, builder, options)
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dvirtio_mmio.h80 /* Maximum size of the currently selected queue - Read Only */
83 /* Queue size for the currently selected queue - Write Only */
89 /* Used Ring alignment for the currently selected queue - Write Only */
92 /* Guest's PFN for the currently selected queue - Read Write */
98 /* Ready bit for the currently selected queue - Read Write */
113 /* Selected queue's Descriptor Table address, 64 bits in two halves */
117 /* Selected queue's Available Ring address, 64 bits in two halves */
121 /* Selected queue's Used Ring address, 64 bits in two halves */
/OK3568_Linux_fs/yocto/poky/bitbake/doc/sphinx-static/
H A Dswitchers.js67 buf.push('<option value="' + version + '" selected="selected">' + title + '</option>');
72 …buf.push('<option value="' + current_version + '" selected="selected">' + current_version + '</opt…
87 buf.push('<option value="' + doctype + '" selected="selected">' +
94 buf.push('<option value="' + current_doctype + '" selected="selected">' +
144 var selected_version = $(this).children('option:selected').attr('value');
176 var selected_doctype = $(this).children('option:selected').attr('value');
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/icelake/
H A Dmemory.json293 …"PublicDescription": "Counts randomly selected loads when the latency from first dispatch to compl…
302 …"BriefDescription": "Counts randomly selected loads when the latency from first dispatch to comple…
308 …"PublicDescription": "Counts randomly selected loads when the latency from first dispatch to compl…
317 …"BriefDescription": "Counts randomly selected loads when the latency from first dispatch to comple…
323 …"PublicDescription": "Counts randomly selected loads when the latency from first dispatch to compl…
332 …"BriefDescription": "Counts randomly selected loads when the latency from first dispatch to comple…
338 …"PublicDescription": "Counts randomly selected loads when the latency from first dispatch to compl…
347 …"BriefDescription": "Counts randomly selected loads when the latency from first dispatch to comple…
353 …"PublicDescription": "Counts randomly selected loads when the latency from first dispatch to compl…
362 …"BriefDescription": "Counts randomly selected loads when the latency from first dispatch to comple…
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/sun4i/
H A DKconfig14 Display Engine. If M is selected the module will be called
42 selected the module will be called sun4i-backend.
53 MIPI-DSI support. If M is selected the module will be called
63 selected the module will be called sun8i_dw_hdmi.
72 selected the module will be called sun8i-mixer.
/OK3568_Linux_fs/kernel/drivers/gpu/drm/
H A DKconfig277 If M is selected, the module will be called radeon.
296 If M is selected, the module will be called amdgpu.
310 If M is selected the module will be called vgem.
323 If M is selected the module will be called vkms.
442 graphics card. If M is selected, the module will be called tdfx.
450 is selected, the module will be called r128. AGP support for
459 selected, the module will be called i810. AGP support is required
468 card. If M is selected, the module will be called mga. AGP
477 chipset. If M is selected the module will be called sis. AGP
485 chipset. If M is selected the module will be called via.
[all …]

12345678910>>...140