Searched refs:ldata (Results 1 – 4 of 4) sorted by relevance
| /openbmc/openbmc/poky/scripts/lib/checklayer/ |
| H A D | __init__.py | 40 ldata = bb.data.init() 41 bb.parse.init_parser(ldata) 43 ldata = data.createCopy() 45 ldata.setVar('LAYERDIR', layer_path) 47 ldata = bb.parse.handle(lconf, ldata, include=True, baseconfig=True) 50 ldata.expandVarref('LAYERDIR') 52 collections = (ldata.getVar('BBFILE_COLLECTIONS') or '').split() 59 priority = ldata.getVar('BBFILE_PRIORITY_%s' % name) 60 pattern = ldata.getVar('BBFILE_PATTERN_%s' % name) 61 depends = ldata.getVar('LAYERDEPENDS_%s' % name) [all …]
|
| /openbmc/u-boot/drivers/pci/ |
| H A D | pci.c | 85 u32 val32, mask, ldata, shift; \ 91 ldata = (((unsigned long)val) & val_mask) << shift; \ 93 val32 = (val32 & ~mask) | ldata; \
|
| H A D | pci-uclass.c | 1139 ulong ldata, mask; in pci_conv_size_to_32() local 1154 ldata = (value & val_mask) << shift; in pci_conv_size_to_32() 1156 value = (old & ~mask) | ldata; in pci_conv_size_to_32()
|
| /openbmc/openbmc/poky/scripts/lib/recipetool/ |
| H A D | create_buildsys_python.py | 306 ldata = tinfoil.config_data.createCopy() 307 bb.parse.handle('classes-recipe/python3-dir.bbclass', ldata, True) 308 python_sitedir = ldata.getVar('PYTHON_SITEPACKAGES_DIR')
|