Home
last modified time | relevance | path

Searched refs:toc_entry (Results 1 – 7 of 7) sorted by relevance

/external/arm-trusted-firmware/tools/fiptool/
Dfiptool.c206 toc_entry_t *toc_entry; in fill_image_descs() local
208 for (toc_entry = toc_entries; in fill_image_descs()
209 toc_entry->cmdline_name != NULL; in fill_image_descs()
210 toc_entry++) { in fill_image_descs()
213 desc = new_image_desc(&toc_entry->uuid, in fill_image_descs()
214 toc_entry->name, in fill_image_descs()
215 toc_entry->cmdline_name); in fill_image_descs()
287 fip_toc_entry_t *toc_entry; in parse_fip() local
307 toc_entry = (fip_toc_entry_t *)(toc_header + 1); in parse_fip()
317 while ((char *)toc_entry + sizeof(*toc_entry) - 1 < bufend) { in parse_fip()
[all …]
Dtbbr_config.h16 typedef struct toc_entry { struct
/external/python/cpython2/Modules/
Dzipimport.c48 static PyObject *get_data(const char *archive, PyObject *toc_entry);
426 PyObject *toc_entry; in zipimporter_get_data() local
451 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_data()
452 if (toc_entry == NULL) { in zipimporter_get_data()
456 return get_data(PyString_AsString(self->archive), toc_entry); in zipimporter_get_data()
475 PyObject *toc_entry; in zipimporter_get_source() local
504 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_source()
505 if (toc_entry != NULL) in zipimporter_get_source()
506 return get_data(PyString_AsString(self->archive), toc_entry); in zipimporter_get_source()
916 get_data(const char *archive, PyObject *toc_entry) in get_data() argument
[all …]
/external/python/cpython3/Lib/
Dzipimport.py177 toc_entry = self._files[key]
180 return _get_data(self.archive, toc_entry)
213 toc_entry = self._files[fullpath]
217 return _get_data(self.archive, toc_entry).decode()
531 def _get_data(archive, toc_entry): argument
532 datapath, compress, data_size, file_size, file_offset, time, date, crc = toc_entry
669 toc_entry = self._files[path]
672 time = toc_entry[5]
673 date = toc_entry[6]
674 uncompressed_size = toc_entry[3]
[all …]
/external/google-styleguide/include/
Dstyleguide.css115 li.toc_entry {
125 li.toc_entry::after {
129 li.toc_entry a {
/external/google-styleguide/
Djavaguide.css544 li.toc_entry {
554 li.toc_entry::after {
558 li.toc_entry a {
/external/wayland/cursor/
Dconvert_font.c81 struct toc_entry { struct
238 struct toc_entry *entry = &header->tables[i]; in handle_pcf()