/u-boot/lib/zlib/ |
A D | zutil.c | 52 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 D | zutil.h | 118 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 D | settings.py | 100 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 D | status.py | 91 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 D | series.py | 168 for version, changelist in self.changes.items(): 171 for version, changelist in commit.changes.items():
|
/u-boot/tools/binman/etype/ |
A D | fit.py | 121 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 D | gbb.py | 67 for flag, value in gbb_flag_properties.items():
|
A D | fdtmap.py | 98 for pname, prop in node.props.items():
|
/u-boot/common/ |
A D | menu.c | 43 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 D | gzip.c | 22 static void *zalloc(void *x, unsigned items, unsigned size) in zalloc() argument 26 size *= items; in zalloc()
|
A D | gunzip.c | 30 void *gzalloc(void *x, unsigned items, unsigned size) in gzalloc() argument 34 size *= items; in gzalloc()
|
/u-boot/doc/usage/ |
A D | for.rst | 9 for <variable> in <items>; do <commands>; done 23 items
|
A D | bootmenu.rst | 8 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 D | bsettings.py | 43 return settings.items(section)
|
A D | builder.py | 132 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 D | Kconfig | 21 The driver provides an interface to items in a heap shared among all
|
/u-boot/doc/develop/ |
A D | commands.rst | 189 /* Test 'acpi items' command */ 201 run_command("acpi items", 0); 209 run_command("acpi items", 0); 215 run_command("acpi items -d", 0);
|
A D | menus.rst | 14 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 D | elf.py | 78 return OrderedDict(sorted(syms.items(), key=lambda x: x[1].address)) 117 for name, sym in syms.items():
|
A D | state.py | 187 for etype, other in fdt_set.items(): 221 for etype, value in image.GetFdts().items():
|
/u-boot/scripts/ |
A D | mailmapper | 152 for mail, name in output.items():
|
/u-boot/tools/dtoc/ |
A D | dtb_platdata.py | 441 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 D | theme_overrides.css | 70 /* fix bottom margin of lists items */
|
/u-boot/cmd/ |
A D | acpi.c | 197 U_BOOT_SUBCMD_MKENT(items, 2, 1, do_acpi_items),
|
/u-boot/test/py/tests/ |
A D | vboot_forge.py | 67 items = ["'%s': %s" % (n, repr(getattr(self, n))) for n in self.__names__ if n is not None] 68 return '(' + ', '.join(items) + ')'
|