Home
last modified time | relevance | path

Searched refs:oset (Results 1 – 25 of 28) sorted by relevance

12

/external/valgrind/main/memcheck/tests/
Dunit_oset.c85 void example1singleset(OSet* oset, char *descr) in example1singleset() argument
94 vg_assert( ! VG_(OSetGen_Contains)(oset, &v) ); in example1singleset()
95 vg_assert( ! VG_(OSetGen_Lookup)(oset, &v) ); in example1singleset()
96 vg_assert( ! VG_(OSetGen_Remove)(oset, &v) ); in example1singleset()
97 vg_assert( ! VG_(OSetGen_Next)(oset) ); in example1singleset()
98 vg_assert( 0 == VG_(OSetGen_Size)(oset) ); in example1singleset()
103 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Word)); in example1singleset()
118 VG_(OSetGen_Insert)(oset, vs[i]); in example1singleset()
122 vg_assert( NN == VG_(OSetGen_Size)(oset) ); in example1singleset()
126 assert( VG_(OSetGen_Contains)(oset, vs[i]) ); in example1singleset()
[all …]
/external/valgrind/main/drd/
Ddrd_barrier.c134 p->oset[i] = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.barrier.bi.1", in DRD_()
149 OSet* oset; in barrier_cleanup() local
166 oset = p->oset[1 - (p->pre_iteration & 1)]; in barrier_cleanup()
167 VG_(OSetGen_ResetIter)(oset); in barrier_cleanup()
168 for ( ; (q = VG_(OSetGen_Next)(oset)) != 0; ) { in barrier_cleanup()
179 VG_(OSetGen_Destroy)(p->oset[i]); in barrier_cleanup()
180 p->oset[i] = NULL; in barrier_cleanup()
334 OSet* oset; in DRD_() local
360 oset = p->oset[p->pre_iteration & 1]; in DRD_()
361 tl_assert(oset); in DRD_()
[all …]
Ddrd_hb.c94 p->oset = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.hb", in DRD_()
107 VG_(OSetGen_ResetIter)(p->oset); in DRD_()
108 for ( ; (r = VG_(OSetGen_Next)(p->oset)) != 0; ) in DRD_()
110 VG_(OSetGen_Destroy)(p->oset); in DRD_()
174 q = VG_(OSetGen_Lookup)(p->oset, &word_tid); in DRD_()
177 q = VG_(OSetGen_AllocNode)(p->oset, sizeof(*q)); in DRD_()
179 VG_(OSetGen_Insert)(p->oset, q); in DRD_()
180 tl_assert(VG_(OSetGen_Lookup)(p->oset, &word_tid) == q); in DRD_()
214 VG_(OSetGen_ResetIter)(p->oset); in DRD_()
215 for ( ; (q = VG_(OSetGen_Next)(p->oset)) != 0; ) in DRD_()
Ddrd_bitmap.c109 bm->oset = VG_(OSetGen_EmptyClone)(s_bm2_set_template); in DRD_()
117 VG_(OSetGen_Destroy)(bm->oset); in DRD_()
351 VG_(OSetGen_ResetIter)(bm->oset); in DRD_()
352 for ( ; (bm2 = VG_(OSetGen_Next)(bm->oset)) != NULL; ) { in DRD_()
957 VG_(OSetGen_ResetIter)(lhs->oset); in DRD_()
958 VG_(OSetGen_ResetIter)(rhs->oset); in DRD_()
960 for ( ; (bm2l = VG_(OSetGen_Next)(lhs->oset)) != 0; ) in DRD_()
967 bm2l = VG_(OSetGen_Next)(lhs->oset); in DRD_()
975 bm2r = VG_(OSetGen_Next)(rhs->oset); in DRD_()
998 bm2r = VG_(OSetGen_Next)(rhs->oset); in DRD_()
[all …]
Ddrd_bitmap.h512 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1); in bm2_lookup()
537 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1); in bm2_lookup_exclusive()
572 bm2 = VG_(OSetGen_AllocNode)(bm->oset, sizeof(*bm2)); in bm2_insert()
574 VG_(OSetGen_Insert)(bm->oset, bm2); in bm2_insert()
618 bm2 = VG_(OSetGen_Lookup)(bm->oset, &a1); in bm2_lookup_or_insert()
652 bm2 = VG_(OSetGen_Remove)(bm->oset, &a1); in bm2_remove()
653 VG_(OSetGen_FreeNode)(bm->oset, bm2); in bm2_remove()
Ddrd_clientobj.h96 OSet* oset; // Per-thread order annotation information. member
127 OSet* oset[2]; // Per-thread barrier information for the latest member
Ddrd_rwlock.c144 DRD_(lookup_or_insert_node)(OSet* oset, const UWord tid) in DRD_()
148 q = VG_(OSetGen_Lookup)(oset, &tid); in DRD_()
151 q = VG_(OSetGen_AllocNode)(oset, sizeof(*q)); in DRD_()
157 VG_(OSetGen_Insert)(oset, q); in DRD_()
Dpub_drd_bitmap.h72 OSet* oset; member
/external/libedit/src/
Dsig.c72 sigset_t nset, oset; in sig_handler() local
76 (void) sigprocmask(SIG_BLOCK, &nset, &oset); in sig_handler()
105 (void) sigprocmask(SIG_SETMASK, &oset, NULL); in sig_handler()
117 sigset_t *nset, oset; in sig_init() local
128 (void) sigprocmask(SIG_BLOCK, nset, &oset); in sig_init()
136 (void) sigprocmask(SIG_SETMASK, &oset, NULL); in sig_init()
161 sigset_t oset; in sig_set() local
168 (void) sigprocmask(SIG_BLOCK, &el->el_signal->sig_set, &oset); in sig_set()
177 (void) sigprocmask(SIG_SETMASK, &oset, NULL); in sig_set()
188 sigset_t oset; in sig_clr() local
[all …]
Del.c590 sigset_t oset, nset; in el_resize() local
594 (void) sigprocmask(SIG_BLOCK, &nset, &oset); in el_resize()
600 (void) sigprocmask(SIG_SETMASK, &oset, NULL); in el_resize()
Dterminal.c864 sigset_t oset, nset; in terminal_set() local
869 (void) sigprocmask(SIG_BLOCK, &nset, &oset); in terminal_set()
935 (void) sigprocmask(SIG_SETMASK, &oset, NULL); in terminal_set()
/external/tcpdump/
Dprint-ascii.c92 register const u_char *cp, register u_int length, register u_int oset) in hex_and_ascii_print_with_offset() argument
115 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE, in hex_and_ascii_print_with_offset()
118 oset += HEXDUMP_BYTES_PER_LINE; in hex_and_ascii_print_with_offset()
132 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE, in hex_and_ascii_print_with_offset()
149 register u_int oset) in hex_print_with_offset() argument
158 (void)printf("%s0x%04x: ", ident, oset); in hex_print_with_offset()
159 oset += HEXDUMP_BYTES_PER_LINE; in hex_print_with_offset()
166 (void)printf("%s0x%04x: ", ident, oset); in hex_print_with_offset()
/external/openfst/src/include/fst/
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 { in Intersect() argument
203 vector<Interval> *ointervals = oset->Intervals(); in Intersect()
208 oset->count_ = 0; in Intersect()
220 oset->count_ += interval.end - interval.begin; in Intersect()
232 void IntervalSet<T>::Complement(T maxval, IntervalSet<T> *oset) const { in Complement() argument
233 vector<Interval> *ointervals = oset->Intervals(); in Complement()
235 oset->count_ = 0; in Complement()
[all …]
/external/openssl/crypto/
Ds390xcap.c16 sigset_t oset; in OPENSSL_cpuid_setup() local
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset); in OPENSSL_cpuid_setup()
36 sigprocmask(SIG_SETMASK,&oset,NULL); in OPENSSL_cpuid_setup()
Darmcap.c75 sigset_t oset; in OPENSSL_cpuid_setup() local
100 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset); in OPENSSL_cpuid_setup()
156 sigprocmask(SIG_SETMASK,&oset,NULL); in OPENSSL_cpuid_setup()
Dsparcv9cap.c172 sigset_t all_masked,oset; in OPENSSL_cpuid_setup() local
196 sigprocmask(SIG_SETMASK,&all_masked,&oset); in OPENSSL_cpuid_setup()
234 sigprocmask(SIG_SETMASK,&oset,NULL); in OPENSSL_cpuid_setup()
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dsignal.c100 pthread_sigmask (int how, sigset_t const *set, sigset_t * oset) in pthread_sigmask() argument
127 if (oset != NULL) in pthread_sigmask()
129 memcpy (oset, &(thread.p->sigmask), sizeof (sigset_t)); in pthread_sigmask()
/external/valgrind/main/coregrind/
Dm_oset.c865 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k) in VG_()
871 vg_assert(oset); in VG_()
872 stackClear(oset); in VG_()
874 if (!oset->root) in VG_()
878 t = oset->root; in VG_()
883 if (oset->cmp) { in VG_()
884 cmpresS = (Word)slow_cmp(oset, k, t); in VG_()
898 stackPush(oset, t, 2); in VG_()
907 stackPush(oset, t, 2); in VG_()
/external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
Dsignal.h135 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_debuginfo/
Dreadelf.c820 OSet *oset; in read_elf_symtab__ppc64_linux() local
836 oset = VG_(OSetGen_Create)( offsetof(TempSym,key), in read_elf_symtab__ppc64_linux()
840 vg_assert(oset); in read_elf_symtab__ppc64_linux()
875 prev = VG_(OSetGen_Lookup)( oset, &key ); in read_elf_symtab__ppc64_linux()
935 elem = VG_(OSetGen_AllocNode)(oset, sizeof(TempSym)); in read_elf_symtab__ppc64_linux()
943 VG_(OSetGen_Insert)(oset, elem); in read_elf_symtab__ppc64_linux()
966 VG_(OSetGen_ResetIter)( oset ); in read_elf_symtab__ppc64_linux()
968 while ( (elem = VG_(OSetGen_Next)(oset)) ) { in read_elf_symtab__ppc64_linux()
998 VG_(OSetGen_Destroy)( oset ); in read_elf_symtab__ppc64_linux()
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h173 #define __sanitizer_syscall_pre_sigprocmask(how, set, oset) \ argument
175 (long)(oset))
176 #define __sanitizer_syscall_post_sigprocmask(res, how, set, oset) \ argument
178 (long)(oset))
378 #define __sanitizer_syscall_pre_rt_sigprocmask(how, set, oset, sigsetsize) \ argument
380 (long)(how), (long)(set), (long)(oset), (long)(sigsetsize))
381 #define __sanitizer_syscall_post_rt_sigprocmask(res, how, set, oset, \ argument
384 res, (long)(how), (long)(set), (long)(oset), (long)(sigsetsize))
2089 void __sanitizer_syscall_pre_impl_sigprocmask(long how, long set, long oset);
2091 long oset);
[all …]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
Dbuiltin-stat.c1192 sigset_t set, oset; in sig_atexit() local
1202 sigprocmask(SIG_BLOCK, &set, &oset); in sig_atexit()
1207 sigprocmask(SIG_SETMASK, &oset, NULL); in sig_atexit()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc419 PRE_SYSCALL(sigprocmask)(long how, void *set, void *oset) {}
421 POST_SYSCALL(sigprocmask)(long res, long how, void *set, void *oset) {
424 if (oset) POST_WRITE(oset, old_sigset_t_sz);
684 PRE_SYSCALL(rt_sigprocmask)(long how, void *set, void *oset, long sigsetsize) {}
687 kernel_sigset_t *oset, long sigsetsize) {
690 if (oset) POST_WRITE(oset, sigsetsize);
/external/icu/icu4c/source/data/lang/
Dro.txt379 os{"osetă"}
Dsk.txt380 os{"osetčina"}

12