Home
last modified time | relevance | path

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

/third_party/boost/libs/math/example/
Dlambert_w_graph.cpp81 double wm1 = lambert_wm1(z); in main() local
82 wm1s[z] = wm1; in main()
136 double wm1 = lambert_wm1(z); in main() local
137 wm1s_big[z] = wm1; in main()
Dlambert_w_basic_example.cpp27 double wm1 = boost::math::lambert_wm1(z); in main() local
28 …std::cout << " lambert_wm1(" << z << ") = " << wm1 << std::endl; // lambert_wm1(-0.200000) = -2.54… in main()
/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.c2605 digit wm1, wm2, carry, q, r, vtop, *v0, *vk, *w0, *ak; in x_divrem() local
2656 wm1 = w0[size_w-1]; in x_divrem()
2672 assert(vtop <= wm1); in x_divrem()
2674 q = (digit)(vv / wm1); in x_divrem()
2675 r = (digit)(vv - (twodigits)wm1 * q); /* r = vv % wm1 */ in x_divrem()
2679 r += wm1; in x_divrem()