Home
last modified time | relevance | path

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

123

/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.py102 for setting_name, setting_value in project_defaults.items():
124 def items(self, section, *args, **kwargs): member in _ProjectConfigParser
138 project_items = ConfigParser.ConfigParser.items(
147 top_items = ConfigParser.ConfigParser.items(
157 return {(item, val) for item, val in item_dict.items()}
250 for _, subparser in action.choices.items()]
261 for name, val in config.items('settings'):
277 parser.set_defaults(**{k: v for k, v in defaults.items()
332 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():
/u-boot/doc/device-tree-bindings/memory/
A Dti,gpmc.yaml23 items:
37 items:
51 items:
58 items:
62 items:
83 items:
/u-boot/tools/binman/
A Dstate.py234 for etype, fname in DTB_TYPE_FNAME.items():
238 for etype, fname in DTB_TYPE_FNAME.items():
273 for etype, value in image.GetFdts().items():
323 for entry_type, (dtb, fname) in output_fdt_info.items():
515 for threaded_name, timing in timing_info.items():
519 for name, seconds in duration.items():
A Delf.py89 return OrderedDict(sorted(syms.items(), key=lambda x: x[1].address))
138 for name, sym in syms.items():
173 return OrderedDict(sorted(syms.items(), key=lambda x: x[1].address))
264 for name, sym in syms.items():
278 for name, sym in syms.items():
/u-boot/scripts/
A Dstyle.py80 for name, new_name in conv.items():
102 for name, new_name in conv.items():
134 for name, new_name in conv.items():
A Dmailmapper156 for mail, name in output.items():
/u-boot/test/py/tests/
A Dtest_trace.py126 vals = {items[4]: float(items[2]) for items in lines if len(items) == 5}
/u-boot/lib/
A Dgzip.c22 static void *zalloc(void *x, unsigned items, unsigned size) in zalloc() argument
26 size *= items; in zalloc()
/u-boot/common/
A Dmenu.c48 struct list_head items; member
68 list_for_each_safe(pos, n, &m->items) { in menu_items_iter()
333 list_add_tail(&item->list, &m->items); in menu_item_add()
403 INIT_LIST_HEAD(&m->items); in menu_create()
/u-boot/doc/usage/cmd/
A Dfor.rst9 for <variable> in <items>; do <commands>; done
23 items
A Dacpi.rst12 acpi items [-d]
79 acpi items
143 => acpi items
184 => acpi items -d
/u-boot/tools/binman/etype/
A Dfit.py355 for pname, prop in self._node.props.items():
538 for name, entry in self.GetEntries().items():
579 for pname, prop in node.props.items():
630 for pname, prop in node.props.items():
718 for pname, prop in node.props.items():
792 for image_name, section in self._entries.items():
A Dgbb.py67 for flag, value in gbb_flag_properties.items():
/u-boot/tools/buildman/
A Dbsettings.py44 return settings.items(section)
A Dbuilder.py143 for key, value in self.config[fname].items():
923 for key, value in outcome.environment.items():
1141 for arch, target_list in arch_list.items():
1146 for name, diff in result.items():
1404 for arch, target_list in arch_list.items():
1432 for key, value in base.items():
1435 for key, value in base.items():
1492 for key, value in base.items():
1496 for key, value in base.items():
1514 for target, lines in summary.items():
[all …]
/u-boot/doc/device-tree-bindings/firmware/
A Dfwu-mdata-gpt.yaml14 items:
A Dfwu-mdata-mtd.yaml14 items:
/u-boot/doc/develop/
A Dexpo.rst21 more than a very simple list of items. While it does support multiple menus in
60 A `menu object` contains a title, a set of `menu items` and a pointer to the
61 current item. Menu items consist of a keypress (indicating what to press to
84 or even the IDs of objects. Programmatic creation of many items in a loop can be
85 handled by allocating space in the enum for a maximum number of items, then
108 Individual objects can be positioned using `scene_obj_set_pos()`. Menu items
111 its items.
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);
/u-boot/drivers/smem/
A DKconfig21 The driver provides an interface to items in a heap shared among all
/u-boot/doc/device-tree-bindings/mtd/
A Dti,gpmc-nand.yaml19 items:
28 items:
/u-boot/include/
A Defi_config.h119 void *eficonfig_create_fixed_menu(const struct eficonfig_item *items, int count);

Completed in 47 milliseconds

123