HomeSort by relevance Sort by last modified time
    Searched refs:ei (Results 1 - 25 of 209) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libunwind/src/coredump/
_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->image = NULL
    [all...]
  /external/libunwind/src/
elfxx.h 47 #define GET_FIELD(ei, offset, struct_name, elf_struct, field, check_cached) \
51 ei, ei->u.memory.map->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, offset, sym, field)
    [all...]
os-linux.c 62 cur_map->ei.valid = false;
63 cur_map->ei.load_attempted = false;
64 cur_map->ei.mapped = false;
82 struct elf_image ei; local
86 && elf_map_image (&ei, cur_map->path))
89 if (elf_w (get_load_base) (&ei, offset, &load_base))
91 munmap (ei.u.mapped.image, ei.u.mapped.size);
124 ei.mapped = false;
125 ei.u.memory.map = cur_map
    [all...]
os-common.c 34 tdep_get_elf_image (unw_addr_space_t as, struct elf_image *ei,
42 return local_get_elf_image (as, ei, ip, segbase, mapoff, path, as_arg);
51 *ei = map->ei;
53 if (ei->mapped)
elfxx.c 40 struct elf_image* ei, unw_word_t addr, uint8_t* buffer, size_t bytes, bool string_read) {
41 struct map_info* map = ei->u.memory.map;
42 unw_accessors_t* a = unw_get_accessors (ei->u.memory.as);
50 if ((*a->access_mem) (ei->u.memory.as, addr & ~(sizeof(unw_word_t) - 1), &data_word,
51 0, ei->u.memory.as_arg) != 0) {
73 if ((*a->access_mem) (ei->u.memory.as, addr, &data_word, 0, ei->u.memory.as_arg) != 0) {
93 if ((*a->access_mem) (ei->u.memory.as, addr, &data_word, 0, ei->u.memory.as_arg) != 0) {
111 static bool elf_w (section_table_offset) (struct elf_image* ei, Elf_W(Ehdr)* ehdr, Elf_W(Off)* offset)
587 struct elf_image ei; local
    [all...]
Los-common.c 52 if (!old_list->ei.valid)
68 new_list->ei = old_list->ei;
70 old_list->ei.mapped = false;
166 local_get_elf_image (unw_addr_space_t as, struct elf_image *ei, unw_word_t ip,
187 *ei = map->ei;
189 if (ei->mapped)
os-qnx.c 50 cur_map->ei.size = 0;
51 cur_map->ei.image = NULL;
52 cur_map->ei.shared = 0;
  /external/libunwind/src/dwarf/
Gfind_unwind_table.c 36 static bool get_dyn_gp(struct elf_image* ei, Elf_W(Off) dyn_phdr_offset, unw_word_t* gp) {
38 GET_PHDR_FIELD(ei, dyn_phdr_offset, &phdr, p_offset);
41 unw_word_t map_size = ei->u.memory.map->end - ei->u.memory.map->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->u.memory.map->start +phdr.p_offset
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.java 116 EncodingInfo ei; local
119 ei = (EncodingInfo) _encodingTableKeyJava.get(normalizedEncoding);
120 if (ei == null)
121 ei = (EncodingInfo) _encodingTableKeyMime.get(normalizedEncoding);
122 if (ei == null) {
124 ei = new EncodingInfo(null,null, '\u0000');
127 return ei;
139 EncodingInfo ei; local
142 ei = (EncodingInfo) _encodingTableKeyJava.get(normalizedEncoding);
143 if (ei == null
372 EncodingInfo ei = new EncodingInfo(mimeName, javaName, highChar); local
374 _encodingTableKeyMime.put(mimeName.toUpperCase(), ei); local
376 _encodingTableKeyJava.put(javaName.toUpperCase(), ei); local
481 EncodingInfo ei; local
    [all...]
  /external/libunwind/src/ia64/
Gfind_unwind_table.c 39 Elf64_Ehdr *ehdr = edi->ei.image;
50 Elf64_Dyn *dyn = (Elf64_Dyn *) (pdyn->p_offset + (char *) edi->ei.image);
67 if (soff + ehdr->e_shnum * ehdr->e_shentsize > edi->ei.size)
71 edi->ei.size);
75 shdr = (Elf64_Shdr *) ((char *) edi->ei.image + soff);
76 str_shdr = (Elf64_Shdr *) ((char *) edi->ei.image + str_soff);
77 strtab = (char *) edi->ei.image + str_shdr->sh_offset;
83 gp = ((Elf64_Addr *) ((char *) edi->ei.image + shdr->sh_offset))[1];
90 Debug (16, "image at %p, gp = %lx\n", edi->ei.image, gp);
103 if (!_Uelf64_valid_object (&edi->ei))
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
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.getType() == Edge::BACK || ei.getType() == Edge::DUMMY
    [all...]
nv50_ir_ssa.cpp 101 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) {
102 if (SEMI(ei.getNode()->tag) < 0) {
103 buildDFS(ei.getNode());
104 PARENT(ei.getNode()->tag) = node->tag;
144 for (Graph::EdgeIterator ei = nw->incident(); !ei.end(); ei.next()) {
145 nv = ei.getNode()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
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].instance_divisor
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
AppWorkaroundsTests.java 54 protected EditorInfo enrichEditorInfo(final EditorInfo ei) {
56 ei.packageName = packageNameOfAppBeforeJellyBean;
58 ei.packageName = packageNameOfAppAfterJellyBean;
60 return ei;
ShiftModeTests.java 29 protected EditorInfo enrichEditorInfo(final EditorInfo ei) {
30 ei.inputType |= TextUtils.CAP_MODE_SENTENCES;
31 ei.initialCapsMode = TextUtils.CAP_MODE_SENTENCES;
32 return ei;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/linalg/
graphmatrix.py 85 for ei,e in enumerate(edgelist):
103 A[ui,ei] = -wt
104 A[vi,ei] = wt
106 A[ui,ei] = wt
107 A[vi,ei] = wt
  /external/clang/test/CodeGen/
inline.c 20 // CHECK1-LABEL: define available_externally i32 @ei()
25 // CHECK2-LABEL: define i32 @ei()
56 // CHECK4-LABEL: define weak_odr i32 @ei()
64 extern __inline int ei() { return 123; } function
67 return ei();
  /external/clang/tools/diagtool/
DiagTool.cpp 46 ei = getTools(tools)->end(); it != ei; ++it) {
55 ei = toolNames.end(); it != ei; ++it) {
  /external/llvm/test/MC/Mips/mips1/
invalid-mips32r2.s 10 ei $t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
11 ei # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips3/
invalid-mips32r2.s 10 ei $t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
11 ei # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips4/
invalid-mips32r2.s 10 ei $t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
11 ei # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips5/
invalid-mips32r2.s 10 ei $t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
11 ei # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips64/
invalid-mips32r2.s 10 ei $t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
11 ei # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapUtils.java 53 ExifInterface ei = new ExifInterface(); local
60 ei.readExif(bis);
64 ei.readExif(bis);
66 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION);
  /external/icu/icu4c/source/common/unicode/
parsepos.h 143 void setErrorIndex(int32_t ei);
224 ParsePosition::setErrorIndex(int32_t ei)
226 this->errorIndex = ei;

Completed in 650 milliseconds

1 2 3 4 5 6 7 8 9