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

/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c85 OSet* oset = VG_(OSetGen_Create)(0, local
90 vg_assert( ! VG_(OSetGen_Contains)(oset, &v) );
91 vg_assert( ! VG_(OSetGen_Lookup)(oset, &v) );
92 vg_assert( ! VG_(OSetGen_Remove)(oset, &v) );
93 vg_assert( ! VG_(OSetGen_Next)(oset) );
94 vg_assert( 0 == VG_(OSetGen_Size)(oset) );
99 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Word));
113 VG_(OSetGen_Insert)(oset, vs[i]);
117 vg_assert( NN == VG_(OSetGen_Size)(oset) );
121 assert( VG_(OSetGen_Contains)(oset, v
219 OSet* oset = VG_(OSetWord_Create)(allocate_node, "oset_test.2", free_node); local
375 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first), local
[all...]
/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.c135 p->oset[i] = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.barrier.bi.1",
142 * all the nodes in the OSet p->oset.
150 OSet* oset; local
167 oset = p->oset[1 - (p->pre_iteration & 1)];
168 VG_(OSetGen_ResetIter)(oset);
169 for ( ; (q = VG_(OSetGen_Next)(oset)) != 0; ) {
180 VG_(OSetGen_Destroy)(p->oset[i]);
181 p->oset[i] = NULL;
335 OSet* oset; local
412 OSet* oset; local
[all...]
H A Ddrd_hb.c95 p->oset = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.hb",
108 VG_(OSetGen_ResetIter)(p->oset);
109 for ( ; (r = VG_(OSetGen_Next)(p->oset)) != 0; )
111 VG_(OSetGen_Destroy)(p->oset);
175 q = VG_(OSetGen_Lookup)(p->oset, &word_tid);
178 q = VG_(OSetGen_AllocNode)(p->oset, sizeof(*q));
180 VG_(OSetGen_Insert)(p->oset, q);
181 tl_assert(VG_(OSetGen_Lookup)(p->oset, &word_tid) == q);
215 VG_(OSetGen_ResetIter)(p->oset);
216 for ( ; (q = VG_(OSetGen_Next)(p->oset)) !
[all...]
H A Ddrd_bitmap.c94 bm->oset = VG_(OSetGen_Create)(0, 0, DRD_(bm2_alloc_node),
103 VG_(OSetGen_Destroy)(bm->oset);
920 VG_(OSetGen_ResetIter)(lhs->oset);
921 VG_(OSetGen_ResetIter)(rhs->oset);
923 for ( ; (bm2l = VG_(OSetGen_Next)(lhs->oset)) != 0; )
930 bm2l = VG_(OSetGen_Next)(lhs->oset);
938 bm2r = VG_(OSetGen_Next)(rhs->oset);
961 bm2r = VG_(OSetGen_Next)(rhs->oset);
977 OSet* const tmp = bm1->oset;
978 bm1->oset
[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_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.c145 DRD_(lookup_or_insert_node)(OSet* oset, const UWord tid) argument
149 q = VG_(OSetGen_Lookup)(oset, &tid);
152 q = VG_(OSetGen_AllocNode)(oset, sizeof(*q));
158 VG_(OSetGen_Insert)(oset, q);
H A Dpub_drd_bitmap.h73 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.c784 // set up 'oset' for iteration so that the first key subsequently
788 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k) argument
795 vg_assert(oset);
796 stackClear(oset);
798 if (!oset->root)
803 t = oset->root;
808 if (oset->cmp) {
809 cmpresS = (Word)slow_cmp(oset, k, t);
823 stackPush(oset, t, 2);
832 stackPush(oset,
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadelf.c721 OSet *oset; local
737 oset = VG_(OSetGen_Create)( offsetof(TempSym,key),
741 vg_assert(oset);
765 prev = VG_(OSetGen_Lookup)( oset, &key );
825 elem = VG_(OSetGen_AllocNode)(oset, sizeof(TempSym));
833 VG_(OSetGen_Insert)(oset, elem);
835 VG_(printf)(" to-oset [%4ld]: "
849 /* All the syms that matter are in the oset. Now pull them out,
850 build a "standard" symbol table, and nuke the oset. */
853 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 205 milliseconds