/third_party/exfatprogs/exfat2img/ |
H A D | exfat2img.c | 68 static struct exfat2img ei; variable 97 static void free_exfat2img(struct exfat2img *ei) in free_exfat2img() argument 99 if (ei->exfat) in free_exfat2img() 100 exfat_free_exfat(ei->exfat); in free_exfat2img() 101 if (ei->dump_bdesc) in free_exfat2img() 102 exfat_free_buffer(ei->dump_bdesc, 2); in free_exfat2img() 103 if (ei->scan_bdesc) in free_exfat2img() 104 exfat_free_buffer(ei->scan_bdesc, 2); in free_exfat2img() 105 if (ei->out_fd) in free_exfat2img() 106 close(ei in free_exfat2img() 111 create_exfat2img(struct exfat2img *ei, struct pbr *bs, const char *out_path) create_exfat2img() argument 160 dump_range(struct exfat2img *ei, off_t start, off_t end) dump_range() argument 208 dump_sectors(struct exfat2img *ei, off_t start_sect, off_t end_sect_excl) dump_sectors() argument 220 dump_clusters(struct exfat2img *ei, clus_t start_clus, clus_t end_clus_excl) dump_clusters() argument 232 dump_directory(struct exfat2img *ei, struct exfat_inode *inode, size_t size, clus_t *out_clus_count) dump_directory() argument 279 dump_root(struct exfat2img *ei) dump_root() argument 365 read_bitmap(struct exfat2img *ei, struct exfat_de_iter *iter) read_bitmap() argument 397 read_upcase_table(struct exfat2img *ei, struct exfat_de_iter *iter) read_upcase_table() argument 423 read_children(struct exfat2img *ei, struct exfat_inode *dir, off_t *end_file_offset) read_children() argument 506 dump_filesystem(struct exfat2img *ei) dump_filesystem() argument 554 dump_bytes_to_stdout(struct exfat2img *ei, off_t start, off_t end_excl, bool fill_zero) dump_bytes_to_stdout() argument 605 dump_clusters_to_stdout(struct exfat2img *ei, unsigned int start_clu, unsigned int end_clu, bool fill_zero) dump_clusters_to_stdout() argument 659 dump_to_stdout(struct exfat2img *ei) dump_to_stdout() argument 722 dump_header(struct exfat2img *ei) dump_header() argument 763 restore_from_stdin(struct exfat2img *ei) restore_from_stdin() argument [all...] |
/third_party/libunwind/libunwind/src/ |
H A D | elfxx.c | 38 elf_w (section_table) (struct elf_image *ei) in Elf_W() 40 Elf_W (Ehdr) *ehdr = ei->image; in Elf_W() 44 if (soff + ehdr->e_shnum * ehdr->e_shentsize > ei->size) in Elf_W() 48 (unsigned long) ei->size); in Elf_W() 52 return (Elf_W (Shdr) *) ((char *) ei->image + soff); in Elf_W() 56 elf_w (string_table) (struct elf_image *ei, int section) in string_table() argument 58 Elf_W (Ehdr) *ehdr = ei->image; in string_table() 66 if (str_soff + ehdr->e_shentsize > ei->size) in string_table() 70 (unsigned long) ei->size); in string_table() 73 str_shdr = (Elf_W (Shdr) *) ((char *) ei in string_table() 88 lookup_symbol(unw_addr_space_t as, unw_word_t ip, struct elf_image *ei, Elf_W (Addr) load_offset, char *buf, size_t buf_len, Elf_W (Addr) *min_dist) lookup_symbol() argument 221 extract_minidebuginfo(struct elf_image *ei, struct elf_image *mdi) extract_minidebuginfo() argument 265 extract_minidebuginfo(struct elf_image *ei, struct elf_image *mdi) extract_minidebuginfo() argument 277 get_proc_name_in_image(unw_addr_space_t as, struct elf_image *ei, unsigned long segbase, unsigned long mapoff, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp) get_proc_name_in_image() argument 319 struct elf_image ei; get_proc_name() local 391 load_debuglink(const char* file, struct elf_image *ei, int is_local) load_debuglink() argument [all...] |
H A D | elfxx.h | 51 struct elf_image *ei, 57 extern Elf_W (Shdr)* elf_w (find_section) (struct elf_image *ei, const char* secname); 58 extern int elf_w (load_debuglink) (const char* file, struct elf_image *ei, int is_local); 61 elf_w (valid_object) (struct elf_image *ei) in valid_object() argument 63 if (ei->size <= EI_VERSION) in valid_object() 66 return (memcmp (ei->image, ELFMAG, SELFMAG) == 0 in valid_object() 67 && ((uint8_t *) ei->image)[EI_CLASS] == UNW_ELF_CLASS in valid_object() 68 && ((uint8_t *) ei->image)[EI_VERSION] != EV_NONE in valid_object() 69 && ((uint8_t *) ei->image)[EI_VERSION] <= EV_CURRENT); in valid_object() 73 elf_map_image (struct elf_image *ei, cons argument [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | srtdec.c | 72 static int get_event_info(const char *line, struct event_info *ei) in get_event_info() argument 77 ei->x1 = ei->x2 = ei->y1 = ei->y2 = ei->duration = -1; in get_event_info() 78 ei->pts = AV_NOPTS_VALUE; in get_event_info() 79 ei->pos = -1; in get_event_info() 84 &ei->x1, &ei in get_event_info() 94 add_event(FFDemuxSubtitlesQueue *q, AVBPrint *buf, char *line_cache, const struct event_info *ei, int append_cache) add_event() argument 134 struct event_info ei; srt_read_header() local [all...] |
/third_party/libunwind/libunwind/src/coredump/ |
H A D | _UCD_elf_map_image.c | 36 struct elf_image *ei = &ui->edi.ei; in CD_elf_map_image() local 45 ei->image = mmap(NULL, phdr->p_memsz, PROT_READ, MAP_PRIVATE, ui->coredump_fd, phdr->p_offset); in CD_elf_map_image() 46 if (ei->image == MAP_FAILED) in CD_elf_map_image() 48 ei->image = NULL; in CD_elf_map_image() 51 ei->size = phdr->p_filesz; in CD_elf_map_image() 55 void *remainder_base = (char*) ei->image + phdr->p_filesz; in CD_elf_map_image() 67 ei->image = mmap(NULL, phdr->backing_filesize, PROT_READ, MAP_PRIVATE, phdr->backing_fd, 0); in CD_elf_map_image() 68 if (ei->image == MAP_FAILED) in CD_elf_map_image() 70 ei in CD_elf_map_image() [all...] |
/third_party/libunwind/libunwind/src/ia64/ |
H A D | Gfind_unwind_table.c | 39 Elf64_Ehdr *ehdr = edi->ei.image; in find_gp() 50 Elf64_Dyn *dyn = (Elf64_Dyn *) (pdyn->p_offset + (char *) edi->ei.image); in find_gp() 67 if (soff + ehdr->e_shnum * ehdr->e_shentsize > edi->ei.size) in find_gp() 71 edi->ei.size); in find_gp() 75 shdr = (Elf64_Shdr *) ((char *) edi->ei.image + soff); in find_gp() 76 str_shdr = (Elf64_Shdr *) ((char *) edi->ei.image + str_soff); in find_gp() 77 strtab = (char *) edi->ei.image + str_shdr->sh_offset; in find_gp() 83 gp = ((Elf64_Addr *) ((char *) edi->ei.image + shdr->sh_offset))[1]; in find_gp() 90 Debug (16, "image at %p, gp = %lx\n", edi->ei.image, gp); in find_gp() 103 if (!_Uelf64_valid_object (&edi->ei)) in ia64_find_unwind_table() [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_graph.cpp | 131 EdgeIterator ei = this->outgoing(); in detach() local 132 for (; !ei.end(); ei.next()) in detach() 133 if (ei.getNode() == node) in detach() 135 if (ei.end()) { in detach() 139 delete ei.getEdge(); in detach() 186 for (EdgeIterator ei = pos->outgoing(); !ei.end(); ei.next()) { in reachableBy() 187 if (ei in reachableBy() [all...] |
H A D | nv50_ir_ssa.cpp | 102 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) { in buildDFS() 103 if (SEMI(ei.getNode()->tag) < 0) { in buildDFS() 104 buildDFS(ei.getNode()); in buildDFS() 105 PARENT(ei.getNode()->tag) = node->tag; in buildDFS() 145 for (Graph::EdgeIterator ei = nw->incident(); !ei.end(); ei.next()) { in build() 146 nv = ei in build() [all...] |
H A D | nv50_ir_ra.cpp | 392 for (Graph::EdgeIterator ei = p->cfg.outgoing(); !ei.end(); ei.next()) in needNewElseBlock() 393 if (ei.getType() == Graph::Edge::TREE || in needNewElseBlock() 394 ei.getType() == Graph::Edge::FORWARD) in needNewElseBlock() 421 Graph::EdgeIterator ei; in splitEdges() local 425 for (ei = bb->cfg.incident(); !ei.end(); ei.next()) { in splitEdges() 426 pb = BasicBlock::get(ei in splitEdges() 773 get(const Graph::EdgeIterator& ei) get() argument 1417 checkInterference(const RIG_Node *node, Graph::EdgeIterator& ei) checkInterference() argument [all...] |
H A D | nv50_ir_bb.cpp | 378 for (Graph::EdgeIterator ei = cfg.outgoing(); !ei.end(); ei.next()) in initiatesSimpleConditional() 379 out[n++] = ei.getNode(); in initiatesSimpleConditional() 524 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) { in printCFGraph() 525 int idB = BasicBlock::get(ei.getNode())->getId(); in printCFGraph() 526 switch (ei.getType()) { in printCFGraph()
|
H A D | nv50_ir_graph.h | 219 for (EdgeIterator ei = incident(); !ei.end(); ei.next()) in incidentCountFwd() 220 if (ei.getType() != Edge::BACK) in incidentCountFwd()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pt_fetch.c | 62 unsigned i, nr = 0, ei = 0; in draw_pt_fetch_prepare() local 92 key.element[nr].input_format = draw->pt.vertex_element[ei].src_format; in draw_pt_fetch_prepare() 93 key.element[nr].input_buffer = draw->pt.vertex_element[ei].vertex_buffer_index; in draw_pt_fetch_prepare() 94 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset; in draw_pt_fetch_prepare() 95 key.element[nr].instance_divisor = draw->pt.vertex_element[ei].instance_divisor; in draw_pt_fetch_prepare() 99 ei++; in draw_pt_fetch_prepare() 103 key.element[nr].input_format = draw->pt.vertex_element[ei].src_format; in draw_pt_fetch_prepare() 104 key.element[nr].input_buffer = draw->pt.vertex_element[ei].vertex_buffer_index; in draw_pt_fetch_prepare() 105 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset; in draw_pt_fetch_prepare() 106 key.element[nr].instance_divisor = draw->pt.vertex_element[ei] in draw_pt_fetch_prepare() [all...] |
/third_party/astc-encoder/Source/ |
H A D | astcenc_ideal_endpoints_and_weights.cpp | 104 * @param[out] ei The computed ideal endpoints and weights. 110 endpoints_and_weights& ei, in compute_ideal_colors_and_weights_1_comp() 114 ei.ep.partition_count = partition_count; in compute_ideal_colors_and_weights_1_comp() 188 ei.weights[tix] = value; in compute_ideal_colors_and_weights_1_comp() 189 ei.weight_error_scale[tix] = length_squared * error_weight; in compute_ideal_colors_and_weights_1_comp() 190 assert(!astc::isnan(ei.weight_error_scale[tix])); in compute_ideal_colors_and_weights_1_comp() 193 ei.ep.endpt0[i] = select(blk.data_min, vfloat4(lowvalue), sep_mask); in compute_ideal_colors_and_weights_1_comp() 194 ei.ep.endpt1[i] = select(blk.data_max, vfloat4(highvalue), sep_mask); in compute_ideal_colors_and_weights_1_comp() 201 ei.weights[i] = 0.0f; in compute_ideal_colors_and_weights_1_comp() 202 ei in compute_ideal_colors_and_weights_1_comp() 107 compute_ideal_colors_and_weights_1_comp( const image_block& blk, const partition_info& pi, endpoints_and_weights& ei, unsigned int component ) compute_ideal_colors_and_weights_1_comp() argument [all...] |
/third_party/libunwind/libunwind/src/dwarf/ |
H A D | Gfind_proc_info-lsb.c | 113 struct elf_image ei; in load_debug_frame() local 120 ei.image = NULL; in load_debug_frame() 123 ret = elf_w (load_debuglink) (file, &ei, is_local); in load_debug_frame() 127 shdr = elf_w (find_section) (&ei, ".debug_frame"); in load_debug_frame() 129 (shdr->sh_offset + shdr->sh_size > ei.size)) in load_debug_frame() 131 munmap(ei.image, ei.size); in load_debug_frame() 139 Elf_W (Chdr) *chdr = (shdr->sh_offset + ei.image); in load_debug_frame() 149 munmap(ei.image, ei in load_debug_frame() 524 struct elf_image ei; Elf_W() local [all...] |
H A D | Gfind_unwind_table.c | 59 if (!elf_w(valid_object) (&edi->ei)) in dwarf_find_unwind_table() 62 ehdr = edi->ei.image; in dwarf_find_unwind_table() 63 phdr = (Elf_W(Phdr) *) ((char *) edi->ei.image + ehdr->e_phoff); in dwarf_find_unwind_table() 78 if ((uintptr_t) edi->ei.image + phdr->p_filesz > max_load_addr) in dwarf_find_unwind_table() 79 max_load_addr = (uintptr_t) edi->ei.image + phdr->p_filesz; in dwarf_find_unwind_table() 119 + (char *) edi->ei.image); in dwarf_find_unwind_table() 136 + (char *) edi->ei.image); in dwarf_find_unwind_table() 202 + (addr - to_unw_word (edi->ei.image) in dwarf_find_unwind_table() 209 to_unw_word (edi->ei.image) in dwarf_find_unwind_table()
|
/third_party/icu/icu4c/source/common/ |
H A D | unistr_case.cpp | 174 for (Edits::Iterator ei = edits.getCoarseChangesIterator(); ei.next(errorCode);) { in caseMap() 175 doReplace(ei.destinationIndex(), ei.oldLength(), in caseMap() 176 replacementChars, ei.replacementIndex(), ei.newLength()); in caseMap()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | unistr_case.cpp | 174 for (Edits::Iterator ei = edits.getCoarseChangesIterator(); ei.next(errorCode);) { in caseMap() 175 doReplace(ei.destinationIndex(), ei.oldLength(), in caseMap() 176 replacementChars, ei.replacementIndex(), ei.newLength()); in caseMap()
|
/third_party/python/Lib/ |
H A D | code.py | 139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info() 142 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next) 148 sys.excepthook(ei[0], ei[1], last_tb) 150 last_tb = ei = None
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | unistr_case.cpp | 174 for (Edits::Iterator ei = edits.getCoarseChangesIterator(); ei.next(errorCode);) { in caseMap() 175 doReplace(ei.destinationIndex(), ei.oldLength(), in caseMap() 176 replacementChars, ei.replacementIndex(), ei.newLength()); in caseMap()
|
/third_party/lzma/C/Util/SfxSetup/ |
H A D | SfxSetup.c | 578 SHELLEXECUTEINFO ei;
in main() local 582 memset(&ei, 0, sizeof(ei));
in main() 583 ei.cbSize = sizeof(ei);
in main() 584 ei.lpFile = path;
in main() 585 ei.fMask = SEE_MASK_NOCLOSEPROCESS
in main() 592 ei.lpParameters = cmdLineParams;
in main() 593 ei.nShow = SW_SHOWNORMAL; /* SW_HIDE; */
in main() 594 success = ShellExecuteEx(&ei);
in main() [all...] |
/third_party/icu/icu4c/source/common/unicode/ |
H A D | parsepos.h | 148 inline void setErrorIndex(int32_t ei); 229 ParsePosition::setErrorIndex(int32_t ei) in setErrorIndex() argument 231 this->errorIndex = ei; in setErrorIndex()
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | parsepos.h | 148 inline void setErrorIndex(int32_t ei); 229 ParsePosition::setErrorIndex(int32_t ei) in setErrorIndex() argument 231 this->errorIndex = ei; in setErrorIndex()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | parsepos.h | 148 inline void setErrorIndex(int32_t ei); 229 ParsePosition::setErrorIndex(int32_t ei) in setErrorIndex() argument 231 this->errorIndex = ei; in setErrorIndex()
|
/third_party/googletest/googlemock/src/ |
H A D | gmock-matchers.cc | 423 for (size_t ei = 0; ei < element_matched.size(); ++ei) { in VerifyMatchMatrix() 424 if (element_matched[ei]) continue; in VerifyMatchMatrix() 427 *listener << outer_sep << sep << "element #" << ei << ": " in VerifyMatchMatrix() 428 << element_printouts[ei]; in VerifyMatchMatrix()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir_emit.c | 129 struct etna_op_info ei = etna_ops[op]; in etna_emit_alu() local 132 if (ei.opcode == 0xff) in etna_emit_alu() 136 .opcode = ei.opcode, in etna_emit_alu() 137 .type = ei.type, in etna_emit_alu() 138 .cond = ei.cond, in etna_emit_alu() 186 unsigned i = ((ei.src >> j*2) & 3); in etna_emit_alu()
|