HomeSort by relevance Sort by last modified time
    Searched refs:new_mask (Results 1 - 24 of 24) sorted by null

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
posix_signal_blocker.hpp 37 sigset_t new_mask; local
38 sigfillset(&new_mask);
39 blocked_ = (pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_) == 0);
54 sigset_t new_mask; local
55 sigfillset(&new_mask);
56 blocked_ = (pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_) == 0);
  /external/clang/test/CodeGen/
2003-08-21-StmtExpr.c 8 void bar(structty new_mask);
  /external/tensorflow/tensorflow/core/platform/
tracing.cc 53 int64 new_mask = 0; local
81 new_mask &= ~mask;
83 new_mask |= mask;
87 event_mask_ = new_mask;
  /external/syslinux/gpxe/src/drivers/net/ath5k/
ath5k_dma.c 542 * @new_mask: The new interrupt mask to be set
548 enum ath5k_int ath5k_hw_set_imr(struct ath5k_hw *ah, enum ath5k_int new_mask)
568 int_mask = new_mask & AR5K_INT_COMMON;
575 if (new_mask & AR5K_INT_FATAL) {
582 if (new_mask & AR5K_INT_BNR)
585 if (new_mask & AR5K_INT_TIM)
588 if (new_mask & AR5K_INT_TIM)
590 if (new_mask & AR5K_INT_DTIM)
592 if (new_mask & AR5K_INT_DTIM_SYNC)
594 if (new_mask & AR5K_INT_BCN_TIMEOUT
    [all...]
ath5k.h     [all...]
  /bionic/libc/bionic/
syslog.cpp 35 int setlogmask(int new_mask) {
38 if (new_mask != 0) {
39 syslog_priority_mask = new_mask;
signal.cpp 237 sigset64_t new_mask = {}; local
238 sigaddset64(&new_mask, sig);
240 if (sigprocmask64(disp == SIG_HOLD ? SIG_BLOCK : SIG_UNBLOCK, &new_mask, &old_mask) == -1) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler_util.h 71 unsigned int new_mask);
114 unsigned int new_mask);
radeon_compiler_util.c 168 unsigned int new_mask = 0; local
176 new_mask |= (1 << GET_SWZ(conversion_swizzle, i));
179 return new_mask;
679 * @return A conversion swizzle for converting from old_mask->new_mask
683 unsigned int new_mask)
692 if (GET_BIT(new_mask, new_idx)) {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
forward_error_correction.h 226 // Inserts |num_zeros| zero columns into |new_mask| at position
227 // |new_bit_index|. If the current byte of |new_mask| can't fit all zeros, the
230 static void InsertZeroColumns(int num_zeros, uint8_t* new_mask,
236 // to by |new_bit_index| in |new_mask|. |old_mask_bytes| and |new_mask_bytes|
240 // the left in |new_mask|. |new_mask| will contain "xxxx xxn0" after this
242 static void CopyColumn(uint8_t* new_mask, int new_mask_bytes,
forward_error_correction.cc 293 uint8_t* new_mask = NULL; local
315 new_mask = new uint8_t[num_fec_packets * kMaskSizeLBitSet];
316 memset(new_mask, 0, num_fec_packets * kMaskSizeLBitSet);
323 CopyColumn(new_mask, new_mask_bytes, packet_mask, num_mask_bytes,
337 InsertZeroColumns(zeros_to_insert, new_mask, new_mask_bytes,
341 CopyColumn(new_mask, new_mask_bytes, packet_mask, num_mask_bytes,
351 new_mask[new_byte_index] <<= (7 - (new_bit_index % 8));
355 memcpy(packet_mask, new_mask, kMaskSizeLBitSet * num_fec_packets);
356 delete[] new_mask;
361 uint8_t* new_mask,
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_st.c 204 unsigned statt_mask, new_mask, i; local
214 new_mask = statt_mask & ~xstfb->texture_mask;
226 if (resized || new_mask) {
239 (new_mask & (1 << front)) &&
240 !(new_mask & (1 << back))) {
  /frameworks/native/cmds/installd/
otapreopt_parameters.cpp 111 static int ReplaceMask(int input, int old_mask, int new_mask) {
112 return (input & old_mask) != 0 ? new_mask : 0;
  /external/tensorflow/tensorflow/contrib/model_pruning/python/
pruning.py 487 new_mask: A numpy array of the same size and shape as weights containing
518 new_mask = math_ops.cast(
520 return smoothed_threshold, new_mask
536 new_mask: A numpy array of the same size and shape as weights containing
564 smoothed_threshold, new_mask = self._update_mask(pooled_weights,
568 new_mask,
605 new_threshold, new_mask = self._maybe_update_block_mask(weight, threshold)
609 _partitioned_variable_assign(mask, new_mask)
610 if is_partitioned else _variable_assign(mask, new_mask))
pruning_test.py 126 _, new_mask = p._maybe_update_block_mask(weights, threshold)
128 self.assertAllEqual(new_mask.get_shape(), weights.get_shape())
129 mask_val = new_mask.eval()
  /external/libunwind/include/
libunwind_i.h 184 # 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/v8/src/heap/
marking.h 30 CellType new_mask = mask_ << 1; local
31 if (new_mask == 0) {
34 return MarkBit(cell_, new_mask);
  /external/mesa3d/src/gallium/state_trackers/dri/
dri_drawable.c 55 unsigned statt_mask, new_mask; local
68 new_mask = (statt_mask & ~drawable->texture_mask);
79 if (new_stamp || new_mask || screen->broken_invalidate) {
  /hardware/intel/common/libwsbm/src/
wsbm_slabpool.c 362 uint32_t new_mask = local
366 if (new_mask) {
372 req->set_placement = slabPool->proposedPlacement & new_mask;
373 req->clr_placement = ~slabPool->proposedPlacement & new_mask;
  /toolchain/binutils/binutils-2.27/gas/config/
tc-frv.c 1552 flagword new_mask = ~ (flagword)0; local
    [all...]
tc-xgate.c 852 xgate_apply_operand (unsigned short new_mask,
881 new_mask <<= N_BITS_IN_WORD - (n_shifts + n_bits);
882 mask |= new_mask;
    [all...]
  /external/mesa3d/src/gallium/drivers/virgl/
virgl_context.c 702 uint32_t new_mask = 0; local
721 new_mask |= 1 << i;
730 tinfo->enabled_mask |= new_mask;
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_state_common.c 423 uint32_t new_mask = 0; local
447 new_mask |= 1 << i;
458 dst->states.enabled_mask |= new_mask;
459 dst->states.dirty_mask |= new_mask;
613 uint32_t new_mask = 0; local
667 new_mask |= 1 << i;
677 dst->views.enabled_mask |= new_mask;
678 dst->views.dirty_mask |= new_mask;
    [all...]
  /external/valgrind/VEX/priv/
guest_arm_toIR.c 2943 IRTemp old_mask, new_mask, cur_mask; local
    [all...]

Completed in 943 milliseconds