Home
last modified time | relevance | path

Searched refs:new_mask (Results 1 – 16 of 16) sorted by relevance

/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dposix_signal_blocker.hpp37 sigset_t new_mask; in posix_signal_blocker() local
38 sigfillset(&new_mask); in posix_signal_blocker()
39 blocked_ = (pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_) == 0); in posix_signal_blocker()
54 sigset_t new_mask; in block() local
55 sigfillset(&new_mask); in block()
56 blocked_ = (pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_) == 0); in block()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dforward_error_correction.cc293 uint8_t* new_mask = NULL; in InsertZerosInBitMasks() local
315 new_mask = new uint8_t[num_fec_packets * kMaskSizeLBitSet]; in InsertZerosInBitMasks()
316 memset(new_mask, 0, num_fec_packets * kMaskSizeLBitSet); in InsertZerosInBitMasks()
323 CopyColumn(new_mask, new_mask_bytes, packet_mask, num_mask_bytes, in InsertZerosInBitMasks()
337 InsertZeroColumns(zeros_to_insert, new_mask, new_mask_bytes, in InsertZerosInBitMasks()
341 CopyColumn(new_mask, new_mask_bytes, packet_mask, num_mask_bytes, in InsertZerosInBitMasks()
351 new_mask[new_byte_index] <<= (7 - (new_bit_index % 8)); in InsertZerosInBitMasks()
355 memcpy(packet_mask, new_mask, kMaskSizeLBitSet * num_fec_packets); in InsertZerosInBitMasks()
356 delete[] new_mask; in InsertZerosInBitMasks()
361 uint8_t* new_mask, in InsertZeroColumns() argument
[all …]
Dforward_error_correction.h230 static void InsertZeroColumns(int num_zeros, uint8_t* new_mask,
242 static void CopyColumn(uint8_t* new_mask, int new_mask_bytes,
/external/tensorflow/tensorflow/contrib/model_pruning/python/
Dpruning.py416 new_mask = math_ops.cast(
420 return smoothed_threshold, new_mask
477 smoothed_threshold, new_mask = self._update_mask(pooled_weights,
480 updated_mask = pruning_utils.expand_tensor(new_mask, self._block_dim)
511 new_threshold, new_mask = self._maybe_update_block_mask(weight, threshold)
516 pruning_utils.partitioned_variable_assign(mask, new_mask)
517 if is_partitioned else pruning_utils.variable_assign(mask, new_mask))
Dpruning_test.py127 _, new_mask = p._maybe_update_block_mask(weights, threshold)
129 self.assertAllEqual(new_mask.get_shape(), weights.get_shape())
130 mask_val = new_mask.eval()
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dxm_st.c205 unsigned statt_mask, new_mask, i; in xmesa_st_framebuffer_validate() local
215 new_mask = statt_mask & ~xstfb->texture_mask; in xmesa_st_framebuffer_validate()
227 if (resized || new_mask) { in xmesa_st_framebuffer_validate()
240 (new_mask & (1 << front)) && in xmesa_st_framebuffer_validate()
241 !(new_mask & (1 << back))) { in xmesa_st_framebuffer_validate()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler_util.h71 unsigned int new_mask);
114 unsigned int new_mask);
Dradeon_compiler_util.c168 unsigned int new_mask = 0; in rewrite_writemask() local
176 new_mask |= (1 << GET_SWZ(conversion_swizzle, i)); in rewrite_writemask()
179 return new_mask; in rewrite_writemask()
683 unsigned int new_mask) in rc_make_conversion_swizzle() argument
692 if (GET_BIT(new_mask, new_idx)) { in rc_make_conversion_swizzle()
/external/libunwind/include/
Dlibunwind_i.h184 # define SIGPROCMASK(how, new_mask, old_mask) \ argument
185 sigprocmask((how), (new_mask), (old_mask))
187 # define SIGPROCMASK(how, new_mask, old_mask) mark_as_used(old_mask) argument
/external/v8/src/heap/
Dmarking.h29 CellType new_mask = mask_ << 1; in Next() local
30 if (new_mask == 0) { in Next()
33 return MarkBit(cell_, new_mask); in Next()
/external/clang/test/CodeGen/
D2003-08-21-StmtExpr.c8 void bar(structty new_mask);
/external/mesa3d/src/gallium/state_trackers/dri/
Ddri_drawable.c57 unsigned statt_mask, new_mask; in dri_st_framebuffer_validate() local
70 new_mask = (statt_mask & ~drawable->texture_mask); in dri_st_framebuffer_validate()
81 if (new_stamp || new_mask || screen->broken_invalidate) { in dri_st_framebuffer_validate()
/external/grpc-grpc/src/core/lib/iomgr/
Dev_epollsig_linux.cc1298 sigset_t new_mask; local
1337 sigemptyset(&new_mask);
1338 sigaddset(&new_mask, grpc_wakeup_signal);
1339 pthread_sigmask(SIG_BLOCK, &new_mask, &g_orig_sigmask);
/external/mesa3d/src/gallium/drivers/r600/
Dr600_state_common.c451 uint32_t new_mask = 0; in r600_bind_sampler_states() local
475 new_mask |= 1 << i; in r600_bind_sampler_states()
486 dst->states.enabled_mask |= new_mask; in r600_bind_sampler_states()
487 dst->states.dirty_mask |= new_mask; in r600_bind_sampler_states()
627 uint32_t new_mask = 0; in r600_set_sampler_views() local
681 new_mask |= 1 << i; in r600_set_sampler_views()
691 dst->views.enabled_mask |= new_mask; in r600_set_sampler_views()
692 dst->views.dirty_mask |= new_mask; in r600_set_sampler_views()
/external/mesa3d/src/gallium/drivers/virgl/
Dvirgl_context.c694 uint32_t new_mask = 0; in virgl_set_sampler_views() local
713 new_mask |= 1 << i; in virgl_set_sampler_views()
722 tinfo->enabled_mask |= new_mask; in virgl_set_sampler_views()
/external/mesa3d/src/amd/common/
Dac_nir_to_llvm.c2449 uint32_t new_mask = 0; in widen_mask() local
2452 new_mask |= ((1u << multiplier) - 1u) << (i * multiplier); in widen_mask()
2453 return new_mask; in widen_mask()