Home
last modified time | relevance | path

Searched refs:p_l (Results 1 - 7 of 7) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dwebp.c756 static void inv_predict_0(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, in inv_predict_0() argument
763 static void inv_predict_1(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, in inv_predict_1() argument
766 AV_COPY32(p, p_l); in inv_predict_1()
770 static void inv_predict_2(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, in inv_predict_2() argument
777 static void inv_predict_3(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, in inv_predict_3() argument
784 static void inv_predict_4(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, in inv_predict_4() argument
791 static void inv_predict_5(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, in inv_predict_5() argument
794 p[0] = p_t[0] + (p_l[0] + p_tr[0] >> 1) >> 1; in inv_predict_5()
795 p[1] = p_t[1] + (p_l[1] + p_tr[1] >> 1) >> 1; in inv_predict_5()
796 p[2] = p_t[2] + (p_l[ in inv_predict_5()
801 inv_predict_6(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_6() argument
811 inv_predict_7(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_7() argument
821 inv_predict_8(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_8() argument
831 inv_predict_9(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_9() argument
841 inv_predict_10(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_10() argument
851 inv_predict_11(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_11() argument
865 inv_predict_12(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_12() argument
881 inv_predict_13(uint8_t *p, const uint8_t *p_l, const uint8_t *p_tl, const uint8_t *p_t, const uint8_t *p_tr) inv_predict_13() argument
903 uint8_t *dec, *p_l, *p_tl, *p_t, *p_tr; inverse_prediction() local
[all...]
/third_party/FreeBSD/lib/msun/ld128/
H A De_powl.c148 long double z, ax, z_h, z_l, p_h, p_l; in powl() local
351 p_l = v - (p_h - u); in powl()
353 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in powl()
374 p_l = (y - yy1) * t1 + y * t2; in powl()
376 z = p_l + p_h; in powl()
387 if (p_l + ovt > z - p_h) in powl()
400 if (p_l <= z - p_h) in powl()
404 /* compute 2**(p_h+p_l) */ in powl()
414 t = p_l + p_h; in powl()
420 v = (p_l in powl()
[all...]
/third_party/jerryscript/jerry-libm/
H A Dpow.c124 double z_h, z_l, p_l; in pow() local
362 p_l = v - (p_h.dbl - u); in pow()
364 z_l = cp_l * p_h.dbl + p_l * cp + dp_l[k]; in pow()
375 p_l = (y - y1.dbl) * t1.dbl + y * t2; in pow()
377 z.dbl = p_l + p_h.dbl; in pow()
388 if (p_l + ovt > z.dbl - p_h.dbl) in pow()
402 if (p_l <= z.dbl - p_h.dbl) in pow()
409 * compute 2**(p_h + p_l) in pow()
427 t.dbl = p_l + p_h.dbl; in pow()
430 v = (p_l in pow()
[all...]
/third_party/rust/crates/minimal-lexical/src/
H A Dlibm.rs69 let mut p_l: f32; in powf() variables
296 p_l = v - (p_h - u); in powf()
298 z_l = CP_L * p_h + p_l * CP + i!(DP_L, k as usize); in powf()
310 p_l = (y - y1) * t1 + y * t2; in powf()
312 z = p_l + p_h; in powf()
319 if p_l + OVT > z - p_h { in powf()
328 && p_l <= z - p_h in powf()
334 * compute 2**(p_h+p_l) in powf()
350 t = p_l + p_h; in powf()
354 v = (p_l in powf()
[all...]
/third_party/node/deps/v8/src/base/
H A Dieee754.cc2670 double z, ax, z_h, z_l, p_h, p_l; in pow() local
2833 p_l = v - (p_h - u); in pow()
2835 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in pow()
2846 p_l = (y - y1) * t1 + y * t2; in pow()
2848 z = p_l + p_h; in pow()
2854 if (p_l + ovt > z - p_h) return s * huge * huge; /* overflow */ in pow()
2860 if (p_l <= z - p_h) return s * tiny * tiny; /* underflow */ in pow()
2864 * compute 2**(p_h+p_l) in pow()
2878 t = p_l + p_h; in pow()
2881 v = (p_l in pow()
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A Dtestdsa.h197 int p_l; member
211 st.p_l = sizeof(dsa##bits##_p); \
244 p = BN_bin2bn(dsa_t.p, dsa_t.p_l, NULL); in get_dsa()
/third_party/openssl/apps/
H A Dtestdsa.h197 int p_l; member
211 st.p_l = sizeof(dsa##bits##_p); \
244 p = BN_bin2bn(dsa_t.p, dsa_t.p_l, NULL); in get_dsa()

Completed in 9 milliseconds