Searched refs:old_mask (Results 1 - 25 of 28) sorted by relevance

12

/external/strace/tests/
H A Dsxetmask.c59 unsigned long old_mask; member in union:__anon22101
77 rc = k_ssetmask((kernel_ulong_t) 0xfacefeed00000000ULL | uset.old_mask);
88 if (uset.old_mask != uget.old_mask)
91 uget.old_mask, uset.old_mask);
99 if (uget.old_mask != (unsigned long) rc)
101 uget.old_mask);
110 if (uset.old_mask != (unsigned long) rc)
112 uset.old_mask);
[all...]
H A Dsigsuspend.c74 unsigned long old_mask; member in union:__anon22099
90 u.old_mask = -1UL;
92 const unsigned long mask1 = u.old_mask;
94 u.old_mask = -1UL;
96 const unsigned long mask2 = u.old_mask;
H A Dxstatx.c424 unsigned old_mask = TEST_SYSCALL_STATX_MASK; local
453 TEST_SYSCALL_STATX_MASK = old_mask;
/external/strace/tests-m32/
H A Dsxetmask.c59 unsigned long old_mask; member in union:__anon22175
77 rc = k_ssetmask((kernel_ulong_t) 0xfacefeed00000000ULL | uset.old_mask);
88 if (uset.old_mask != uget.old_mask)
91 uget.old_mask, uset.old_mask);
99 if (uget.old_mask != (unsigned long) rc)
101 uget.old_mask);
110 if (uset.old_mask != (unsigned long) rc)
112 uset.old_mask);
[all...]
H A Dsigsuspend.c74 unsigned long old_mask; member in union:__anon22173
90 u.old_mask = -1UL;
92 const unsigned long mask1 = u.old_mask;
94 u.old_mask = -1UL;
96 const unsigned long mask2 = u.old_mask;
H A Dxstatx.c424 unsigned old_mask = TEST_SYSCALL_STATX_MASK; local
453 TEST_SYSCALL_STATX_MASK = old_mask;
/external/strace/tests-mx32/
H A Dsxetmask.c59 unsigned long old_mask; member in union:__anon22249
77 rc = k_ssetmask((kernel_ulong_t) 0xfacefeed00000000ULL | uset.old_mask);
88 if (uset.old_mask != uget.old_mask)
91 uget.old_mask, uset.old_mask);
99 if (uget.old_mask != (unsigned long) rc)
101 uget.old_mask);
110 if (uset.old_mask != (unsigned long) rc)
112 uset.old_mask);
[all...]
H A Dsigsuspend.c74 unsigned long old_mask; member in union:__anon22247
90 u.old_mask = -1UL;
92 const unsigned long mask1 = u.old_mask;
94 u.old_mask = -1UL;
96 const unsigned long mask2 = u.old_mask;
H A Dxstatx.c424 unsigned old_mask = TEST_SYSCALL_STATX_MASK; local
453 TEST_SYSCALL_STATX_MASK = old_mask;
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.create_directory/
H A Dcreate_directory.pass.cpp34 mode_t old_mask = umask(0); local
35 umask(old_mask); // reset the mask to the old value.
36 return static_cast<fs::perms>(old_mask);
/external/squashfs-tools/squashfs-tools/
H A Drestore.c61 sigset_t sigmask, old_mask; local
68 pthread_sigmask(SIG_BLOCK, &sigmask, &old_mask);
H A Dprocess_fragments.c253 sigset_t sigmask, old_mask; local
261 pthread_sigmask(SIG_BLOCK, &sigmask, &old_mask);
H A Dunsquashfs.c2176 sigset_t sigmask, old_mask; local
2194 if(pthread_sigmask(SIG_BLOCK, &sigmask, &old_mask) == -1)
2343 if(pthread_sigmask(SIG_SETMASK, &old_mask, NULL) == -1)
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler_util.h113 unsigned int old_mask,
H A Dradeon_variable.c50 unsigned int old_mask = rc_variable_writemask_sum(var); local
52 rc_make_conversion_swizzle(old_mask, new_writemask);
97 src_index, old_mask)) {
H A Dradeon_compiler_util.c165 unsigned int old_mask,
172 if (!GET_BIT(old_mask, i)
679 * @return A conversion swizzle for converting from old_mask->new_mask
682 unsigned int old_mask,
689 if (!GET_BIT(old_mask, old_idx))
164 rewrite_writemask( unsigned int old_mask, unsigned int conversion_swizzle) argument
681 rc_make_conversion_swizzle( unsigned int old_mask, unsigned int new_mask) argument
H A Dradeon_pair_schedule.c885 unsigned int old_mask = pair_inst->RGB.WriteMask; local
886 unsigned int old_swz = rc_mask_to_swizzle(old_mask);
921 rc_mask_to_swizzle(old_mask));
/external/libunwind/include/
H A Dlibunwind_i.h184 # define SIGPROCMASK(how, new_mask, old_mask) \
185 sigprocmask((how), (new_mask), (old_mask))
187 # define SIGPROCMASK(how, new_mask, old_mask) mark_as_used(old_mask)
/external/syslinux/gpxe/src/drivers/net/ath5k/
H A Dath5k_dma.c550 enum ath5k_int old_mask, int_mask; local
552 old_mask = ah->ah_imr;
559 if (old_mask & AR5K_INT_GLOBAL) {
629 return old_mask;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dforward_error_correction.h235 // |old_bit_index| in |old_mask| to the right most column of the byte pointed
239 // The copied bit is shifted out from |old_mask| and is shifted one step to
243 uint8_t* old_mask, int old_mask_bytes,
H A Dforward_error_correction.cc374 uint8_t* old_mask,
384 new_mask[new_byte_index] |= ((old_mask[old_byte_index] & 0x80) >> 7);
388 old_mask[old_byte_index] <<= 1;
372 CopyColumn(uint8_t* new_mask, int new_mask_bytes, uint8_t* old_mask, int old_mask_bytes, int num_fec_packets, int new_bit_index, int old_bit_index) argument
/external/python/cpython2/Lib/test/
H A Dtest_posix.py404 old_mask = posix.umask(0)
405 self.assertIsInstance(old_mask, int)
406 posix.umask(old_mask)
/external/python/cpython3/Lib/test/
H A Dtest_posix.py617 old_mask = posix.umask(0)
618 self.assertIsInstance(old_mask, int)
619 posix.umask(old_mask)
H A Dtest_pathlib.py2032 old_mask = os.umask(0)
2033 self.addCleanup(os.umask, old_mask)
2046 old_mask = os.umask(0)
2047 self.addCleanup(os.umask, old_mask)
H A Dtest_os.py1118 old_mask = os.umask(0o022)
1124 os.umask(old_mask)
1133 old_mask = os.umask(0o022)
1154 os.umask(old_mask)

Completed in 511 milliseconds

12