HomeSort by relevance Sort by last modified time
    Searched refs:oset (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/valgrind/main/memcheck/tests/
unit_oset.c 85 void example1singleset(OSet* oset, char *descr)
93 // Try some operations on an empty OSet to ensure they don't screw up.
94 vg_assert( ! VG_(OSetGen_Contains)(oset, &v) );
95 vg_assert( ! VG_(OSetGen_Lookup)(oset, &v) );
96 vg_assert( ! VG_(OSetGen_Remove)(oset, &v) );
97 vg_assert( ! VG_(OSetGen_Next)(oset) );
98 vg_assert( 0 == VG_(OSetGen_Size)(oset) );
103 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Word));
118 VG_(OSetGen_Insert)(oset, vs[i])
260 OSet *oset, *oset_empty_clone; local
310 OSet* oset = VG_(OSetWord_Create)(allocate_node, "oset_test.2", free_node); local
469 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first), local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
signal.c 100 pthread_sigmask (int how, sigset_t const *set, sigset_t * oset)
127 if (oset != NULL)
129 memcpy (oset, &(thread.p->sigmask), sizeof (sigset_t));
  /external/libedit/src/
sig.c 72 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...]
el.c 590 sigset_t oset, nset; local
594 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
600 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
  /external/openssl/crypto/
s390xcap.c 16 sigset_t oset; local
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
36 sigprocmask(SIG_SETMASK,&oset,NULL);
armcap.c 75 sigset_t oset; local
100 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
156 sigprocmask(SIG_SETMASK,&oset,NULL);
sparcv9cap.c 172 sigset_t all_masked,oset; local
196 sigprocmask(SIG_SETMASK,&all_masked,&oset);
234 sigprocmask(SIG_SETMASK,&oset,NULL);
  /external/tcpdump/
print-ascii.c 92 register const u_char *cp, register u_int length, register u_int oset)
115 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
118 oset += HEXDUMP_BYTES_PER_LINE;
132 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
149 register u_int oset)
158 (void)printf("%s0x%04x: ", ident, oset);
159 oset += HEXDUMP_BYTES_PER_LINE;
166 (void)printf("%s0x%04x: ", ident, oset);
  /external/valgrind/main/drd/
drd_barrier.c 44 // this member variable is the key of an OSet.
134 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; )
334 OSet* oset; local
411 OSet* oset; local
    [all...]
drd_hb.c 42 // this member variable is the key of an OSet.
94 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);
    [all...]
drd_bitmap.c 48 static OSet* s_bm2_set_template;
109 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; ) {
953 /* It's not possible to have two independent iterators over the same OSet, */
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);
    [all...]
drd_clientobj.h 96 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
139 OSet* thread_info;
drd_bitmap.h 512 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1);
537 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1);
572 bm2 = VG_(OSetGen_AllocNode)(bm->oset, sizeof(*bm2));
574 VG_(OSetGen_Insert)(bm->oset, bm2);
618 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1);
652 bm2 = VG_(OSetGen_Remove)(bm->oset, &a1);
653 VG_(OSetGen_FreeNode)(bm->oset, bm2);
drd_rwlock.c 144 DRD_(lookup_or_insert_node)(OSet* oset, const UWord tid)
148 q = VG_(OSetGen_Lookup)(oset, &tid);
151 q = VG_(OSetGen_AllocNode)(oset, sizeof(*q));
157 VG_(OSetGen_Insert)(oset, q);
pub_drd_bitmap.h 72 OSet* oset; member in struct:bitmap
  /external/openfst/src/include/fst/
interval-set.h 135 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->count_ = 0
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
signal.h 135 int _EXFUN(sigprocmask, (int how, const sigset_t *set, sigset_t *oset));
138 int _EXFUN(pthread_sigmask, (int how, const sigset_t *set, sigset_t *oset));
  /external/valgrind/main/coregrind/
m_oset.c 91 // Internal names for the OSet types.
92 typedef OSet AvlTree;
109 // An OSet (AVL tree). If cmp is NULL, the key must be a UWord, and must
534 vg_assert2(0, "OSet{Word,Gen}_Insert: duplicate element added");
861 // set up 'oset' for iteration so that the first key subsequently
865 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k)
871 vg_assert(oset);
872 stackClear(oset);
874 if (!oset->root)
878 t = oset->root
    [all...]
  /development/ndk/sources/android/libportable/arch-mips/
syscall.c 310 sigset_portable_t *oset; local
316 oset = va_arg(ap, sigset_portable_t *);
320 ret = WRAP(__rt_sigprocmask)(how, set, oset, sigsetsize);
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.c 588 sigset_t oset; local
592 (void)sigprocmask(SIG_BLOCK, &infoset, &oset);
595 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1015.js 38 {get: mkFail("oget"), set: mkFail("oset")});
  /development/ndk/platforms/android-3/include/
pthread.h 202 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /development/ndk/platforms/android-5/include/
pthread.h 229 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /development/ndk/platforms/android-8/include/
pthread.h 234 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /development/ndk/platforms/android-9/include/
pthread.h 271 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);

Completed in 1672 milliseconds

1 2 3 4 5 6