Searched refs:indexXA (Results 1 - 25 of 40) sorted by relevance

12

/external/valgrind/coregrind/
H A Dm_rangemap.c110 Range* rng = VG_(indexXA)(rm->ranges, i);
120 Range* rng = (Range*)VG_(indexXA)(rm->ranges, i);
138 Range* rng = (Range*)VG_(indexXA)(rm->ranges, ix);
151 Range* rng0 = VG_(indexXA)(ranges, i+0);
152 Range* rng1 = VG_(indexXA)(ranges, i+1);
177 Range* mid_rng = (Range*)VG_(indexXA)(ranges, mid);
190 Range rng_i0 = *(Range*)VG_(indexXA)( ranges, i+0 );
196 Range* rng_i0p = (Range*)VG_(indexXA)( ranges, i+0 );
197 Range* rng_i1p = (Range*)VG_(indexXA)( ranges, i+1 );
208 Range* rng = (Range*)VG_(indexXA)(r
[all...]
H A Dm_xarray.c128 inline void* VG_(indexXA) ( const XArray* xa, Word n ) function
247 midv = VG_(indexXA)( xa, mid );
252 vg_assert(cmpFn( key, VG_(indexXA)(xa, lo) ) >= 0);
253 vg_assert(cmpFn( key, VG_(indexXA)(xa, hi) ) <= 0);
257 && 0 == cmpFn( key, VG_(indexXA)(xa, (*first)-1))) {
264 && 0 == cmpFn( key, VG_(indexXA)(xa, (*last)+1))) {
H A Dm_addrinfo.c104 VG_(indexXA) at zero here? Because VG_(get_data_description)
109 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr1, 0 ))) {
113 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr2, 0 ))) {
590 (HChar*)VG_(indexXA)(ai->Addr.Variable.descr1, 0) );
594 (HChar*)VG_(indexXA)(ai->Addr.Variable.descr2, 0) );
H A Dm_commandline.c241 * (HChar**)VG_(indexXA)( tmp_xarray, i ) );
H A Dm_poolalloc.c84 pa->free_fn (*(UWord **)VG_(indexXA) ( pa->pools, i ));
H A Dm_errormgr.c429 VG_(printf)("%s", (HChar*) VG_(indexXA)(text, 0) );
454 VG_(printf_xml)("%s", (HChar*) VG_(indexXA)(text, 0) );
948 HChar *filename = *(HChar**) VG_(indexXA)(VG_(clo_suppressions),
1252 const HChar* filename = *(HChar**) VG_(indexXA)(VG_(clo_suppressions),
1463 *(HChar**) VG_(indexXA)(VG_(clo_suppressions), i));
1593 HChar *filename = *(HChar**) VG_(indexXA)(VG_(clo_suppressions),
1859 HChar *filename = *(HChar**) VG_(indexXA)(VG_(clo_suppressions),
H A Dm_main.c377 str = * (HChar**) VG_(indexXA)( VG_(args_for_valgrind), i );
502 HChar* arg = * (HChar**) VG_(indexXA)( VG_(args_for_valgrind), i );
1357 HChar* s = *(HChar**)VG_(indexXA)( VG_(args_for_client), i );
1399 * (HChar**) VG_(indexXA)( VG_(args_for_valgrind), i )
1410 * (HChar**) VG_(indexXA)( VG_(args_for_client), i )
1436 * (HChar**) VG_(indexXA)( VG_(args_for_valgrind), i ));
1877 * (HChar**) VG_(indexXA)( VG_(args_for_valgrind), i )
1883 * (HChar**) VG_(indexXA)( VG_(args_for_client), i )
2004 HChar* arg = * (HChar**) VG_(indexXA)( VG_(args_for_client), i );
2369 Addr_n_ULong* anl = VG_(indexXA)( addr2dihandl
[all...]
H A Dm_deduppoolalloc.c126 ddpa->free_fn (*(UWord **)VG_(indexXA) ( ddpa->pools, i ));
H A Dm_redir.c1674 const HChar* clo_spec = *(HChar**) VG_(indexXA)(VG_(clo_req_tsyms), i);
1707 *(HChar**) VG_(indexXA)(fnpatts, i));
1714 const HChar* fnpatt = *(HChar**) VG_(indexXA)(fnpatts, i);
/external/valgrind/include/
H A Dpub_tool_xarray.h119 its address as unchanging. Note also that indexXA will of course
121 extern void* VG_(indexXA) ( const XArray*, Word );
/external/valgrind/coregrind/m_debuginfo/
H A Dreadmacho.c437 && ((DiSym*)VG_(indexXA)(syms,i))->avmas.main
438 == ((DiSym*)VG_(indexXA)(syms,k))->avmas.main;
445 DiSym* next = (DiSym*)VG_(indexXA)(syms,k);
447 DiSym* here = (DiSym*)VG_(indexXA)(syms,m);
463 s_j1 = (DiSym*)VG_(indexXA)(syms, j-1);
464 s_j = (DiSym*)VG_(indexXA)(syms, j);
465 s_i = (DiSym*)VG_(indexXA)(syms, i);
721 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
956 DiSym* cand = (DiSym*) VG_(indexXA)( candSyms, i );
H A Ddebuginfo.c253 ent = (TyEnt*)VG_(indexXA)(di->admin_tyents, i);
264 gexpr = *(GExpr**)VG_(indexXA)(di->admin_gexprs, i);
277 OSet* scope = *(OSet**)VG_(indexXA)(di->varinfo, i);
287 DiVariable* var = (DiVariable*)VG_(indexXA)(arange->vars,j);
410 const DebugInfoMapping* map1 = VG_(indexXA)(di1->fsm.maps, i);
412 const DebugInfoMapping* map2 = VG_(indexXA)(di2->fsm.maps, j);
505 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
524 const DebugInfoMapping* map2 = VG_(indexXA)(di2->fsm.maps, j);
623 const DebugInfoMapping* map = VG_(indexXA)(maps, i);
654 map_i = VG_(indexXA)(map
[all...]
H A Dtytypes.c75 UWord cuOff = *(UWord*)VG_(indexXA)(xa, i);
206 const TyEnt* tyent = VG_(indexXA)( tyents, i );
282 pp_TyBound_C_ishly( tyents, *(UWord*)VG_(indexXA)(xa, w) );
392 res = (TyEnt*)VG_(indexXA)( ents, first );
457 r = UWord__cmp( *(UWord*)VG_(indexXA)( a, i ),
458 *(UWord*)VG_(indexXA)( b, i ) );
712 = *(UWord*)VG_(indexXA)(ent->Te.TyArray.boundRs, i);
789 fieldR = *(UWord*)VG_(indexXA)( fieldRs, i );
872 boundR = *(UWord*)VG_(indexXA)( ty->Te.TyArray.boundRs, 0 );
H A Dreaddwarf3.c111 indexing (VG_(indexXA)) wherever possible after that.
114 VG_(indexXA) into pub_tool_xarray.h so it can be inlined at all use
749 VG_(memcpy)( &gx->payload[0], (UChar*)VG_(indexXA)(xa,0), nbytes );
787 AddrRange* rng1 = (AddrRange*)VG_(indexXA)( rngs1, i );
788 AddrRange* rng2 = (AddrRange*)VG_(indexXA)( rngs2, i );
1679 AddrRange* range = (AddrRange*) VG_(indexXA)( xa, j );
1922 dirname = *(HChar**)VG_(indexXA) ( dirname_xa, dir_xa_ix );
2319 fndn_ix = *(UInt*)VG_(indexXA)( parser->fndn_ix_Table, ftabIx );
2422 AddrRange* range = VG_(indexXA)(xa, 0);
2759 VG_(indexXA)( parse
[all...]
H A Dd3basics.c1144 mul = VG_(indexXA)( results, i );
1160 mul = VG_(indexXA)( results, 0 );
1164 mul2 = VG_(indexXA)( results, i );
H A Dreadelf.c1529 DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
1605 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
1611 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
1695 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, j);
1812 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
1819 const RangeAndBias* reg = VG_(indexXA)(svma_ranges, i);
1825 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
1832 const RangeAndBias* reg = VG_(indexXA)(svma_ranges, i);
1858 RangeAndBias* rng = VG_(indexXA)(svma_ranges, j);
2599 const DebugInfoMapping* map = VG_(indexXA)(d
[all...]
/external/valgrind/exp-sgcheck/
H A Dsg_main.c213 fb1 = VG_(indexXA)( fb1s, i );
214 fb2 = VG_(indexXA)( fb2s, i );
227 StackBlock* sb = (StackBlock*)VG_(indexXA)( sbs, i );
274 StackBlock* pR0 = VG_(indexXA)( orig, r+0 );
275 StackBlock* pR1 = VG_(indexXA)( orig, r+1 );
281 StackBlock* pW = VG_(indexXA)( orig, w );
282 StackBlock* pR = VG_(indexXA)( orig, r );
306 StackBlock* sb0 = VG_(indexXA)( orig, i+0 );
307 StackBlock* sb1 = VG_(indexXA)( orig, i+1 );
339 StackBlock* sb1 = (StackBlock*)VG_(indexXA)( ori
[all...]
H A Dpc_common.c437 (HChar*)VG_(indexXA)( xe->XE.Heap.descr1, 0 ) );
440 (HChar*)VG_(indexXA)( xe->XE.Heap.descr2, 0 ) );
452 (HChar*)VG_(indexXA)( xe->XE.Heap.descr1, 0 ) );
455 (HChar*)VG_(indexXA)( xe->XE.Heap.descr2, 0 ) );
681 to VG_(indexXA) at zero here? Because
686 if (0 == VG_(strlen)( VG_(indexXA)( xe->XE.Heap.descr1, 0 ))
691 if (0 == VG_(strlen)( VG_(indexXA)( xe->XE.Heap.descr2, 0 ))
/external/valgrind/drd/
H A Ddrd_error.c178 VG_(indexXA) at zero here? Because VG_(get_data_description)
183 if (0 == VG_(strlen)( VG_(indexXA)( descr1, 0 ))) {
187 if (0 == VG_(strlen)( VG_(indexXA)( descr2, 0 ))) {
208 print_err_detail("%s%s\n", indent, (HChar*)VG_(indexXA)(descr1, 0));
210 print_err_detail("%s%s\n", indent, (HChar*)VG_(indexXA)(descr2, 0));
H A Ddrd_semaphore.c61 tl_assert(*(Segment**)VG_(indexXA)(p->last_sem_post_seg, n) == sg);
78 sg = *(Segment**)VG_(indexXA)(p->last_sem_post_seg, sz - 1);
/external/valgrind/coregrind/m_initimg/
H A Dinitimg-darwin.c357 VG_(indexXA)( VG_(args_for_client), i ))
445 * (HChar**) VG_(indexXA)( VG_(args_for_client), i )
H A Dinitimg-solaris.c429 VG_(indexXA)(VG_(args_for_client), i)) + 1;
595 &strtab, *(HChar**) VG_(indexXA)(VG_(args_for_client), i));
/external/valgrind/callgrind/
H A Devents.c470 HChar *buf = VG_(strdup)("cl.events.emas", VG_(indexXA)(xa, 0));
503 HChar *buf = VG_(strdup)("cl.events.mas", VG_(indexXA)(xa, 0));
/external/valgrind/helgrind/
H A Dlibhb_core.c2079 thrid2 = *(ThrID*)VG_(indexXA)( thrids, 0 );
2082 thrid2 = *(ThrID*)VG_(indexXA)( thrids, i );
2797 VtsTE* ie = VG_(indexXA)( vts_tab, ii );
2814 ie = VG_(indexXA)( vts_tab, ii );
2842 /* VG_(indexXA) does a range check for us */
2843 ie = VG_(indexXA)( vts_tab, ii );
2854 /* VG_(indexXA) does a range check for us */
2855 ie = VG_(indexXA)( vts_tab, ii );
2877 ie = VG_(indexXA)( vts_tab, in_tab->id );
2882 VtsTE* ie = VG_(indexXA)( vts_ta
[all...]
/external/valgrind/massif/
H A Dms_main.c362 fn_ptr = VG_(indexXA)(fns, i);
2283 HChar* arg = *(HChar**)VG_(indexXA)(args_for_massif, i);
2293 HChar* arg = * (HChar**) VG_(indexXA)( VG_(args_for_client), i );
2503 HChar** fn_ptr = VG_(indexXA)(alloc_fns, i);
2512 HChar** fn_ptr = VG_(indexXA)(ignore_fns, i);

Completed in 507 milliseconds

12