Searched refs:oldVal (Results 1 - 10 of 10) sorted by relevance
/third_party/node/deps/npm/node_modules/lru-cache/dist/commonjs/ |
H A D | index.js | 875 const oldVal = this.#valList[index]; 876 if (v !== oldVal) { 877 if (this.#hasFetchMethod && this.#isBackgroundFetch(oldVal)) { 878 oldVal.__abortController.abort(new Error('replaced')); 879 const { __staleWhileFetching: s } = oldVal; 891 this.#dispose?.(oldVal, k, 'set'); 894 this.#disposed?.push([oldVal, k, 'set']); 902 const oldValue = oldVal && this.#isBackgroundFetch(oldVal) 903 ? oldVal [all...] |
/third_party/node/deps/npm/node_modules/lru-cache/dist/esm/ |
H A D | index.js | 872 const oldVal = this.#valList[index]; 873 if (v !== oldVal) { 874 if (this.#hasFetchMethod && this.#isBackgroundFetch(oldVal)) { 875 oldVal.__abortController.abort(new Error('replaced')); 876 const { __staleWhileFetching: s } = oldVal; 888 this.#dispose?.(oldVal, k, 'set'); 891 this.#disposed?.push([oldVal, k, 'set']); 899 const oldValue = oldVal && this.#isBackgroundFetch(oldVal) 900 ? oldVal [all...] |
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/ |
H A D | dbcs-codec.js | 253 var oldVal = node[uCode]; 254 if (typeof oldVal === 'object') 255 node = oldVal; 258 if (oldVal !== undefined) 259 node[DEF_CHAR] = oldVal
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | memory.cpp | 120 DWORD oldVal = 0; in protectPage() local 121 auto res = VirtualProtect(addr, pageSize(), PAGE_NOACCESS, &oldVal); in protectPage()
|
/third_party/lzma/CPP/7zip/UI/GUI/ |
H A D | ExtractDialog.cpp | 130 const bool oldVal = GetBoolsVal(b1, b2);
in GetButton_Bools() local 131 if (val != oldVal)
in GetButton_Bools()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fDepthStencilClearTests.cpp | 476 deUint32 oldVal = rowAccess.getPixStencil(x, 0); in renderReference() local 477 deUint32 newVal = ((oldVal & ~clear->stencilMask) | (clear->clearStencil & clear->stencilMask)) & bufMask; in renderReference()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fDepthStencilClearTests.cpp | 479 deUint32 oldVal = rowAccess.getPixStencil(x, 0); in renderReference() local 480 deUint32 newVal = ((oldVal & ~clear->stencilMask) | (clear->clearStencil & clear->stencilMask)) & bufMask; in renderReference()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fStencilTexturingTests.cpp | 190 const int oldVal = dst.getPixStencil(x, y); in renderTestPatternReference() local 191 const int newVal = (oldVal+1)&stencilMask; in renderTestPatternReference()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | plurults.cpp | 1445 int32_t oldVal = uhash_puti(localeSet, new UnicodeString(locale), 1, &status); in testAvailableLocales() local 1446 if (oldVal != 0) { in testAvailableLocales()
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrReferenceContext.cpp | 3053 const deUint32 oldVal = access.raw().getPixelUint(s, x, y).x(); 3054 const deUint32 newVal = (oldVal & ~writeMask) | (stencil & writeMask);
|
Completed in 17 milliseconds