| /src/sys/arch/xen/include/ |
| xenpmap.h | 133 pt_entry_t new_val, unsigned long flags) 138 mcl->args[1] = new_val; 141 mcl->args[1] = (new_val & 0xffffffff); 142 mcl->args[2] = (new_val >> 32); 150 pt_entry_t new_val, unsigned long flags, domid_t domid) 155 mcl->args[1] = new_val; 159 mcl->args[1] = (new_val & 0xffffffff); 160 mcl->args[2] = (new_val >> 32);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_gt_pm_irq.c | 41 u32 new_val; local 47 new_val = gt->pm_imr; 48 new_val &= ~interrupt_mask; 49 new_val |= ~enabled_irq_mask & interrupt_mask; 51 if (new_val != gt->pm_imr) { 52 gt->pm_imr = new_val;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_atomic_test.cc | 99 Type new_val = 24; local 101 EXPECT_TRUE(atomic_compare_exchange_strong((T*)&var, &old_val, new_val, 103 EXPECT_FALSE(atomic_compare_exchange_strong((T*)&var, &old_val, new_val, 105 EXPECT_EQ(new_val, old_val); 109 Type new_val = 24; local 111 EXPECT_TRUE(atomic_compare_exchange_weak((T*)&var, &old_val, new_val, 113 EXPECT_FALSE(atomic_compare_exchange_weak((T*)&var, &old_val, new_val, 115 EXPECT_EQ(new_val, old_val);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
| trace.h | 278 TP_PROTO(int id, char *reg_name, unsigned int reg, unsigned int new_val, 281 TP_ARGS(id, reg_name, reg, new_val, old_val, changed), 287 __field(unsigned int, new_val) 296 __entry->new_val = new_val; 302 __entry->id, __entry->buf, __entry->reg, __entry->new_val, 350 unsigned int old_val, unsigned int new_val), 352 TP_ARGS(old_id, new_id, action, reg, old_val, new_val), 360 __field(unsigned int, new_val) 369 __entry->new_val = new_val [all...] |
| /src/external/bsd/zstd/dist/contrib/diagnose_corruption/ |
| check_flipped_bits.c | 340 unsigned char new_val = old_val ^ (1 << bit); local 341 stuff->perturbed[pos] = new_val; 347 pos, bit, old_val, new_val); 357 size_t new_val; local 363 for (new_val = 0; new_val < 256; new_val++) { 364 stuff->perturbed[pos] = new_val; 370 pos, old_val, (unsigned char)new_val);
|
| /src/external/bsd/jemalloc/dist/test/unit/ |
| background_thread.c | 6 test_switch_background_thread_ctl(bool new_val) { 10 e1 = new_val;
|
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| background_thread.c | 6 test_switch_background_thread_ctl(bool new_val) { 10 e1 = new_val;
|
| /src/bin/ksh/ |
| c_sh.c | 114 int positions, new_val; local 135 new_val = 0; 138 case 'r': new_val |= 04; break; 139 case 'w': new_val |= 02; break; 140 case 'x': new_val |= 01; break; 141 case 'u': new_val |= old_umask >> 6; 143 case 'g': new_val |= old_umask >> 3; 145 case 'o': new_val |= old_umask >> 0; 148 new_val |= 01; 153 new_val = (new_val & 07) * positions [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/tools/gbench/ |
| report.py | 60 def calculate_change(old_val, new_val): 62 Return a float representing the decimal change between old_val and new_val. 64 if old_val == 0 and new_val == 0: 67 return float(new_val - old_val) / (float(old_val + new_val) / 2) 68 return float(new_val - old_val) / abs(old_val)
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_interface_inl.h | 85 void __tsan_vptr_update(void **vptr_p, void *new_val) { 87 if (*vptr_p != new_val) {
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/ |
| insert_fn_imps.hpp | 165 swap_value_imp(entry_pointer p_e, value_type new_val, true_type) 166 { *p_e = new_val; }
|
| /src/sys/arch/amd64/include/xen/ |
| hypercalls.h | 239 unsigned long va, unsigned long new_val, unsigned long flags) 241 return _hypercall3(int, update_va_mapping, va, new_val, flags); 291 unsigned long va, unsigned long new_val, unsigned long flags, 295 new_val, flags, domid);
|
| /src/sys/arch/i386/include/xen/ |
| hypercalls.h | 262 HYPERVISOR_update_va_mapping(unsigned long page_nr, pt_entry_t new_val, 269 pte_low = new_val & 0xffffffff; 270 pte_hi = new_val >> 32; 279 page_nr, new_val, flags); 287 pt_entry_t new_val, unsigned long flags, domid_t domid) 293 pte_low = new_val & 0xffffffff; 294 pte_hi = new_val >> 32;
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| value-prof.cc | 361 histogram_value new_val; local 370 new_val = gimple_alloc_histogram_value (cfun, type, stmt); 374 new_val->hdata.intvl.int_start = streamer_read_hwi (ib); 375 new_val->hdata.intvl.steps = streamer_read_uhwi (ib); 376 ncounters = new_val->hdata.intvl.steps + 2; 402 new_val->hvalue.counters = XNEWVAR (gcov_type, 403 sizeof (*new_val->hvalue.counters) 405 new_val->hvalue.counters[0] = total; 406 new_val->hvalue.counters[1] = ncounters; 407 new_val->n_counters = 2 + 2 * ncounters 459 histogram_value new_val = gimple_alloc_histogram_value (fun, val->type); local [all...] |
| tree-ssa-ccp.cc | 432 valid_lattice_transition (ccp_prop_value_t old_val, ccp_prop_value_t new_val) 436 if (old_val.lattice_val < new_val.lattice_val) 439 if (old_val.lattice_val != new_val.lattice_val) 442 if (!old_val.value && !new_val.value) 450 && TREE_CODE (new_val.value) == SSA_NAME) 455 && TREE_CODE (new_val.value) == SSA_NAME) 461 && TREE_CODE (new_val.value) == INTEGER_CST) 466 && TREE_CODE (new_val.value) == INTEGER_CST) 467 return (wi::bit_and_not (wi::to_widest (old_val.value), new_val.mask) 468 == wi::bit_and_not (wi::to_widest (new_val.value), new_val.mask)) 1142 ccp_prop_value_t new_val; local [all...] |
| combine-stack-adj.cc | 288 rtx new_val; 291 new_val = replace_equiv_address_nv (*ml->ref, new_addr); 293 new_val = new_addr; 295 new_val = lowpart_subreg (GET_MODE (*ml->ref), new_addr, 297 validate_change (ml->insn, ml->ref, new_val, 1); 287 rtx new_val; local
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BPFISelDAGToDAG.cpp | 251 } new_val; // hold up the constant values replacing loads. local 279 getConstantFieldValue(GADN, CDN->getZExtValue(), size, new_val.c); 287 to_replace = getConstantFieldValue(GADN, 0, size, new_val.c); 296 val = new_val.c[0]; 298 val = new_val.s; 300 val = new_val.i; 302 val = new_val.d;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
| tsan_test_util.h | 98 void VptrUpdate(const MemLoc &vptr, const MemLoc &new_val,
|
| tsan_test_util_posix.cc | 404 const MemLoc &new_val, 406 Event event(Event::VPTR_UPDATE, vptr.loc(), (uptr)new_val.loc());
|
| /src/usr.sbin/sysinst/ |
| partitions.h | 344 part_id, size_t attr_no, long new_val); 347 part_id, size_t attr_no, const char *new_val);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_interface.inc | 148 void __tsan_vptr_update(void **vptr_p, void *new_val) { 149 if (*vptr_p == new_val)
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/gbench/ |
| report.py | 71 def calculate_change(old_val, new_val): 73 Return a float representing the decimal change between old_val and new_val. 75 if old_val == 0 and new_val == 0: 78 return float(new_val - old_val) / (float(old_val + new_val) / 2) 79 return float(new_val - old_val) / abs(old_val)
|
| /src/external/gpl3/binutils/dist/gas/config/ |
| tc-hppa.c | 1697 offsetT new_val; 1761 new_val = ((fmt == 12 || fmt == 17 || fmt == 22) ? 8 : 0); 1770 new_val = ((fmt == 12 || fmt == 17 || fmt == 22) ? 8 : 0); 1773 new_val = hppa_field_adjust (* valP, 0, hppa_fixP->fx_r_field); 1796 new_val = hppa_field_adjust (* valP, 0, hppa_fixP->fx_r_field); 1802 CHECK_FIELD_WHERE (new_val, 8191, -8192, 1804 val = new_val; 1810 CHECK_FIELD_WHERE (new_val, 8191, -8192, 1812 val = new_val; 1819 CHECK_FIELD_WHERE (new_val, 8191, -8192 1695 offsetT new_val; local [all...] |
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| tc-hppa.c | 1697 offsetT new_val; 1761 new_val = ((fmt == 12 || fmt == 17 || fmt == 22) ? 8 : 0); 1770 new_val = ((fmt == 12 || fmt == 17 || fmt == 22) ? 8 : 0); 1773 new_val = hppa_field_adjust (* valP, 0, hppa_fixP->fx_r_field); 1796 new_val = hppa_field_adjust (* valP, 0, hppa_fixP->fx_r_field); 1802 CHECK_FIELD_WHERE (new_val, 8191, -8192, 1804 val = new_val; 1810 CHECK_FIELD_WHERE (new_val, 8191, -8192, 1812 val = new_val; 1819 CHECK_FIELD_WHERE (new_val, 8191, -8192 1695 offsetT new_val; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| i915_irq.c | 309 u32 new_val; local 318 new_val = dev_priv->irq_mask; 319 new_val &= ~interrupt_mask; 320 new_val |= (~enabled_irq_mask & interrupt_mask); 322 if (new_val != dev_priv->irq_mask) { 323 dev_priv->irq_mask = new_val; 339 u32 new_val; local 351 new_val = old_val; 352 new_val &= ~interrupt_mask; 353 new_val |= (~enabled_irq_mask & interrupt_mask) 373 u32 new_val; local [all...] |