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

1 2 3 4 5

  /external/valgrind/main/memcheck/tests/
unit_oset.c 83 // Create a static OSet of Ints. This one uses fast (built-in)
85 OSet* oset = VG_(OSetGen_Create)(0, local
89 // Try some operations on an empty OSet to ensure they don't screw up.
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))
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...]
  /bionic/libc/stdio/
tmpfile.c 47 sigset_t set, oset; local
57 (void)sigprocmask(SIG_BLOCK, &set, &oset);
69 (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);
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 45 // this member variable is the key of an OSet.
135 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; )
335 OSet* oset; local
412 OSet* oset; local
    [all...]
drd_hb.c 43 // this member variable is the key of an OSet.
95 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);
    [all...]
drd_bitmap.c 94 bm->oset = VG_(OSetGen_Create)(0, 0, DRD_(bm2_alloc_node),
103 VG_(OSetGen_Destroy)(bm->oset);
916 /* It's not possible to have two independent iterators over the same 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
    [all...]
drd_clientobj.h 97 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
140 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 145 DRD_(lookup_or_insert_node)(OSet* oset, const UWord tid)
149 q = VG_(OSetGen_Lookup)(oset, &tid);
152 q = VG_(OSetGen_AllocNode)(oset, sizeof(*q));
158 VG_(OSetGen_Insert)(oset, q);
pub_drd_bitmap.h 73 OSet* oset; member in struct:bitmap
  /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 90 // Internal names for the OSet types.
91 typedef OSet AvlTree;
108 // An OSet (AVL tree). If cmp is NULL, the key must be a UWord, and must
457 vg_assert2(0, "OSet{Word,Gen}_Insert: duplicate element added");
784 // set up 'oset' for iteration so that the first key subsequently
788 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k)
795 vg_assert(oset);
796 stackClear(oset);
798 if (!oset->root)
803 t = oset->root
    [all...]
  /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 265 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
pthread.h 196 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
pthread.h 196 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
pthread.h 196 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
pthread.h 223 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);

Completed in 504 milliseconds

1 2 3 4 5