| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/agic/ |
| H A D | rk_aiq_algo_agic_v1.cpp | 61 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 D | rk_aiq_algo_agic_v2.cpp | 56 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/scripts/kconfig/lxdialog/ |
| H A D | menubox.c | 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() 148 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons() 149 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons() [all …]
|
| H A D | checklist.c | 18 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 33 wattrset(win, selected ? dlg.check_selected.atr in print_item() 38 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item() 40 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item() 42 if (selected) { in print_item() 88 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 93 print_button(dialog, "Select", y, x, selected == 0); in print_buttons() 94 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons() 96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
|
| H A D | yesno.c | 14 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 19 print_button(dialog, " Yes ", y, x, selected == 0); in print_buttons() 20 print_button(dialog, " No ", y, x + 13, selected == 1); in print_buttons() 22 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
|
| /OK3568_Linux_fs/buildroot/support/kconfig/lxdialog/ |
| H A D | menubox.c | 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() 161 print_button(win, gettext(" Exit "), y, x + 12, selected == 1); in print_buttons() 162 print_button(win, gettext(" Help "), y, x + 24, selected == 2); in print_buttons() [all …]
|
| H A D | checklist.c | 31 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 46 wattrset(win, selected ? dlg.check_selected.atr in print_item() 51 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item() 53 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item() 55 if (selected) { in print_item() 101 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 106 print_button(dialog, gettext("Select"), y, x, selected == 0); in print_buttons() 107 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons() 109 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
|
| H A D | yesno.c | 27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 32 print_button(dialog, gettext(" Yes "), y, x, selected == 0); in print_buttons() 33 print_button(dialog, gettext(" No "), y, x + 13, selected == 1); in print_buttons() 35 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/lxdialog/ |
| H A D | menubox.c | 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() 149 print_button(win, gettext(" Exit "), y, x + 12, selected == 1); in print_buttons() 150 print_button(win, gettext(" Help "), y, x + 24, selected == 2); in print_buttons() [all …]
|
| H A D | checklist.c | 19 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 34 wattrset(win, selected ? dlg.check_selected.atr in print_item() 39 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item() 41 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item() 43 if (selected) { in print_item() 89 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 94 print_button(dialog, gettext("Select"), y, x, selected == 0); in print_buttons() 95 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons() 97 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
|
| H A D | yesno.c | 15 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 20 print_button(dialog, gettext(" Yes "), y, x, selected == 0); in print_buttons() 21 print_button(dialog, gettext(" No "), y, x + 13, selected == 1); in print_buttons() 23 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-multimedia/libopus/ |
| H A D | libopus_1.3.1.bb | 43 #| {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/init/ |
| H A D | Kconfig.gki | 14 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/kernel/drivers/gpu/drm/tiny/ |
| H A D | Kconfig | 42 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/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/numeric/conversion/detail/ |
| H A D | is_subranged.hpp | 184 typedef typename for_::type selected ; typedef 186 typedef typename selected::type type ; 206 selected ; typedef 208 typedef typename selected::type selected2 ; 225 typedef typename mpl::if_<is_trivial,trivial_case,non_trivial_case>::type selected ; typedef 227 typedef typename selected::type type ;
|
| /OK3568_Linux_fs/u-boot/tools/buildman/ |
| H A D | control.py | 26 def GetActionSummary(is_summary, commits, selected, options): argument 40 len(selected)) 193 selected = boards.GetSelected() 194 if not len(selected): 234 options.threads = min(multiprocessing.cpu_count(), len(selected)) 237 len(selected) - 1) / len(selected)) 273 ShowActions(series, why_selected, selected, builder, options)
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | Kconfig | 111 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/poky/meta/conf/machine/include/arm/ |
| H A D | feature-arm-thumb.inc | 13 selected = d.getVar('ARM_INSTRUCTION_SET') 14 if selected == None: 17 if selected != used: 19 …RM_INSTRUCTION_SET to be '%s', but tune configuration overrides it to '%s'" % (pn, selected, used))
|
| /OK3568_Linux_fs/yocto/poky/documentation/sphinx-static/ |
| H A D | switchers.js.in | 76 …buf.push('<option value="' + version + '" selected="selected">' + vers_data["title"] + '</option>'… 93 buf.push('<option value="' + doctype + '" selected="selected">' + 100 buf.push('<option value="' + current_doctype + '" selected="selected">' + 150 var selected_version = $(this).children('option:selected').attr('value'); 188 var selected_doctype = $(this).children('option:selected').attr('value');
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/sun4i/ |
| H A D | Kconfig | 14 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/pci/controller/dwc/ |
| H A D | Kconfig | 34 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/kernel/drivers/iio/buffer/ |
| H A D | Kconfig | 10 Should be selected by any drivers that do in-kernel push 19 Should be selected by drivers that want to use the generic DMA buffer 31 Should be selected by drivers that want to use this functionality. 40 Should be selected by drivers that want to use the generic Hw consumer
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/fdisk/gptfdisk/ |
| H A D | 0001-gptcurses-correct-ncurses-6.3-errors.patch | 45 @@ -267,10 +267,10 @@ int GPTDataCurses::DisplayParts(int selected) { 56 pageNum = selected / numToShow; 58 @@ -284,7 +284,7 @@ int GPTDataCurses::DisplayParts(int selected) { 66 retval = selected;
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mips/cavium/ |
| H A D | bootbus.txt | 55 - cavium,wait-mode: Optional. If present, wait mode (WAITM) is selected. 57 - cavium,page-mode: Optional. If present, page mode (PAGEM) is selected. 62 - cavium,ale-mode: Optional. If present, ALE mode is selected. 64 - cavium,sam-mode: Optional. If present, SAM mode is selected. 66 - cavium,or-mode: Optional. If present, OR mode is selected.
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | get_maintainer.pl | 1550 my %selected; 1557 $selected{$count} = 1; 1582 $sel = "*" if ($selected{$count}); 1666 $selected{$nr - 1} = !$selected{$nr - 1}; 1671 $selected{$i} = $toggle; 1675 $selected{$i} = !$selected{$i}; 1680 $selected{$i} = !$selected{$i} 1685 $selected{$i} = !$selected{$i} 1690 $selected{$i} = !$selected{$i} 1695 $selected{$i} = !$selected{$i} [all …]
|