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

1 2 3 4 5

  /external/valgrind/main/memcheck/tests/
unit_oset.c 85 void example1singleset(OSet* oset, char *descr)
92 // Try some operations on an empty OSet to ensure they don't screw up.
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])
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...]
  /bionic/libc/bionic/
pthread_sigmask.cpp 38 int pthread_sigmask(int how, const sigset_t* iset, sigset_t* oset) {
43 // be to ignore 'how' and return the current signal set into 'oset').
56 if (oset != NULL) {
57 *oset = out_set.bionic;
  /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/chromium_org/third_party/openssl/openssl/crypto/
s390xcap.c 16 sigset_t oset; local
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
36 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/openssl/crypto/
s390xcap.c 16 sigset_t oset; local
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
36 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 78 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);
  /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 511 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);
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);
  /external/dropbear/
netbsd_getpass.c 69 sigset_t oset, nset; local
91 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
110 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
  /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/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)
872 vg_assert(oset);
873 stackClear(oset);
875 if (!oset->root)
880 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);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1015.js 38 {get: mkFail("oget"), set: mkFail("oset")});
  /external/v8/test/mjsunit/regress/
regress-1015.js 38 {get: mkFail("oget"), set: mkFail("oset")});
  /bionic/libc/include/
pthread.h 267 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /development/ndk/platforms/android-3/include/
pthread.h 196 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /development/ndk/platforms/android-5/include/
pthread.h 223 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /development/ndk/platforms/android-8/include/
pthread.h 228 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /development/ndk/platforms/android-9/include/
pthread.h 269 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);

Completed in 502 milliseconds

1 2 3 4 5