Home
last modified time | relevance | path

Searched refs:locs (Results 1 – 9 of 9) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oe/
H A Delf.py142 locs = { "machdata" : machdata, "d" : d}
143 machdata = bb.utils.better_eval(call, locs)
H A Drecipeutils.py354 locs = localise_file_vars(fn, varfiles, varlist)
356 for f,v in locs.items():
/openbmc/linux/drivers/platform/x86/
H A Dclassmate-laptop.c157 int16_t *locs; in cmpc_get_accel_v4() local
174 locs = (int16_t *) obj->buffer.pointer; in cmpc_get_accel_v4()
175 *x = locs[0]; in cmpc_get_accel_v4()
176 *y = locs[1]; in cmpc_get_accel_v4()
177 *z = locs[2]; in cmpc_get_accel_v4()
505 unsigned char *locs; in cmpc_get_accel() local
517 locs = obj->buffer.pointer; in cmpc_get_accel()
518 *x = locs[0]; in cmpc_get_accel()
519 *y = locs[1]; in cmpc_get_accel()
520 *z = locs[2]; in cmpc_get_accel()
/openbmc/linux/include/linux/ceph/
H A Dosdmap.h326 int ceph_parse_crush_location(char *crush_location, struct rb_root *locs);
328 void ceph_clear_crush_locs(struct rb_root *locs);
331 struct rb_root *locs);
/openbmc/u-boot/tools/
H A Dmoveconfig.py1523 locs = sym.get_def_locations()
1524 if len(locs) != 1:
1525 return '%d locations' % len(locs)
1526 fname, linenum = locs[0]
1737 locs = sym.get_def_locations()
1738 if len(locs) == 1:
1739 fname, linenum = locs[0]
1749 locs = sym.get_def_locations()
1750 if len(locs) == 1:
1751 fname, linenum = locs[0]
/openbmc/linux/net/ceph/
H A Dosdmap.c2926 int ceph_parse_crush_location(char *crush_location, struct rb_root *locs) in DEFINE_RB_FUNCS2()
2959 if (!__insert_crush_loc(locs, loc)) { in DEFINE_RB_FUNCS2()
2995 void ceph_clear_crush_locs(struct rb_root *locs) in ceph_clear_crush_locs() argument
2997 while (!RB_EMPTY_ROOT(locs)) { in ceph_clear_crush_locs()
2999 rb_entry(rb_first(locs), struct crush_loc_node, cl_node); in ceph_clear_crush_locs()
3001 erase_crush_loc(locs, loc); in ceph_clear_crush_locs()
3088 struct rb_root *locs) in ceph_get_crush_locality() argument
3103 if (lookup_crush_loc(locs, &loc)) in ceph_get_crush_locality()
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dsiteinfo.bbclass151 locs = { "archinfo" : archinfo, "osinfo" : osinfo, "targetinfo" : targetinfo, "d" : d}
152 archinfo, osinfo, targetinfo = bb.utils.better_eval(call, locs)
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dsiggen.py801 locs = {'path': path, 'sigfile': sigfile, 'task': task, 'd': d}
805 locs['method'] = getattr(importlib.import_module(module), method)
806 outhash = bb.utils.better_eval('method(path, sigfile, task, d)', locs)
808 outhash = bb.utils.better_eval(self.method + '(path, sigfile, task, d)', locs)
H A Drunqueue.py1526locs = {"sq_data" : sq_data, "d" : d, "siginfo" : siginfo, "currentcount" : currentcount, "summary…
1531 return bb.utils.better_eval(call, locs)
2011locs = { "task" : task, "taskdata" : taskdata, "notneeded" : self.scenequeue_notneeded, "d" : self…
2012 valid = bb.utils.better_eval(call, locs)