| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | buildhistory_analysis.py | 60 def __init__(self, path, fieldname, oldvalue, newvalue, monitored): argument 64 self.newvalue = newvalue 117 (depvera, depverb) = compare_pkg_lists(self.oldvalue, self.newvalue) 123 bitems = shlex.split(self.newvalue) 127 bitems = self.newvalue.split() 134 depverb = bb.utils.explode_dep_versions2(self.newvalue, sort=False) 162 bval = int(self.newvalue or 0) 167 …efault} ({}{:.0f}%)'.format(self.fieldname, self.oldvalue or "''", self.newvalue or "''", '+' if p… 169 … to {colour_add}{}{colour_default}'.format(self.fieldname, self.oldvalue, self.newvalue, **colours) 170 if self.fieldname == 'PKG' and '[default]' in self.newvalue: [all …]
|
| H A D | recipeutils.py | 375 newvalue = value.replace(event['detail'], '') 376 … if newvalue == value and os.path.abspath(event['file']) == fn and event['op'].startswith(':'): 379 value = newvalue 858 newvalue = splitval 859 if len(newvalue) == 1: 862 newvalue = ' ' + newvalue[0] 864 newvalue = newvalue[0] 865 if not newvalue and (op in ['+=', '.='] or ':append' in varname): 867 newvalue = None 872 return (newvalue, None, indent, True)
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-s3c/ |
| H A D | s3c64xx.c | 282 u32 newvalue = 0; in s3c_irq_eint_set_type() local 299 newvalue = S3C2410_EXTINT_RISEEDGE; in s3c_irq_eint_set_type() 303 newvalue = S3C2410_EXTINT_FALLEDGE; in s3c_irq_eint_set_type() 307 newvalue = S3C2410_EXTINT_BOTHEDGE; in s3c_irq_eint_set_type() 311 newvalue = S3C2410_EXTINT_LOWLEV; in s3c_irq_eint_set_type() 315 newvalue = S3C2410_EXTINT_HILEV; in s3c_irq_eint_set_type() 331 ctrl |= newvalue << shift; in s3c_irq_eint_set_type()
|
| H A D | irq-s3c24xx.c | 164 unsigned long newvalue = 0, value; in s3c_irqext_type_set() local 179 newvalue = S3C2410_EXTINT_RISEEDGE; in s3c_irqext_type_set() 183 newvalue = S3C2410_EXTINT_FALLEDGE; in s3c_irqext_type_set() 187 newvalue = S3C2410_EXTINT_BOTHEDGE; in s3c_irqext_type_set() 191 newvalue = S3C2410_EXTINT_LOWLEV; in s3c_irqext_type_set() 195 newvalue = S3C2410_EXTINT_HILEV; in s3c_irqext_type_set() 204 value = (value & ~(7 << extint_offset)) | (newvalue << extint_offset); in s3c_irqext_type_set()
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | nvedit.c | 303 char *oldvalue, *newvalue; in env_append() local 323 newvalue = calloc(1, len + 2); in env_append() 324 if (!newvalue) { in env_append() 329 *newvalue = '\0'; in env_append() 332 strcpy(newvalue, oldvalue); in env_append() 333 strcat(newvalue, " "); in env_append() 337 strcat(newvalue, varvalue); in env_append() 339 debug("%s: newvalue: %s\n", __func__, newvalue); in env_append() 340 env_set(varname, newvalue); in env_append() 341 free(newvalue); in env_append() [all …]
|
| /OK3568_Linux_fs/yocto/poky/documentation/tools/ |
| H A D | update-documentation-conf | 104 newvalue = infos.get(key, None) 105 if newvalue: 107 if newvalue != linesplit[1].strip(): 108 lines.append('%s = %s\n' % (key, newvalue))
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | utils.py | 1262 (newvalue, newop, indent, minbreak) = varfunc(in_var, full_value, op, newlines) 1265 if newvalue is None: 1268 elif newvalue != full_value or (newop not in [None, op]): 1284 if isinstance(newvalue, list): 1285 … newlines.append('%s {\n%s%s\n}\n' % (varset_new, indentspc, ('\n%s' % indentspc).join(newvalue))) 1287 if not newvalue.startswith('\n'): 1288 newvalue = '\n' + newvalue 1289 if not newvalue.endswith('\n'): 1290 newvalue = newvalue + '\n' 1291 newlines.append('%s {%s}\n' % (varset_new, newvalue)) [all …]
|
| H A D | data.py | 291 newvalue = [] 293 newvalue.append(str(value)) 301 newvalue.append("\n%s{%s} = Unset" % (k, item)) 304 newvalue.append("\n%s{%s} = Set" % (k, item)) 305 return "".join(newvalue)
|
| H A D | data_smart.py | 917 newvalue = (self.getVarFlag(var, flag, False) or "") + value 918 self.setVarFlag(var, flag, newvalue, ignore=True) 924 newvalue = value + (self.getVarFlag(var, flag, False) or "") 925 self.setVarFlag(var, flag, newvalue, ignore=True)
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | recipe_sanity.bbclass | 34 for (key, newkey, oldvalue, newvalue) in renames: 35 if oldvalue != newvalue and oldvalue != cfgdata.get(newkey): 36 …able '%s' to '%s' overwrote existing value '%s' with '%s'." % (key, newkey, oldvalue, newvalue), d) 141 newvalue = self.getVar(newkey, 0) 144 renames.add((key, newkey, oldvalue, newvalue))
|
| /OK3568_Linux_fs/kernel/drivers/staging/rtl8712/ |
| H A D | xmit_linux.c | 98 u8 oldvalue = 0x00, newvalue = 0x00; in r8712_SetFilter() local 102 newvalue = oldvalue & 0xfe; in r8712_SetFilter() 103 r8712_write8(adapter, 0x117, newvalue); in r8712_SetFilter()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/carl9170/ |
| H A D | hw.h | 872 #define SET_VAL(reg, value, newvalue) \ argument 873 (value = ((value) & ~reg) | (((newvalue) << reg##_S) & reg)) 875 #define SET_CONSTVAL(reg, newvalue) \ argument 876 (((newvalue) << reg##_S) & reg) 878 #define MOD_VAL(reg, value, newvalue) \ argument 879 (((value) & ~reg) | (((newvalue) << reg##_S) & reg))
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/ |
| H A D | build.py | 24 newvalue = values.get(varname, origvalue) 26 return (newvalue, '=', 0, True)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/oelib/ |
| H A D | buildhistory.py | 76 var_changes = { x.fieldname : (x.oldvalue, x.newvalue) for x in change_records} 98 var_changes[x.fieldname] = (oldvalue, x.newvalue)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | create_buildsys.py | 439 newvalue = value 441 newvalue = newvalue.replace(define, defval) 442 if newvalue != value: 443 return subst_defines(newvalue)
|
| /OK3568_Linux_fs/external/xserver/Xext/ |
| H A D | sync.c | 1417 int64_t newvalue; in ProcSyncSetCounter() local 1432 newvalue = ((int64_t)stuff->value_hi << 32) | stuff->value_lo; in ProcSyncSetCounter() 1433 SyncChangeCounter(pCounter, newvalue); in ProcSyncSetCounter() 1445 int64_t newvalue; in ProcSyncChangeCounter() local 1461 newvalue = (int64_t)stuff->value_hi << 32 | stuff->value_lo; in ProcSyncChangeCounter() 1462 overflow = checked_int64_add(&newvalue, newvalue, pCounter->value); in ProcSyncChangeCounter() 1468 SyncChangeCounter(pCounter, newvalue); in ProcSyncChangeCounter()
|
| /OK3568_Linux_fs/buildroot/dl/ncurses/ |
| HD | ncurses-6.1-20190609-patch.sh.bz2 | 1#!/bin/sh
2# Use this script to patch ncurses 6.1 to 6.1 ( ... |