Searched defs:oset (Results 1 - 14 of 14) sorted by last modified time

/external/valgrind/drd/
H A Ddrd_barrier.c134 p->oset[i] = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.barrier.bi.1",
141 * all the nodes in the OSet p->oset.
149 OSet* oset; local
166 oset = p->oset[1 - (p->pre_iteration & 1)];
167 VG_(OSetGen_ResetIter)(oset);
168 for ( ; (q = VG_(OSetGen_Next)(oset)) != 0; ) {
179 VG_(OSetGen_Destroy)(p->oset[i]);
180 p->oset[i] = NULL;
334 OSet* oset; local
411 OSet* oset; local
[all...]
H A Ddrd_clientobj.h97 OSet* oset; // Per-thread order annotation information. member in struct:hb_info
128 OSet* oset[2]; // Per-thread barrier information for the latest member in struct:barrier_info
H A Ddrd_rwlock.c144 DRD_(lookup_or_insert_node)(OSet* oset, const UWord tid) argument
148 q = VG_(OSetGen_Lookup)(oset, &tid);
151 q = VG_(OSetGen_AllocNode)(oset, sizeof(*q));
157 VG_(OSetGen_Insert)(oset, q);
H A Dpub_drd_bitmap.h72 OSet* oset; member in struct:bitmap
/external/valgrind/memcheck/tests/
H A Dunit_oset.c86 void example1singleset(OSet* oset, char *descr) argument
95 vg_assert( ! VG_(OSetGen_Contains)(oset, &v) );
96 vg_assert( ! VG_(OSetGen_Lookup)(oset, &v) );
97 vg_assert( ! VG_(OSetGen_Remove)(oset, &v) );
98 vg_assert( ! VG_(OSetGen_Next)(oset) );
99 vg_assert( 0 == VG_(OSetGen_Size)(oset) );
104 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Word));
119 VG_(OSetGen_Insert)(oset, vs[i]);
123 vg_assert( NN == VG_(OSetGen_Size)(oset) );
127 assert( VG_(OSetGen_Contains)(oset, v
264 OSet *oset, *oset_empty_clone; local
314 OSet* oset = VG_(OSetWord_Create)(allocate_node, "oset_test.2", free_node); local
473 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first), local
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dreadelf.c917 OSet *oset; local
932 oset = VG_(OSetGen_Create)( offsetof(TempSym,key),
972 prev = VG_(OSetGen_Lookup)( oset, &key );
1032 elem = VG_(OSetGen_AllocNode)(oset, sizeof(TempSym));
1040 VG_(OSetGen_Insert)(oset, elem);
1044 VG_(printf)(" to-oset [%4ld]: "
1059 /* All the syms that matter are in the oset. Now pull them out,
1060 build a "standard" symbol table, and nuke the oset. */
1063 VG_(OSetGen_ResetIter)( oset );
1065 while ( (elem = VG_(OSetGen_Next)(oset)) ) {
[all...]
/external/valgrind/coregrind/
H A Dm_oset.c859 // set up 'oset' for iteration so that the first key subsequently
863 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k) argument
869 vg_assert(oset);
870 stackClear(oset);
872 if (!oset->root)
876 t = oset->root;
881 if (oset->cmp) {
882 cmpresS = (Word)slow_cmp(oset, k, t);
896 stackPush(oset, t, 2);
905 stackPush(oset,
[all...]
/external/tcpdump/
H A Dprint-ascii.c95 register const u_char *cp, register u_int length, register u_int oset)
122 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
125 oset += HEXDUMP_BYTES_PER_LINE;
139 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
157 u_int oset)
170 ND_PRINT((ndo,"%s0x%04x: ", ident, oset));
171 oset += HEXDUMP_BYTES_PER_LINE;
178 ND_PRINT((ndo,"%s0x%04x: ", ident, oset));
94 hex_and_ascii_print_with_offset(netdissect_options *ndo, register const char *ident, register const u_char *cp, register u_int length, register u_int oset) argument
155 hex_print_with_offset(netdissect_options *ndo, const char *ident, const u_char *cp, u_int length, u_int oset) argument
/external/openssh/
H A Dserverloop.c333 sigset_t oset, nset; local
339 sigprocmask(SIG_BLOCK, &nset, &oset);
348 sigprocmask(SIG_SETMASK, &oset, NULL);
/external/ltp/testcases/kernel/syscalls/rt_sigprocmask/
H A Drt_sigprocmask01.c81 sigset_t set, oset; local
109 &oset, SIGSETSIZE));
126 TEST(ltp_syscall(__NR_rt_sigpending, &oset,
132 TEST(sigismember(&oset, TEST_SIG));
141 SIG_UNBLOCK, &set, &oset,
/external/ltp/testcases/realtime/func/pthread_kill_latency/
H A Dpthread_kill_latency.c117 sigset_t set, oset; local
134 if ((ret = pthread_sigmask(SIG_BLOCK, &set, &oset))) {
/external/libedit/src/
H A Del.c590 sigset_t oset, nset; local
594 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
600 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
H A Dsig.c72 sigset_t nset, oset; local
76 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
105 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
117 sigset_t *nset, oset; local
128 (void) sigprocmask(SIG_BLOCK, nset, &oset);
136 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
161 sigset_t oset; local
168 (void) sigprocmask(SIG_BLOCK, &el->el_signal->sig_set, &oset);
177 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
188 sigset_t oset; local
[all...]
H A Dterminal.c864 sigset_t oset, nset; local
869 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
935 (void) sigprocmask(SIG_SETMASK, &oset, NULL);

Completed in 305 milliseconds