Home
last modified time | relevance | path

Searched refs:items (Results 1 – 25 of 48) sorted by relevance

12

/u-boot/lib/zlib/
A Dzutil.c52 extern voidp calloc OF((uInt items, uInt size));
57 voidpf zcalloc(voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
60 items += size - size; /* make compiler happy */ in zcalloc()
61 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : in zcalloc()
62 (voidpf)calloc(items, size); in zcalloc()
A Dzutil.h118 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
121 #define ZALLOC(strm, items, size) \ argument
122 (*((strm)->zalloc))((strm)->opaque, (items), (size))
/u-boot/tools/patman/
A Dsettings.py100 for setting_name, setting_value in project_defaults.items():
122 def items(self, section, *args, **kwargs): member in _ProjectConfigParser
136 project_items = ConfigParser.SafeConfigParser.items(
145 top_items = ConfigParser.SafeConfigParser.items(
155 return {(item, val) for item, val in item_dict.items()}
245 for _, subparser in action.choices.items()]
254 for name, val in config.items('settings'):
319 return config.items(section)
A Dstatus.py91 return hash(frozenset(self.items()))
296 for response, people in pstrm.commit.rtags.items():
308 for response, people in pstrm.commit.rtags.items():
314 for tag, people in rtags.items():
400 for tag, people in new_rtag_list[seq].items():
A Dseries.py168 for version, changelist in self.changes.items():
171 for version, changelist in commit.changes.items():
/u-boot/tools/binman/etype/
A Dfit.py121 for pname, prop in self._node.props.items():
153 for pname, prop in node.props.items():
201 for pname, prop in subnode.props.items():
268 for path, section in self._fit_sections.items():
289 for path, section in self._fit_sections.items():
A Dgbb.py67 for flag, value in gbb_flag_properties.items():
A Dfdtmap.py98 for pname, prop in node.props.items():
/u-boot/common/
A Dmenu.c43 struct list_head items; member
63 list_for_each_safe(pos, n, &m->items) { in menu_items_iter()
325 list_add_tail(&item->list, &m->items); in menu_item_add()
395 INIT_LIST_HEAD(&m->items); in menu_create()
/u-boot/lib/
A Dgzip.c22 static void *zalloc(void *x, unsigned items, unsigned size) in zalloc() argument
26 size *= items; in zalloc()
A Dgunzip.c30 void *gzalloc(void *x, unsigned items, unsigned size) in gzalloc() argument
34 size *= items; in gzalloc()
/u-boot/doc/usage/
A Dfor.rst9 for <variable> in <items>; do <commands>; done
23 items
A Dbootmenu.rst8 a simple mechanism for creating menus with different boot items.
10 the items. Current active menu item is highlighted and can be
/u-boot/tools/buildman/
A Dbsettings.py43 return settings.items(section)
A Dbuilder.py132 for key, value in self.config[fname].items():
849 for key, value in outcome.environment.items():
1069 for arch, target_list in arch_list.items():
1074 for name, diff in result.items():
1327 for arch, target_list in arch_list.items():
1355 for key, value in base.items():
1358 for key, value in base.items():
1415 for key, value in base.items():
1419 for key, value in base.items():
1437 for target, lines in summary.items():
[all …]
/u-boot/drivers/smem/
A DKconfig21 The driver provides an interface to items in a heap shared among all
/u-boot/doc/develop/
A Dcommands.rst189 /* Test 'acpi items' command */
201 run_command("acpi items", 0);
209 run_command("acpi items", 0);
215 run_command("acpi items -d", 0);
A Dmenus.rst14 Menus are composed of items. Each item has a key used to identify it in
72 * menu_destroy() - frees the memory used by a menu and its items.
/u-boot/tools/binman/
A Delf.py78 return OrderedDict(sorted(syms.items(), key=lambda x: x[1].address))
117 for name, sym in syms.items():
A Dstate.py187 for etype, other in fdt_set.items():
221 for etype, value in image.GetFdts().items():
/u-boot/scripts/
A Dmailmapper152 for mail, name in output.items():
/u-boot/tools/dtoc/
A Ddtb_platdata.py441 for name, prop in node.props.items():
448 for name, prop in fields.items():
462 for name, prop in node.props.items():
479 for pname, prop in node.props.items():
/u-boot/doc/sphinx-static/
A Dtheme_overrides.css70 /* fix bottom margin of lists items */
/u-boot/cmd/
A Dacpi.c197 U_BOOT_SUBCMD_MKENT(items, 2, 1, do_acpi_items),
/u-boot/test/py/tests/
A Dvboot_forge.py67 items = ["'%s': %s" % (n, repr(getattr(self, n))) for n in self.__names__ if n is not None]
68 return '(' + ', '.join(items) + ')'

Completed in 45 milliseconds

12