Searched refs:oset (Results 1 - 20 of 20) sorted by relevance

/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c85 void example1singleset(OSet* oset, char *descr) argument
93 vg_assert( ! VG_(OSetGen_Contains)(oset, &v) );
94 vg_assert( ! VG_(OSetGen_Lookup)(oset, &v) );
95 vg_assert( ! VG_(OSetGen_Remove)(oset, &v) );
96 vg_assert( ! VG_(OSetGen_Next)(oset) );
97 vg_assert( 0 == VG_(OSetGen_Size)(oset) );
102 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Word));
116 VG_(OSetGen_Insert)(oset, vs[i]);
120 vg_assert( NN == VG_(OSetGen_Size)(oset) );
124 assert( VG_(OSetGen_Contains)(oset, v
213 OSet *oset, *oset_empty_clone; local
263 OSet* oset = VG_(OSetWord_Create)(allocate_node, "oset_test.2", free_node); local
419 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first), local
[all...]
H A Dunit_oset.stdout.exp1 -- start single oset, no pool allocator ----------------
999 -- end single oset, no pool allocator ----------------
1000 -- start single oset, pool allocator ----------------
1998 -- end single oset, pool allocator ----------------
1999 -- start oset, shared pool ----------------
2997 -- end oset, shared pool ----------------
2998 -- start cloned oset, shared pool ----------------
3996 -- end cloned oset, shared pool ----------------
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsignal.c100 pthread_sigmask (int how, sigset_t const *set, sigset_t * oset) argument
127 if (oset != NULL)
129 memcpy (oset, &(thread.p->sigmask), sizeof (sigset_t));
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Ds390xcap.c16 sigset_t oset; local
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
36 sigprocmask(SIG_SETMASK,&oset,NULL);
H A Dsparcv9cap.c172 sigset_t all_masked,oset; local
196 sigprocmask(SIG_SETMASK,&all_masked,&oset);
234 sigprocmask(SIG_SETMASK,&oset,NULL);
/external/openssl/crypto/
H A Ds390xcap.c16 sigset_t oset; local
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
36 sigprocmask(SIG_SETMASK,&oset,NULL);
H A Dsparcv9cap.c172 sigset_t all_masked,oset; local
196 sigprocmask(SIG_SETMASK,&all_masked,&oset);
234 sigprocmask(SIG_SETMASK,&oset,NULL);
/external/tcpdump/
H A Dprint-ascii.c78 register const u_char *cp, register u_int length, register u_int oset)
101 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
104 oset += HEXDUMP_BYTES_PER_LINE;
118 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
135 register u_int oset)
144 (void)printf("%s0x%04x: ", ident, oset);
145 oset += HEXDUMP_BYTES_PER_LINE;
152 (void)printf("%s0x%04x: ", ident, oset);
77 hex_and_ascii_print_with_offset(register const char *ident, register const u_char *cp, register u_int length, register u_int oset) argument
134 hex_print_with_offset(register const char *ident, register const u_char *cp, register u_int length, register u_int oset) argument
/external/valgrind/main/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_hb.c94 p->oset = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.hb",
107 VG_(OSetGen_ResetIter)(p->oset);
108 for ( ; (r = VG_(OSetGen_Next)(p->oset)) != 0; )
110 VG_(OSetGen_Destroy)(p->oset);
174 q = VG_(OSetGen_Lookup)(p->oset, &word_tid);
177 q = VG_(OSetGen_AllocNode)(p->oset, sizeof(*q));
179 VG_(OSetGen_Insert)(p->oset, q);
180 tl_assert(VG_(OSetGen_Lookup)(p->oset, &word_tid) == q);
214 VG_(OSetGen_ResetIter)(p->oset);
215 for ( ; (q = VG_(OSetGen_Next)(p->oset)) !
[all...]
H A Ddrd_bitmap.c109 bm->oset = VG_(OSetGen_EmptyClone)(s_bm2_set_template);
117 VG_(OSetGen_Destroy)(bm->oset);
351 VG_(OSetGen_ResetIter)(bm->oset);
352 for ( ; (bm2 = VG_(OSetGen_Next)(bm->oset)) != NULL; ) {
957 VG_(OSetGen_ResetIter)(lhs->oset);
958 VG_(OSetGen_ResetIter)(rhs->oset);
960 for ( ; (bm2l = VG_(OSetGen_Next)(lhs->oset)) != 0; )
967 bm2l = VG_(OSetGen_Next)(lhs->oset);
975 bm2r = VG_(OSetGen_Next)(rhs->oset);
998 bm2r = VG_(OSetGen_Next)(rhs->oset);
[all...]
H A Ddrd_clientobj.h96 OSet* oset; // Per-thread order annotation information. member in struct:hb_info
127 OSet* oset[2]; // Per-thread barrier information for the latest member in struct:barrier_info
H A Ddrd_bitmap.h511 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1);
536 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1);
571 bm2 = VG_(OSetGen_AllocNode)(bm->oset, sizeof(*bm2));
573 VG_(OSetGen_Insert)(bm->oset, bm2);
617 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1);
651 bm2 = VG_(OSetGen_Remove)(bm->oset, &a1);
652 VG_(OSetGen_FreeNode)(bm->oset, bm2);
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/dropbear/
H A Dnetbsd_getpass.c69 sigset_t oset, nset; local
91 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
110 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
/external/openfst/src/include/fst/
H A Dinterval-set.h135 void Intersect(const IntervalSet<T> &iset, IntervalSet<T> *oset) const;
139 void Complement(T maxval, IntervalSet<T> *oset) const;
143 void Difference(const IntervalSet<T> &iset, IntervalSet<T> *oset) const;
201 IntervalSet<T> *oset) const {
203 vector<Interval> *ointervals = oset->Intervals();
208 oset->count_ = 0;
220 oset->count_ += interval.end - interval.begin;
232 void IntervalSet<T>::Complement(T maxval, IntervalSet<T> *oset) const {
233 vector<Interval> *ointervals = oset->Intervals();
235 oset
[all...]
/external/valgrind/main/coregrind/
H A Dm_oset.c861 // set up 'oset' for iteration so that the first key subsequently
865 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k) argument
872 vg_assert(oset);
873 stackClear(oset);
875 if (!oset->root)
880 t = oset->root;
885 if (oset->cmp) {
886 cmpresS = (Word)slow_cmp(oset, k, t);
900 stackPush(oset, t, 2);
909 stackPush(oset,
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadelf.c735 OSet *oset; local
751 oset = VG_(OSetGen_Create)( offsetof(TempSym,key),
755 vg_assert(oset);
779 prev = VG_(OSetGen_Lookup)( oset, &key );
839 elem = VG_(OSetGen_AllocNode)(oset, sizeof(TempSym));
847 VG_(OSetGen_Insert)(oset, elem);
849 VG_(printf)(" to-oset [%4ld]: "
863 /* All the syms that matter are in the oset. Now pull them out,
864 build a "standard" symbol table, and nuke the oset. */
867 VG_(OSetGen_ResetIter)( oset );
[all...]
/external/openssh/
H A Dserverloop.c800 sigset_t oset, nset; local
806 sigprocmask(SIG_BLOCK, &nset, &oset);
815 sigprocmask(SIG_SETMASK, &oset, NULL);

Completed in 432 milliseconds