Searched defs:nyu (Results 1 - 12 of 12) sorted by relevance

/external/valgrind/main/helgrind/tests/
H A Dannotate_hbefore.c27 UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
49 : /*in*/ "b"(addr), "b"(nyu)
60 UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
82 : /*in*/ "b"(addr), "b"(nyu)
93 UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
95 UWord block[4] = { (UWord)addr, expected, nyu, 2 };
99 "movq 16(%%rsi), %%rbx" "\n\t" // nyu
116 UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
118 UWord block[4] = { (UWord)addr, expected, nyu, 2 };
123 "movl 8(%%esi), %%ebx" "\n\t" // nyu
294 UWord nyu = old + 1; local
[all...]
/external/valgrind/main/coregrind/
H A Dm_sparsewa.c102 UChar nyu = old | (1 << off); local
103 arr[bix] = nyu;
111 UChar nyu = old & ~(1 << off); local
112 arr[bix] = nyu;
H A Dm_xarray.c85 struct _XArray* nyu; local
92 nyu = xa->alloc( nyu_cc, sizeof(struct _XArray) );
93 if (!nyu)
96 *nyu = *xa;
97 nyu->cc = nyu_cc;
99 if (nyu->arr) {
105 nyu->totsizeE = nyu->usedsizeE;
107 nyu->arr = nyu
[all...]
H A Dm_wordfm.c508 AvlNode* nyu; local
511 nyu = alloc_nofail(cc, sizeof(AvlNode));
512 tl_assert(nyu);
514 nyu->child[0] = nd->child[0];
515 nyu->child[1] = nd->child[1];
516 nyu->balance = nd->balance;
520 nyu->key = dopyK( nd->key );
521 if (nd->key != 0 && nyu->key == 0)
525 nyu->key = nd->key;
530 nyu
807 WordFM* nyu; local
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dstorage.c819 DiAddrRange* nyu; local
826 nyu = VG_(OSetGen_AllocNode)( scope, sizeof(DiAddrRange) );
827 vg_assert(nyu);
828 nyu->aMin = aMin;
829 nyu->aMax = tmp;
830 vg_assert(nyu->aMin <= nyu->aMax);
833 nyu->vars = VG_(cloneXA)( "di.storage.avta.1", first->vars );
834 vg_assert(nyu->vars);
835 VG_(OSetGen_Insert)( scope, nyu );
849 DiAddrRange* nyu; local
1035 DiAddrRange* nyu; local
[all...]
/external/valgrind/main/cachegrind/
H A Dcg_merge.c1336 AvlNode* nyu; local
1339 nyu = alloc_nofail(sizeof(AvlNode));
1340 assert(nyu);
1342 nyu->left = nd->left;
1343 nyu->right = nd->right;
1344 nyu->balance = nd->balance;
1348 nyu->key = dopyK( nd->key );
1349 if (nd->key != 0 && nyu->key == 0)
1353 nyu->key = nd->key;
1358 nyu
1539 WordFM* nyu; local
[all...]
/external/valgrind/main/exp-sgcheck/
H A Dsg_main.c547 StackTreeNode* nyu; local
551 nyu = sg_malloc( "di.sg_main.abtST.1", sizeof(StackTreeNode) );
552 nyu->addr = addr;
553 nyu->szB = descr->szB;
554 nyu->descr = descr;
555 nyu->depth = depth;
557 already_present = VG_(addToFM)( sitree, (UWord)nyu, 0 );
690 GlobalTreeNode *nyu, *nd; local
695 nyu = sg_malloc( "di.sg_main.abtG.1", sizeof(GlobalTreeNode) );
696 nyu
[all...]
/external/valgrind/main/helgrind/
H A Dlibhb_core.c863 LineF* nyu; local
882 nyu = HG_(zalloc)( "libhb.aFfw.1 (LineF storage)",
884 tl_assert(nyu);
895 nyu[i].inUse = False;
900 nyu[i] = sm->linesF[i];
906 sm->linesF = nyu;
2442 ThrID nyu; local
2443 nyu = Thr__to_ThrID(thr);
2444 VG_(addToXA)( verydead_thread_table, &nyu );
/external/valgrind/main/memcheck/
H A Dmc_main.c569 AuxMapEnt *nyu, *res; local
580 nyu = (AuxMapEnt*) VG_(OSetGen_AllocNode)( auxmap_L2, sizeof(AuxMapEnt) );
581 tl_assert(nyu);
582 nyu->base = a;
583 nyu->sm = &sm_distinguished[SM_DIST_NOACCESS];
584 VG_(OSetGen_Insert)( auxmap_L2, nyu );
585 insert_into_auxmap_L1_at( AUXMAP_L1_INSERT_IX, nyu );
587 return nyu;
/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c963 IRTemp nyu = newTemp(Ity_I32); local
964 assign(nyu, binop(Iop_Or32, mkexpr(old), e) );
965 put_QFLAG32(nyu, condT);
H A Dguest_amd64_toIR.c4764 IRTemp nyu = IRTemp_INVALID; local
4776 nyu = newTemp(ty);
4777 assign(nyu,
4785 old = nyu;
4787 return nyu;
4791 IRTemp nyu = IRTemp_INVALID; local
4804 nyu = newTemp(ty);
4805 assign(nyu,
4813 old = nyu;
4815 return nyu;
4819 IRTemp nyu = IRTemp_INVALID; local
[all...]
H A Dguest_ppc_toIR.c1408 IRTemp nyu = IRTemp_INVALID; local
1425 nyu = newTemp(ty);
1426 assign(nyu,
1434 old = nyu;
1436 return nyu;
1454 nyu = newTemp( Ity_I64 );
1455 assign( nyu,
1461 old = nyu;
1463 return nyu;

Completed in 2026 milliseconds