Searched refs:as (Results 1 - 25 of 840) sorted by relevance

1234567891011>>

/external/libunwind/src/mi/
H A DGdestroy_addr_space.c29 unw_destroy_addr_space (unw_addr_space_t as) argument
33 memset (as, 0, sizeof (*as));
36 if (as->map_list)
37 map_destroy_list(as->map_list);
39 free (as);
H A DGget_accessors.c29 unw_get_accessors (unw_addr_space_t as) argument
33 return &as->acc;
H A DGput_dynamic_unwind_info.c29 unwi_put_dynamic_unwind_info (unw_addr_space_t as, unw_proc_info_t *pi, argument
37 unwi_dyn_remote_put_unwind_info (as, pi, arg);
39 if (as != unw_local_addr_space)
40 unwi_dyn_remote_put_unwind_info (as, pi, arg);
48 tdep_put_unwind_info (as, pi, arg);
H A DGget_proc_info_by_ip.c29 unw_get_proc_info_by_ip (unw_addr_space_t as, unw_word_t ip, argument
32 unw_accessors_t *a = unw_get_accessors (as);
35 ret = unwi_find_dynamic_proc_info (as, ip, pi, 0, as_arg);
37 ret = (*a->find_proc_info) (as, ip, pi, 0, as_arg);
H A DGset_caching_policy.c29 unw_set_caching_policy (unw_addr_space_t as, unw_caching_policy_t policy) argument
39 if (policy == as->caching_policy)
42 as->caching_policy = policy;
44 unw_flush_cache (as, 0, 0);
H A Dflush_cache.c29 unw_flush_cache (unw_addr_space_t as, unw_word_t lo, unw_word_t hi) argument
32 struct unw_debug_frame_list *w = as->debug_frames;
36 as->dyn_info_list_addr = 0;
45 as->debug_frames = NULL;
54 fetch_and_add1 (&as->cache_generation);
57 ++as->cache_generation;
/external/libunwind/src/hppa/
H A DGcreate_addr_space.c36 unw_addr_space_t as;
44 as = malloc (sizeof (*as));
45 if (!as)
48 memset (as, 0, sizeof (*as));
50 as->acc = *a;
52 return as;
H A Dget_accessors.c29 unw_get_accessors (unw_addr_space_t as) argument
34 return &as->acc;
H A Dtables.c4 is_local_addr_space (unw_addr_space_t as) argument
8 return (as == _Uhppa_local_addr_space
10 || as == _ULhppa_local_addr_space
16 tdep_find_proc_info (unw_addr_space_t as, unw_word_t ip, argument
24 tdep_search_unwind_table (unw_addr_space_t as, unw_word_t ip, argument
33 tdep_put_unwind_info (unw_addr_space_t as, unw_proc_info_t *pi, void *arg) argument
38 if (!is_local_addr_space (as))
/external/libunwind/src/ppc/
H A DGcreate_addr_space.c38 unw_addr_space_t as;
46 as = malloc (sizeof (*as));
47 if (!as)
50 memset (as, 0, sizeof (*as));
52 as->acc = *a;
54 return as;
/external/libunwind/src/x86/
H A DGcreate_addr_space.c40 unw_addr_space_t as;
48 as = malloc (sizeof (*as));
49 if (!as)
52 memset (as, 0, sizeof (*as));
54 as->acc = *a;
56 return as;
/external/libunwind/src/x86_64/
H A DGcreate_addr_space.c43 unw_addr_space_t as;
51 as = malloc (sizeof (*as));
52 if (!as)
55 memset (as, 0, sizeof (*as));
57 as->acc = *a;
59 return as;
/external/valgrind/exp-sgcheck/tests/
H A Dhsg.stdout.exp1 boringly as expected
/external/libunwind/src/mips/
H A DGcreate_addr_space.c35 unw_addr_space_t as;
46 as = malloc (sizeof (*as));
47 if (!as)
50 memset (as, 0, sizeof (*as));
52 as->acc = *a;
56 as->big_endian = (__BYTE_ORDER == __BIG_ENDIAN);
58 as->big_endian = (byte_order == __BIG_ENDIAN);
61 as
[all...]
/external/libunwind/src/aarch64/
H A DGcreate_addr_space.c37 unw_addr_space_t as;
44 as = malloc (sizeof (*as));
45 if (!as)
48 memset (as, 0, sizeof (*as));
50 as->acc = *a;
54 as->big_endian = 0;
56 as->big_endian = 1;
58 return as;
[all...]
/external/libunwind/src/arm/
H A DGcreate_addr_space.c35 unw_addr_space_t as;
44 as = malloc (sizeof (*as));
45 if (!as)
48 memset (as, 0, sizeof (*as));
50 as->acc = *a;
54 as->big_endian = 0;
56 as->big_endian = 1;
58 return as;
[all...]
/external/libunwind/src/ia64/
H A DGcreate_addr_space.c36 unw_addr_space_t as;
47 as = malloc (sizeof (*as));
49 if (!as)
52 memset (as, 0, sizeof (*as));
54 as->acc = *a;
58 as->big_endian = (__BYTE_ORDER == __BIG_ENDIAN);
60 as->big_endian = (byte_order == __BIG_ENDIAN);
61 return as;
[all...]
/external/libunwind/src/sh/
H A DGcreate_addr_space.c36 unw_addr_space_t as;
43 as = malloc (sizeof (*as));
44 if (!as)
47 memset (as, 0, sizeof (*as));
49 as->acc = *a;
53 as->big_endian = 0;
55 as->big_endian = 1;
57 return as;
[all...]
H A DGis_signal_frame.c72 unw_addr_space_t as; local
77 as = c->dwarf.as;
78 a = unw_get_accessors (as);
83 ret = (*a->access_mem) (as, ip, &w0, 0, arg);
90 ret = (*a->access_mem) (as, ip+4, &w0, 0, arg);
97 ret = (*a->access_mem) (as, ip+8, &w0, 0, arg);
104 ret = (*a->access_mem) (as, ip+12, &w0, 0, arg);
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dctor_sseq.pass.cpp28 unsigned as[] = {3, 5, 7}; local
29 std::seed_seq sseq(as, as+3);
43 unsigned as[] = {3, 5, 7}; local
44 std::seed_seq sseq(as, as+3);
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dctor_sseq.pass.cpp28 unsigned as[] = {3, 5, 7}; local
29 std::seed_seq sseq(as, as+3);
43 unsigned as[] = {3, 5, 7}; local
44 std::seed_seq sseq(as, as+3);
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
H A Dctor_sseq.pass.cpp182 unsigned as[] = {3, 5, 7}; local
183 std::seed_seq sseq(as, as+3);
297 unsigned as[] = {3, 5, 7}; local
298 std::seed_seq sseq(as, as+3);
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
H A Dctor_sseq.pass.cpp28 unsigned as[] = {3, 5, 7}; local
29 std::seed_seq sseq(as, as+3);
43 unsigned as[] = {3, 5, 7}; local
44 std::seed_seq sseq(as, as+3);
/external/libunwind/src/coredump/
H A D_UPT_resume.c30 _UCD_resume (unw_addr_space_t as, unw_cursor_t *c, void *arg) argument
/external/libunwind/src/ppc32/
H A Dget_func_addr.c31 tdep_get_func_addr (unw_addr_space_t as, unw_word_t symbol_val_addr, argument

Completed in 606 milliseconds

1234567891011>>