Searched refs:newVal (Results 1 - 17 of 17) sorted by relevance

/netbsd-current/sys/external/isc/atheros_hal/dist/ar5416/
H A Dar9280_attach.c376 int tmp, newVal; local
447 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
451 OS_REG_WRITE(ah, AR_PHY_TIMING_CTRL4_CHAIN(0), newVal);
453 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
458 OS_REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
490 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
493 OS_REG_WRITE(ah, AR_PHY_TIMING11, newVal);
496 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
497 OS_REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/range/
H A Dinterfaces.d210 @property void front(E newVal);
232 @property void back(E newVal);
392 @property void front(E newVal) {
393 _range.front = newVal;
409 @property void back(E newVal) {
410 _range.back = newVal;
H A Dpackage.d6784 @property auto ref front(ElementType!Source newVal)
6787 return _source[_indices.front] = newVal;
6821 @property auto ref back(ElementType!Source newVal)
6824 return _source[_indices.back] = newVal;
6872 auto opIndexAssign(ElementType!Source newVal, size_t index)
6874 return _source[_indices[index]] = newVal;
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/range/
H A Dinterfaces.d228 @property void front(E newVal);
250 @property void back(E newVal);
414 @property void front(E newVal) {
415 _range.front = newVal;
435 @property void back(E newVal) {
436 _range.back = newVal;
H A Dpackage.d7821 @property auto ref front(ElementType!Source newVal)
7824 return _source[_indices.front] = newVal;
7858 @property auto ref back(ElementType!Source newVal)
7861 return _source[_indices.back] = newVal;
7900 auto opIndexAssign(ElementType!Source newVal, size_t index)
7902 return _source[_indices[index]] = newVal;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopUnrollRuntime.cpp855 Value *newVal = VMap.lookup(Phi->getIncomingValue(i)); local
856 // newVal can be a constant or derived from values outside the loop, and
860 if (!newVal) {
861 newVal = Phi->getIncomingValue(i);
864 Phi->addIncoming(newVal,
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dparallelism.d201 private void atomicSetUbyte(T)(ref T stuff, T newVal)
204 //core.atomic.cas(cast(shared) &stuff, stuff, newVal);
205 atomicStore(*(cast(shared) &stuff), newVal);
216 private bool atomicCasUbyte(T)(ref T stuff, T testVal, T newVal)
219 return core.atomic.cas(cast(shared) &stuff, testVal, newVal);
3249 void isDaemon(bool newVal) @property @trusted
3255 thread.isDaemon = newVal;
3323 @property void defaultPoolThreads(uint newVal) @trusted
3325 atomicStore(_defaultPoolThreads, newVal);
H A Dnumeric.d3409 size_t nSteps(size_t newVal) @property
3411 _nSteps = newVal;
3415 return newVal;
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Dparallelism.d185 private void atomicSetUbyte(T)(ref T stuff, T newVal)
188 //core.atomic.cas(cast(shared) &stuff, stuff, newVal);
189 atomicStore(*(cast(shared) &stuff), newVal);
200 private bool atomicCasUbyte(T)(ref T stuff, T testVal, T newVal)
203 return core.atomic.cas(cast(shared) &stuff, testVal, newVal);
3487 void isDaemon(bool newVal) @property @trusted
3493 thread.isDaemon = newVal;
3595 @property void defaultPoolThreads(uint newVal) @trusted
3597 atomicStore(_defaultPoolThreads, newVal);
H A Dnumeric.d4057 size_t nSteps(size_t newVal) @property
4059 _nSteps = newVal;
4063 return newVal;
/netbsd-current/external/gpl3/binutils/dist/gprofng/common/
H A Dhwctable.c3436 int64_t newVal; local
3447 newVal = HWC_VAL_ON (hwc->ref_val);
3450 newVal = HWC_VAL_LO (hwc->ref_val);
3453 newVal = HWC_VAL_HI (hwc->ref_val);
3456 newVal = HWC_VAL_CUSTOM (hwc->ref_val, min_time_nsec);
3460 if (newVal >= MAX_INT_VAL)
3461 newVal = MAX_INT_VAL;
3462 hwc->val = newVal;
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/impl/conservative/
H A Dgc.d1630 static float smoothDecay(float oldVal, float newVal) nothrow
1632 // decay to 63.2% of newVal over 5 collections
1635 immutable decay = (newVal - oldVal) * alpha + oldVal;
1636 return max(newVal, decay);
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d720 int sqlite3_limit(sqlite3*, int id, int newVal);
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.h4065 SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal);
H A Dsqlite3.c4378 SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal);
182421 unsigned int newVal = va_arg(ap, unsigned int); local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
H A Ddate.d8267 mixin(format("auto newVal = cast(ubyte)(_%s) + value;", memberVarStr));
8271 if (newVal < 0)
8272 newVal += 60;
8274 else if (newVal >= 60)
8275 newVal -= 60;
8277 mixin(format("_%s = cast(ubyte) newVal;", memberVarStr));
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Ddate.d8660 mixin(format("auto newVal = cast(ubyte)(_%s) + value;", memberVarStr));
8664 if (newVal < 0)
8665 newVal += 60;
8667 else if (newVal >= 60)
8668 newVal -= 60;
8670 mixin(format("_%s = cast(ubyte) newVal;", memberVarStr));

Completed in 1065 milliseconds