Home
last modified time | relevance | path

Searched refs:wm1 (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
Dnew-target-for-containers.js80 var wm1= new MyWeakMap(); variable
85 assert(Object.getPrototypeOf(wm1) == MyWeakMap.prototype)
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_asm.h117 static inline uint32_t inst_write_mask_compose(uint32_t wm1, uint32_t wm2) in inst_write_mask_compose() argument
122 if (wm1 & (1 << j)) in inst_write_mask_compose()
/third_party/python/Objects/
Dlongobject.c2631 digit wm1, wm2, carry, q, r, vtop, *v0, *vk, *w0, *ak; in x_divrem() local
2682 wm1 = w0[size_w-1]; in x_divrem()
2698 assert(vtop <= wm1); in x_divrem()
2700 q = (digit)(vv / wm1); in x_divrem()
2701 r = (digit)(vv - (twodigits)wm1 * q); /* r = vv % wm1 */ in x_divrem()
2705 r += wm1; in x_divrem()