/external/libunwind/src/coredump/ |
H A D | _UCD_elf_map_image.c | 32 struct elf_image *ei = &ui->edi.ei; local 41 ei->image = mmap(NULL, phdr->p_memsz, PROT_READ, MAP_PRIVATE, ui->coredump_fd, phdr->p_offset); 42 if (ei->image == MAP_FAILED) 44 ei->image = NULL; 47 ei->size = phdr->p_filesz; 51 void *remainder_base = (char*) ei->image + phdr->p_filesz; 63 ei->image = mmap(NULL, phdr->backing_filesize, PROT_READ, MAP_PRIVATE, phdr->backing_fd, 0); 64 if (ei->image == MAP_FAILED) 66 ei [all...] |
/external/libunwind/src/ |
H A D | os-common.c | 34 tdep_get_elf_image (unw_addr_space_t as, struct elf_image *ei, argument 42 return local_get_elf_image (as, ei, ip, segbase, mapoff, path, as_arg); 51 *ei = map->ei; 53 if (ei->mapped)
|
H A D | os-hpux.c | 45 tdep_get_elf_image (unw_addr_space_t as, struct elf_image **ei, argument 89 map->ei.size = 0; 90 map->ei.image = NULL; 122 *ei = &map->ei;
|
H A D | os-linux.c | 62 cur_map->ei.valid = false; 63 cur_map->ei.load_attempted = false; 64 cur_map->ei.mapped = false; 65 cur_map->ei.mini_debug_info_data = NULL; 66 cur_map->ei.mini_debug_info_size = 0; 84 struct elf_image ei; local 88 && elf_map_image (&ei, cur_map->path)) 91 if (elf_w (get_load_base) (&ei, offset, &load_base)) 93 munmap (ei.u.mapped.image, ei [all...] |
H A D | elfxx.h | 47 #define GET_FIELD(ei, offset, struct_name, elf_struct, field, check_cached) \ 51 ei, ei->u.memory.start + offset + offsetof(struct_name, field), \ 58 #define GET_EHDR_FIELD(ei, ehdr, field, check_cached) \ 59 GET_FIELD(ei, 0, Elf_W(Ehdr), ehdr, field, check_cached) 61 #define GET_PHDR_FIELD(ei, offset, phdr, field) \ 62 GET_FIELD(ei, offset, Elf_W(Phdr), phdr, field, false) 64 #define GET_SHDR_FIELD(ei, offset, shdr, field) \ 65 GET_FIELD(ei, offset, Elf_W(Shdr), shdr, field, false) 67 #define GET_SYM_FIELD(ei, offse 92 valid_object_mapped(struct elf_image* ei) argument 103 valid_object_memory(struct elf_image* ei) argument 121 elf_map_image(struct elf_image* ei, const char* path) argument [all...] |
H A D | Los-common.c | 52 if (!old_list->ei.valid) 68 new_list->ei = old_list->ei; 70 old_list->ei.mapped = false; 72 old_list->ei.mini_debug_info_data = NULL; 73 old_list->ei.mini_debug_info_size = 0; 176 local_get_elf_image (unw_addr_space_t as, struct elf_image *ei, unw_word_t ip, argument 198 * the map data. The map could be rebuilt and the old ei pointer 201 *ei = map->ei; [all...] |
/external/icu/icu4c/source/common/unicode/ |
H A D | parsepos.h | 143 void setErrorIndex(int32_t ei); 224 ParsePosition::setErrorIndex(int32_t ei) argument 226 this->errorIndex = ei;
|
/external/libunwind/include/ |
H A D | map_info.h | 47 struct elf_image ei; member in struct:map_info
|
/external/clang/test/CodeGenCXX/ |
H A D | debug-info-template-explicit-specialization.cpp | 51 e<int> ei; variable
|
H A D | vtable-linkage.cpp | 56 E<int> ei; local 57 (void)ei;
|
/external/libunwind/src/ptrace/ |
H A D | _UPT_find_proc_info.c | 40 struct elf_image ei; local 66 if (tdep_get_elf_image (as, &ei, pid, ip, &segbase, &mapoff, &path, as_arg) < 0) 69 ret = tdep_find_unwind_table (edi, &ei, as, path, segbase, mapoff, ip);
|
/external/e2fsprogs/lib/ext2fs/ |
H A D | namei.c | 35 struct ext2_inode ei; local 43 retval = ext2fs_read_inode (fs, inode, &ei); 45 if (!LINUX_S_ISLNK (ei.i_mode)) { 52 if (ext2fs_inode_data_blocks(fs,&ei)) { 53 retval = ext2fs_bmap2(fs, inode, &ei, NULL, 0, 0, NULL, &blk); 68 pathname = (char *)&(ei.i_block[0]); 69 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1,
|
/external/icu/icu4c/source/i18n/unicode/ |
H A D | fieldpos.h | 224 * @param ei the new value of the end index 227 void setEndIndex(int32_t ei) { fEndIndex = ei; } argument
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
H A D | ParticleSorter.java | 72 public void qsort( int si, int ei){ argument 74 if(si< ei){ 78 if (ei-si <= 8) { 79 for (int i=si; i <= ei; i++) 99 for(int j = si+1; j<= ei; j++){ 124 qsort(i, ei);
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pt_fetch.c | 67 unsigned i, nr = 0, ei = 0; local 99 key.element[nr].input_format = draw->pt.vertex_element[ei].src_format; 100 key.element[nr].input_buffer = draw->pt.vertex_element[ei].vertex_buffer_index; 101 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset; 102 key.element[nr].instance_divisor = draw->pt.vertex_element[ei].instance_divisor; 106 ei++; 110 key.element[nr].input_format = draw->pt.vertex_element[ei].src_format; 111 key.element[nr].input_buffer = draw->pt.vertex_element[ei].vertex_buffer_index; 112 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset; 113 key.element[nr].instance_divisor = draw->pt.vertex_element[ei] [all...] |
/external/clang/test/CodeGen/ |
H A D | inline.c | 20 // CHECK1-LABEL: define available_externally i32 @ei() 25 // CHECK2-LABEL: define i32 @ei() 58 // CHECK4-LABEL: define weak_odr i32 @ei() 69 extern __inline int ei() { return 123; } function 72 return ei();
|
/external/google-breakpad/src/common/windows/ |
H A D | omap_unittest.cc | 61 std::ostream& operator<<(std::ostream& os, const EndpointIndex& ei) {
argument 62 os << "EndpointIndex(endpoint=" << ei.endpoint
63 << ", index=" << ei.index << ")";
88 EndpointIndex ei = { endpoint, index };
local 89 return ei;
|
/external/libunwind/src/dwarf/ |
H A D | Gfind_unwind_table.c | 36 static bool get_dyn_gp(struct elf_image* ei, Elf_W(Off) dyn_phdr_offset, unw_word_t* gp) { argument 38 GET_PHDR_FIELD(ei, dyn_phdr_offset, &phdr, p_offset); 41 unw_word_t map_size = ei->u.memory.end - ei->u.memory.start; 43 GET_DYN_FIELD(ei, dyn_offset, &dyn, d_tag); 50 GET_DYN_FIELD(ei, dyn_offset, &dyn, d_un.d_ptr); 61 struct elf_image* ei, unw_word_t phdr_offset, unw_word_t load_base, unw_dyn_info_t* di_cache) { 63 GET_PHDR_FIELD(ei, phdr_offset, &phdr, p_offset); 67 if (sizeof(hdr) != elf_w (memory_read) (ei, ei 60 get_eh_frame_info( struct elf_image* ei, unw_word_t phdr_offset, unw_word_t load_base, unw_dyn_info_t* di_cache) argument 126 dwarf_find_unwind_table_memory( struct elf_dyn_info *edi, struct elf_image *ei, unw_addr_space_t as, char *path, unw_word_t segbase, unw_word_t mapoff, unw_word_t ip) argument 239 dwarf_find_unwind_table(struct elf_dyn_info *edi, struct elf_image *ei, unw_addr_space_t as, char *path, unw_word_t segbase, unw_word_t mapoff, unw_word_t ip) argument [all...] |
/external/squashfs-tools/kernel/fs/squashfs/ |
H A D | super.c | 356 struct squashfs_inode_info *ei = foo; local 358 inode_init_once(&ei->vfs_inode); 407 struct squashfs_inode_info *ei = local 410 return ei ? &ei->vfs_inode : NULL;
|
/external/dnsmasq/src/ |
H A D | lease.c | 26 unsigned long ei; local 76 &ei, daemon->dhcp_buff2, daemon->namebuff, 95 if (ei != 0) 96 lease->expires = (time_t)ei + now; 99 lease->length = ei; 103 lease->expires = (time_t)ei;
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_rast_tri_tmp.h | 85 const int ei = plane[j].dcdy - plane[j].dcdx - plane[j].eo; local 86 const int cio = ei * 4 - 1; 185 const int ei = plane[j].dcdy - plane[j].dcdx - plane[j].eo; local 186 const int cio = ei * 16 - 1;
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
H A D | nv50_ir_graph.cpp | 131 EdgeIterator ei = this->outgoing(); local 132 for (; !ei.end(); ei.next()) 133 if (ei.getNode() == node) 135 if (ei.end()) { 139 delete ei.getEdge(); 186 for (EdgeIterator ei = pos->outgoing(); !ei.end(); ei.next()) { 187 if (ei [all...] |
/external/opencv3/modules/imgproc/src/ |
H A D | gcgraph.hpp | 187 int e0 = -1, ei = 0, ej = 0; local 198 for( ei = v->first; ei != 0; ei = edgePtr[ei].next ) 200 if( edgePtr[ei^vt].weight == 0 ) 202 u = vtxPtr+edgePtr[ei].dst; 206 u->parent = ei ^ 1; 219 e0 = ei ^ vt; 226 u->parent = ei [all...] |
/external/tinyalsa/ |
H A D | mixer.c | 135 struct snd_ctl_elem_info *ei = mixer->elem_info + n; local 136 ei->id.numid = eid[n].numid; 137 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_INFO, ei) < 0) 139 mixer->ctl[n].info = ei; 141 if (ei->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) { 142 char **enames = calloc(ei->value.enumerated.items, sizeof(char*)); 146 for (m = 0; m < ei->value.enumerated.items; m++) { 148 tmp.id.numid = ei->id.numid; 261 static int percent_to_int(struct snd_ctl_elem_info *ei, int percent) argument 270 range = (ei 275 int_to_percent(struct snd_ctl_elem_info *ei, int value) argument [all...] |
/external/wpa_supplicant_8/hostapd/src/wps/ |
H A D | wps.c | 652 const char * wps_ei_str(enum wps_error_indication ei) argument 654 switch (ei) {
|