| /OK3568_Linux_fs/u-boot/common/eeprom/ |
| H A D | eeprom_layout.c | 15 #define NO_LAYOUT_FIELDS "Unknown layout. Dumping raw data\n" 23 * eeprom_layout_detect() - detect layout based on the contents of the data. 26 * Returns: the detected layout version. 34 * __eeprom_layout_assign() - set the layout fields 35 * @layout: A pointer to an existing struct layout. 36 * @layout_version: The version number of the desired layout 38 __weak void __eeprom_layout_assign(struct eeprom_layout *layout, in __eeprom_layout_assign() argument 41 layout->fields = layout_unknown; in __eeprom_layout_assign() 42 layout->num_of_fields = ARRAY_SIZE(layout_unknown); in __eeprom_layout_assign() 44 void eeprom_layout_assign(struct eeprom_layout *layout, int layout_version) \ [all …]
|
| /OK3568_Linux_fs/buildroot/boot/grub2/ |
| H A D | 0135-util-mkimage-Use-grub_host_to_target32-instead-of-gr.patch | 26 o->code_size = grub_host_to_target32 (layout.exec_size); 27 - o->data_size = grub_cpu_to_le32 (reloc_addr - layout.exec_size 28 + o->data_size = grub_host_to_target32 (reloc_addr - layout.exec_size 30 - o->entry_addr = grub_cpu_to_le32 (layout.start_address); 32 + o->entry_addr = grub_host_to_target32 (layout.start_address); 35 o->data_base = grub_host_to_target32 (header_size + layout.exec_size); 40 o->code_size = grub_host_to_target32 (layout.exec_size); 41 - o->data_size = grub_cpu_to_le32 (reloc_addr - layout.exec_size 42 + o->data_size = grub_host_to_target32 (reloc_addr - layout.exec_size 44 - o->entry_addr = grub_cpu_to_le32 (layout.start_address); [all …]
|
| H A D | 0140-util-mkimage-Refactor-section-setup-to-use-a-helper.patch | 90 + ALIGN_UP (layout.reloc_size, GRUB_PE32_FILE_ALIGNMENT); 93 - pe_size = ALIGN_UP (reloc_addr + layout.reloc_size, 95 - pe_img = xmalloc (reloc_addr + layout.reloc_size); 99 - memcpy ((char *) pe_img + reloc_addr, layout.reloc_section, layout.reloc_size); 107 o32->data_base = grub_host_to_target32 (header_size + layout.exec_size); 132 PE_OHDR (o32, o64, code_size) = grub_host_to_target32 (layout.exec_size); 135 - text_section->virtual_size = grub_host_to_target32 (layout.exec_size); 137 - text_section->raw_data_size = grub_host_to_target32 (layout.exec_size); 144 + &vma, layout.exec_size, 146 + &raw_data, layout.exec_size, [all …]
|
| /OK3568_Linux_fs/kernel/drivers/clk/at91/ |
| H A D | clk-programmable.c | 18 #define PROG_PRES(layout, pckr) ((pckr >> layout->pres_shift) & layout->pres_mask) argument 26 const struct clk_programmable_layout *layout; member 35 const struct clk_programmable_layout *layout = prog->layout; in clk_programmable_recalc_rate() local 41 if (layout->is_pres_direct) in clk_programmable_recalc_rate() 42 rate = parent_rate / (PROG_PRES(layout, pckr) + 1); in clk_programmable_recalc_rate() 44 rate = parent_rate >> PROG_PRES(layout, pckr); in clk_programmable_recalc_rate() 53 const struct clk_programmable_layout *layout = prog->layout; in clk_programmable_determine_rate() local 67 if (layout->is_pres_direct) { in clk_programmable_determine_rate() 68 for (shift = 0; shift <= layout->pres_mask; shift++) { in clk_programmable_determine_rate() 74 for (shift = 0; shift < layout->pres_mask; shift++) { in clk_programmable_determine_rate() [all …]
|
| H A D | clk-pll.c | 20 #define PLL_MUL(reg, layout) (((reg) >> (layout)->mul_shift) & \ argument 21 (layout)->mul_mask) 23 #define PLL_MUL_MASK(layout) ((layout)->mul_mask) argument 24 #define PLL_MUL_MAX(layout) (PLL_MUL_MASK(layout) + 1) argument 41 const struct clk_pll_layout *layout; member 58 const struct clk_pll_layout *layout = pll->layout; in clk_pll_prepare() local 72 mul = PLL_MUL(pllr, layout); in clk_pll_prepare() 86 regmap_update_bits(regmap, offset, layout->pllr_mask, in clk_pll_prepare() 89 ((pll->mul & layout->mul_mask) << layout->mul_shift)); in clk_pll_prepare() 107 unsigned int mask = pll->layout->pllr_mask; in clk_pll_unprepare() [all …]
|
| H A D | clk-generated.c | 29 const struct clk_pcr_layout *layout; member 46 regmap_write(gck->regmap, gck->layout->offset, in clk_generated_enable() 47 (gck->id & gck->layout->pid_mask)); in clk_generated_enable() 48 regmap_update_bits(gck->regmap, gck->layout->offset, in clk_generated_enable() 49 AT91_PMC_PCR_GCKDIV_MASK | gck->layout->gckcss_mask | in clk_generated_enable() 50 gck->layout->cmd | AT91_PMC_PCR_GCKEN, in clk_generated_enable() 51 field_prep(gck->layout->gckcss_mask, gck->parent_id) | in clk_generated_enable() 52 gck->layout->cmd | in clk_generated_enable() 65 regmap_write(gck->regmap, gck->layout->offset, in clk_generated_disable() 66 (gck->id & gck->layout->pid_mask)); in clk_generated_disable() [all …]
|
| H A D | clk-peripheral.c | 39 const struct clk_pcr_layout *layout; member 167 regmap_write(periph->regmap, periph->layout->offset, in clk_sam9x5_peripheral_enable() 168 (periph->id & periph->layout->pid_mask)); in clk_sam9x5_peripheral_enable() 169 regmap_update_bits(periph->regmap, periph->layout->offset, in clk_sam9x5_peripheral_enable() 170 periph->layout->div_mask | periph->layout->cmd | in clk_sam9x5_peripheral_enable() 172 field_prep(periph->layout->div_mask, periph->div) | in clk_sam9x5_peripheral_enable() 173 periph->layout->cmd | in clk_sam9x5_peripheral_enable() 189 regmap_write(periph->regmap, periph->layout->offset, in clk_sam9x5_peripheral_disable() 190 (periph->id & periph->layout->pid_mask)); in clk_sam9x5_peripheral_disable() 191 regmap_update_bits(periph->regmap, periph->layout->offset, in clk_sam9x5_peripheral_disable() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/ |
| H A D | dpu_formats.c | 602 struct dpu_hw_fmt_layout *layout) in _dpu_format_get_plane_sizes_ubwc() argument 608 memset(layout, 0, sizeof(struct dpu_hw_fmt_layout)); in _dpu_format_get_plane_sizes_ubwc() 609 layout->format = fmt; in _dpu_format_get_plane_sizes_ubwc() 610 layout->width = width; in _dpu_format_get_plane_sizes_ubwc() 611 layout->height = height; in _dpu_format_get_plane_sizes_ubwc() 612 layout->num_planes = fmt->num_planes; in _dpu_format_get_plane_sizes_ubwc() 621 if (DPU_FORMAT_IS_YUV(layout->format)) { in _dpu_format_get_plane_sizes_ubwc() 626 layout->num_planes = 2; in _dpu_format_get_plane_sizes_ubwc() 627 layout->plane_pitch[0] = VENUS_Y_STRIDE(color, width); in _dpu_format_get_plane_sizes_ubwc() 629 layout->plane_size[0] = MSM_MEDIA_ALIGN(layout->plane_pitch[0] * in _dpu_format_get_plane_sizes_ubwc() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpio/ |
| H A D | gpio-creg-snps.c | 27 const struct creg_layout *layout; member 33 const struct creg_layout *layout = hcg->layout; in creg_gpio_set() local 38 value = val ? hcg->layout->on[offset] : hcg->layout->off[offset]; in creg_gpio_set() 40 reg_shift = layout->shift[offset]; in creg_gpio_set() 42 reg_shift += layout->bit_per_gpio[i] + layout->shift[i]; in creg_gpio_set() 46 reg &= ~(GENMASK(layout->bit_per_gpio[i] - 1, 0) << reg_shift); in creg_gpio_set() 62 const struct creg_layout *layout = hcg->layout; in creg_gpio_validate_pg() local 64 if (layout->bit_per_gpio[i] < 1 || layout->bit_per_gpio[i] > 8) in creg_gpio_validate_pg() 68 if (GENMASK(31, layout->bit_per_gpio[i]) & layout->on[i]) in creg_gpio_validate_pg() 72 if (GENMASK(31, layout->bit_per_gpio[i]) & layout->off[i]) in creg_gpio_validate_pg() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/ |
| H A D | symbol_layout.cpp | 1 #include <mbgl/layout/symbol_layout.hpp> 2 #include <mbgl/layout/merge_lines.hpp> 3 #include <mbgl/layout/clip_lines.hpp> 31 static bool has(const style::SymbolLayoutProperties::PossiblyEvaluated& layout) { in has() argument 32 return layout.get<Property>().match( in has() 51 textSize(layers.at(0)->as<RenderSymbolLayer>()->impl().layout.get<TextSize>()), in SymbolLayout() 52 iconSize(layers.at(0)->as<RenderSymbolLayer>()->impl().layout.get<IconSize>()) in SymbolLayout() 57 layout = leader.layout.evaluate(PropertyEvaluationParameters(zoom)); in SymbolLayout() 59 if (layout.get<IconRotationAlignment>() == AlignmentType::Auto) { in SymbolLayout() 60 if (layout.get<SymbolPlacement>() != SymbolPlacementType::Point) { in SymbolLayout() [all …]
|
| /OK3568_Linux_fs/kernel/sound/aoa/fabrics/ |
| H A D | layout.c | 3 * Apple Onboard Audio driver -- layout/machine id fabric 8 * layout-id or device-id property in the device tree. 19 MODULE_DESCRIPTION("Layout-ID fabric for snd-aoa"); 23 /* These are the connections the layout fabric 62 struct layout { struct 68 * so that our layout table doesn't need to be filled argument 72 * multiple layout-ids */ 77 MODULE_ALIAS("sound-layout-36"); argument 78 MODULE_ALIAS("sound-layout-41"); 79 MODULE_ALIAS("sound-layout-45"); [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/ |
| H A D | symbol_layer.cpp | 36 layout.stringify(writer); in stringifyLayout() 95 // Layout properties 102 return impl().layout.get<SymbolPlacement>(); in getSymbolPlacement() 109 impl_->layout.get<SymbolPlacement>() = value; in setSymbolPlacement() 118 return impl().layout.get<SymbolSpacing>(); in getSymbolSpacing() 125 impl_->layout.get<SymbolSpacing>() = value; in setSymbolSpacing() 134 return impl().layout.get<SymbolAvoidEdges>(); in getSymbolAvoidEdges() 141 impl_->layout.get<SymbolAvoidEdges>() = value; in setSymbolAvoidEdges() 150 return impl().layout.get<IconAllowOverlap>(); in getIconAllowOverlap() 157 impl_->layout.get<IconAllowOverlap>() = value; in setIconAllowOverlap() [all …]
|
| /OK3568_Linux_fs/kernel/android/ |
| H A D | abi_gki_aarch64.xml | 6945 <data-member access='public' layout-offset-in-bits='0'> 6948 <data-member access='public' layout-offset-in-bits='64'> 6954 <data-member access='public' layout-offset-in-bits='0'> 6957 <data-member access='public' layout-offset-in-bits='192'> 6962 <data-member access='public' layout-offset-in-bits='0'> 6965 <data-member access='public' layout-offset-in-bits='64'> 6992 <data-member access='public' layout-offset-in-bits='0'> 6995 <data-member access='public' layout-offset-in-bits='8'> 6998 <data-member access='public' layout-offset-in-bits='144'> 7001 <data-member access='public' layout-offset-in-bits='240'> [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places/forms/ |
| H A D | PlaceDetailsForm.ui.qml | 88 Layout.columnSpan: 2 89 Layout.fillWidth: true 104 Layout.fillWidth: true 111 Layout.columnSpan: 2 117 Layout.columnSpan: 2 125 Layout.fillWidth: true 126 Layout.columnSpan: 2 143 Layout.fillWidth: true 149 Layout.columnSpan: 2 158 Layout.columnSpan: 2 [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/screen/ |
| H A D | backlightwidget.ui | 16 <layout class="QGridLayout" name="gridLayout"> 37 <layout class="QHBoxLayout" name="horizontalLayout_6"> 39 <layout class="QVBoxLayout" name="verticalLayout"> 41 <layout class="QHBoxLayout" name="horizontalLayout"> 52 </layout> 55 <layout class="QHBoxLayout" name="horizontalLayout_2"> 67 <layout class="QVBoxLayout" name="verticalLayout_3"> 92 </layout> 108 <layout class="QVBoxLayout" name="verticalLayout_4"> 126 <layout class="QHBoxLayout" name="horizontalLayout_3"> [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/screen/screen/ |
| H A D | 0001-fix-for-multijob-build.patch | 28 @@ -298,7 +298,7 @@ search.o: layout.h viewport.h canvas.h search.c config.h screen.h os.h osdef.h a 30 tty.o: layout.h viewport.h canvas.h tty.c config.h screen.h os.h osdef.h ansi.h acls.h comm.h \ 32 -term.o: layout.h viewport.h canvas.h term.c term.h 33 +term.o: layout.h viewport.h canvas.h term.c term.h comm.h 34 window.o: layout.h viewport.h canvas.h window.c config.h screen.h os.h osdef.h ansi.h acls.h \ 36 utmp.o: layout.h viewport.h canvas.h utmp.c config.h screen.h os.h osdef.h ansi.h acls.h \ 37 @@ -324,7 +324,7 @@ canvas.o: layout.h viewport.h canvas.h canvas.c config.h screen.h os.h osdef.h a 40 comm.o: layout.h viewport.h canvas.h comm.c config.h acls.h comm.h 41 -kmapdef.o: layout.h viewport.h canvas.h kmapdef.c config.h 42 +kmapdef.o: layout.h viewport.h canvas.h kmapdef.c config.h comm.h [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/nfs/ |
| H A D | pnfs.rst | 17 Each nfs_inode may hold a pointer to a cache of these layout 18 segments in nfsi->layout, of type struct pnfs_layout_hdr. 26 the reference count, as the layout is kept around by the lseg that 33 layout driver type. The device ids are held in a RCU cache (struct 62 layout drivers 65 PNFS utilizes what is called layout drivers. The STD defines 4 basic 66 layout types: "files", "objects", "blocks", and "flexfiles". For each 67 of these types there is a layout-driver with a common function-vectors 69 different layout types. 71 Files-layout-driver code is in: fs/nfs/filelayout/.. directory [all …]
|
| /OK3568_Linux_fs/app/forlinx/forlinx_qt/wifi/ |
| H A D | mainwindow.ui | 17 <layout class="QGridLayout" name="gridLayout"> 19 <layout class="QHBoxLayout" name="horizontalLayout_5" stretch="2,1"> 24 <layout class="QVBoxLayout" name="verticalLayout"> 63 <layout class="QHBoxLayout" name="horizontalLayout"> 78 </layout> 81 <layout class="QHBoxLayout" name="horizontalLayout_2"> 96 </layout> 99 <layout class="QHBoxLayout" name="horizontalLayout_3"> 114 </layout> 117 <layout class="QHBoxLayout" name="horizontalLayout_4"> [all …]
|
| /OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/wifi/ |
| H A D | mainwindow.ui | 17 <layout class="QGridLayout" name="gridLayout"> 19 <layout class="QHBoxLayout" name="horizontalLayout_5" stretch="2,1"> 24 <layout class="QVBoxLayout" name="verticalLayout"> 63 <layout class="QHBoxLayout" name="horizontalLayout"> 78 </layout> 81 <layout class="QHBoxLayout" name="horizontalLayout_2"> 96 </layout> 99 <layout class="QHBoxLayout" name="horizontalLayout_3"> 114 </layout> 117 <layout class="QHBoxLayout" name="horizontalLayout_4"> [all …]
|
| /OK3568_Linux_fs/kernel/include/uapi/drm/ |
| H A D | drm_fourcc.h | 46 * format and data layout of the buffer, and should be the only way to describe 49 * Having multiple fourcc:modifier pairs which describe the same layout should 206 * then V), but the exact Linear layout is undefined. 349 * When adding a new token please document the layout with a code comment, 365 * In future cases where a generic layout is identified before merging with a 389 * Linear Layout 391 * Just plain linear layout. Note that this is different from no specifying any 401 * Intel X-tiling layout 403 * This is a tiled layout using 4Kb tiles (except on gen2 where the tiles 2Kb) 404 * in row-major layout. Within the tile bytes are laid out row-major, with [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/ |
| H A D | quads.cpp | 17 const SymbolLayoutProperties::Evaluated& layout, in getIconQuad() argument 36 if (layout.get<IconTextFit>() != IconTextFitType::None && shapedText) { in getIconQuad() 46 auto padT = layout.get<IconTextFitPadding>()[0]; in getIconQuad() 47 auto padR = layout.get<IconTextFitPadding>()[1]; in getIconQuad() 48 auto padB = layout.get<IconTextFitPadding>()[2]; in getIconQuad() 49 auto padL = layout.get<IconTextFitPadding>()[3]; in getIconQuad() 50 …auto offsetY = layout.get<IconTextFit>() == IconTextFitType::Width ? (textHeight - iconHeight) * 0… in getIconQuad() 51 …auto offsetX = layout.get<IconTextFit>() == IconTextFitType::Height ? (textWidth - iconWidth) * 0.… in getIconQuad() 52 …auto width = layout.get<IconTextFit>() == IconTextFitType::Width || layout.get<IconTextFit>() == I… in getIconQuad() 53 …auto height = layout.get<IconTextFit>() == IconTextFitType::Height || layout.get<IconTextFit>() ==… in getIconQuad() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/mtd/nand/raw/ |
| H A D | nand_bch.c | 24 * @ecclayout: private ecc layout for this BCH configuration 114 struct nand_ecclayout *layout = nand->ecc.layout; in nand_bch_init() local 152 if (!layout) { in nand_bch_init() 161 layout = &nbc->ecclayout; in nand_bch_init() 162 layout->eccbytes = eccsteps*eccbytes; in nand_bch_init() 165 if (layout->eccbytes+2 > mtd->oobsize) { in nand_bch_init() 172 for (i = 0; i < layout->eccbytes; i++) in nand_bch_init() 173 layout->eccpos[i] = mtd->oobsize-layout->eccbytes+i; in nand_bch_init() 175 layout->oobfree[0].offset = 2; in nand_bch_init() 176 layout->oobfree[0].length = mtd->oobsize-2-layout->eccbytes; in nand_bch_init() [all …]
|
| /OK3568_Linux_fs/external/xserver/test/ |
| H A D | test_xkb.c | 68 assert(rmlvo.layout); in xkb_get_rules_test() 73 assert(strcmp(rmlvo.layout, XKB_DFLT_LAYOUT) == 0); in xkb_get_rules_test() 90 XkbInitRules(&rmlvo, "test-rules", "test-model", "test-layout", in xkb_set_rules_test() 94 assert(rmlvo.layout); in xkb_set_rules_test() 104 assert(rmlvo.layout != rmlvo_new.layout); in xkb_set_rules_test() 110 assert(strcmp(rmlvo.layout, rmlvo_new.layout) == 0); in xkb_set_rules_test() 144 rmlvo_backup.layout = strdup(rmlvo.layout); in xkb_set_get_rules_test() 156 assert(strcmp(rmlvo.layout, rmlvo_backup.layout) == 0); in xkb_set_get_rules_test() 163 assert(strcmp(rmlvo.layout, rmlvo_backup.layout) == 0); in xkb_set_get_rules_test()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/atmel-hlcdc/ |
| H A D | atmel_hlcdc_plane.c | 289 if (!desc->layout.scaler_config) in atmel_hlcdc_plane_setup_scaler() 294 desc->layout.scaler_config, 0); in atmel_hlcdc_plane_setup_scaler() 298 if (desc->layout.phicoeffs.x) { in atmel_hlcdc_plane_setup_scaler() 312 desc->layout.phicoeffs.x); in atmel_hlcdc_plane_setup_scaler() 319 desc->layout.phicoeffs.y); in atmel_hlcdc_plane_setup_scaler() 325 atmel_hlcdc_layer_write_cfg(&plane->layer, desc->layout.scaler_config, in atmel_hlcdc_plane_setup_scaler() 337 if (desc->layout.size) in atmel_hlcdc_plane_update_pos_and_size() 338 atmel_hlcdc_layer_write_cfg(&plane->layer, desc->layout.size, in atmel_hlcdc_plane_update_pos_and_size() 342 if (desc->layout.memsize) in atmel_hlcdc_plane_update_pos_and_size() 344 desc->layout.memsize, in atmel_hlcdc_plane_update_pos_and_size() [all …]
|
| /OK3568_Linux_fs/app/forlinx/forlinx_qt/4g/ |
| H A D | mainwindow.ui | 17 <layout class="QGridLayout" name="gridLayout"> 19 <layout class="QHBoxLayout" name="horizontalLayout_2"> 21 <layout class="QVBoxLayout" name="verticalLayout"> 26 <layout class="QHBoxLayout" name="horizontalLayout"> 28 <layout class="QHBoxLayout" name="horizontalLayout_3"> 43 </layout> 45 </layout> 47 </layout> 50 <layout class="QVBoxLayout" name="verticalLayout_2"> 135 </layout> [all …]
|