Home
last modified time | relevance | path

Searched refs:u (Results 1 – 25 of 623) sorted by relevance

12345678910>>...25

/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dyuv.h75 static WEBP_INLINE int VP8YUVToB(int y, int u) { in VP8YUVToB() argument
82 rgb[1] = VP8YUVToG(y, u, v); in VP8YuvToRgb()
83 rgb[2] = VP8YUVToB(y, u); in VP8YuvToRgb()
88 bgr[0] = VP8YUVToB(y, u); in VP8YuvToBgr()
89 bgr[1] = VP8YUVToG(y, u, v); in VP8YuvToBgr()
96 const int g = VP8YUVToG(y, u, v); // 6 usable bits in VP8YuvToRgb565()
131 VP8YuvToRgb(y, u, v, argb + 1); in VP8YuvToArgb()
136 VP8YuvToBgr(y, u, v, bgra); in VP8YuvToBgra()
142 VP8YuvToRgb(y, u, v, rgba); in VP8YuvToRgba()
197 const int u = -9719 * r - 19081 * g + 28800 * b; in VP8RGBToU() local
[all …]
A Dupsampling_msa.c308 YuvToRgb(y, u, v, argb + 1); in YuvToArgb()
313 YuvToBgr(y, u, v, bgra); in YuvToBgra()
318 YuvToRgb(y, u, v, rgba); in YuvToRgba()
327 CALC_RGB16(y, u, v, R, G, B); in YuvToRgbLine()
330 u += 16; in YuvToRgbLine()
357 u += 16; in YuvToBgrLine()
386 u += 16; in YuvToRgbaLine()
414 u += 16; in YuvToBgraLine()
443 u += 16; in YuvToArgbLine()
473 u += 16; in YuvToRgba4444Line()
[all …]
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/
A Dmodf.c5 union {double f; uint64_t i;} u = {x}; in modf() local
14 u.i &= 1ULL<<63; in modf()
15 return u.f; in modf()
20 u.i &= 1ULL<<63; in modf()
21 *iptr = u.f; in modf()
26 if ((u.i & mask) == 0) { in modf()
28 u.i &= 1ULL<<63; in modf()
29 return u.f; in modf()
31 u.i &= ~mask; in modf()
32 *iptr = u.f; in modf()
[all …]
A Dlog1p.c71 union {double f; uint64_t i;} u = {x}; in log1p() local
76 hx = u.i>>32; in log1p()
98 u.f = 1 + x; in log1p()
99 hu = u.i>>32; in log1p()
104 c = k >= 2 ? 1-(u.f-x) : x-(u.f-1); in log1p()
105 c /= u.f; in log1p()
110 u.i = (uint64_t)hu<<32 | (u.i&0xffffffff); in log1p()
111 f = u.f - 1; in log1p()
A Dlog.c79 union {double f; uint64_t i;} u = {x}; in log() local
84 hx = u.i>>32; in log()
87 if (u.i<<1 == 0) in log()
94 u.f = x; in log()
95 hx = u.i>>32; in log()
98 } else if (hx == 0x3ff00000 && u.i<<32 == 0) in log()
105 u.i = (uint64_t)hx<<32 | (u.i&0xffffffff); in log()
106 x = u.f; in log()
/AliOS-Things-master/components/py_engine/engine/lib/libm/
A Dmath.c41 return u.s; in __signbitf()
116 x = y * u.f; in scalbnf()
295 s = u*v; in powf()
369 z = u + v; in powf()
642 ix = u.i; in logf()
652 u.f = x; in logf()
663 u.i = ix; in logf()
664 x = u.f; in logf()
692 x = u.f; in coshf()
693 w = u.i; in coshf()
[all …]
A Datanhf.c12 union {float f; uint32_t i;} u = {.f = x}; in atanhf() local
13 unsigned s = u.i >> 31; in atanhf()
17 u.i &= 0x7fffffff; in atanhf()
18 y = u.f; in atanhf()
20 if (u.i < 0x3f800000 - (1<<23)) { in atanhf()
21 if (u.i < 0x3f800000 - (32<<23)) { in atanhf()
23 if (u.i < (1<<23)) in atanhf()
A Dlog1pf.c32 union {float f; uint32_t i;} u = {x}; in log1pf() local
37 ix = u.i; in log1pf()
59 u.f = 1 + x; in log1pf()
60 iu = u.i; in log1pf()
65 c = k >= 2 ? 1-(u.f-x) : x-(u.f-1); in log1pf()
66 c /= u.f; in log1pf()
71 u.i = iu; in log1pf()
72 f = u.f - 1; in log1pf()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis-dsp/Source/MatrixFunctions/
A Darm_mat_inverse_f32.c156 while (j > 0u)
167 while (j > 0u)
182 l = 0u;
228 while (i > 0u)
303 while (j > 0u)
317 while (j > 0u)
336 i = 0u;
342 while (k > 0u)
482 while (j > 0u)
493 while (j > 0u)
[all …]
A Darm_mat_inverse_f64.c156 while (j > 0u)
167 while (j > 0u)
182 l = 0u;
228 while (i > 0u)
303 while (j > 0u)
317 while (j > 0u)
336 i = 0u;
342 while (k > 0u)
482 while (j > 0u)
493 while (j > 0u)
[all …]
/AliOS-Things-master/components/SDL2/src/video/yuv2rgb/
A Dyuv_rgb.h32 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
38 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
44 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
50 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
56 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
62 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
68 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
74 const uint8_t *y, const uint8_t *u, const uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
363 uint8_t *y, uint8_t *u, uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
371 uint8_t *y, uint8_t *u, uint8_t *v, uint32_t y_stride, uint32_t uv_stride,
[all …]
/AliOS-Things-master/components/trace/SEGGER/
A DSEGGER_RTT_printf.c127 p->Cnt = 0u; in _StoreChar()
161 if (FieldWidth != 0u) { in _PrintUnsigned()
209 if (FieldWidth != 0u) { in _PrintUnsigned()
250 …ormatFlags & FORMAT_FLAG_PAD_ZERO) == 0u) || (NumDigits != 0u)) && ((FormatFlags & FORMAT_FLAG_LEF… in _PrintInt()
251 if (FieldWidth != 0u) { in _PrintInt()
278 if (FieldWidth != 0u) { in _PrintInt()
339 if (c == 0u) { in SEGGER_RTT_vprintf()
346 FormatFlags = 0u; in SEGGER_RTT_vprintf()
361 FieldWidth = 0u; in SEGGER_RTT_vprintf()
374 NumDigits = 0u; in SEGGER_RTT_vprintf()
[all …]
/AliOS-Things-master/components/py_engine/tests/basics/
A Dfrozenset_binop.py17 u = s.copy() variable
18 u |= t
19 print(sorted(s), "|=", sorted(t), '-->', sorted(u))
20 u = s.copy() variable
21 u ^= t
22 print(sorted(s), "^=", sorted(t), '-->', sorted(u))
23 u = s.copy() variable
24 u &= t
25 print(sorted(s), "&=", sorted(t), "-->", sorted(u))
26 u = s.copy() variable
[all …]
A Dset_binop.py10 u = s.copy() variable
11 u |= t
12 print(sorted(s), "|=", sorted(t), '-->', sorted(u))
13 u = s.copy() variable
14 u ^= t
15 print(sorted(s), "^=", sorted(t), '-->', sorted(u))
16 u = s.copy() variable
17 u &= t
18 print(sorted(s), "&=", sorted(t), "-->", sorted(u))
19 u = s.copy() variable
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/wifi/
A Dwifi_util.c20 iwr.u.essid.pointer = ssid; in wext_get_ssid()
21 iwr.u.essid.length = 32; in wext_get_ssid()
29 ret = iwr.u.essid.length; in wext_get_ssid()
810 iwr.u.mode = mode; in wext_set_mode()
831 *mode = iwr.u.mode; in wext_get_mode()
943 iwr.u.freq.m = 0; in wext_set_channel()
944 iwr.u.freq.e = 0; in wext_set_channel()
945 iwr.u.freq.i = ch; in wext_set_channel()
967 *ch = iwr.u.freq.i; in wext_get_channel()
1051 iwr.u.data.flags = 0; in wext_private_command_with_retval()
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis-dsp/Source/FilteringFunctions/
A Darm_correlate_f32.c243 while (k > 0u) in arm_correlate_f32()
262 while (k > 0u) in arm_correlate_f32()
305 count = 0u; in arm_correlate_f32()
319 while (blkCnt > 0u) in arm_correlate_f32()
410 while (k > 0u) in arm_correlate_f32()
466 while (blkCnt > 0u) in arm_correlate_f32()
476 while (k > 0u) in arm_correlate_f32()
492 while (k > 0u) in arm_correlate_f32()
531 while (k > 0u) in arm_correlate_f32()
593 while (k > 0u) in arm_correlate_f32()
[all …]
A Darm_correlate_q31.c195 while (k > 0u) in arm_correlate_q31()
214 while (k > 0u) in arm_correlate_q31()
257 count = 0u; in arm_correlate_q31()
271 while (blkCnt > 0u) in arm_correlate_q31()
341 while (k > 0u) in arm_correlate_q31()
392 while (blkCnt > 0u) in arm_correlate_q31()
402 while (k > 0u) in arm_correlate_q31()
418 while (k > 0u) in arm_correlate_q31()
457 while (k > 0u) in arm_correlate_q31()
519 while (k > 0u) in arm_correlate_q31()
[all …]
A Darm_conv_f32.c211 while (k > 0u) in arm_conv_f32()
233 while (k > 0u) in arm_conv_f32()
274 count = 0u; in arm_conv_f32()
288 while (blkCnt > 0u) in arm_conv_f32()
383 while (k > 0u) in arm_conv_f32()
433 while (blkCnt > 0u) in arm_conv_f32()
443 while (k > 0u) in arm_conv_f32()
459 while (k > 0u) in arm_conv_f32()
496 while (k > 0u) in arm_conv_f32()
557 while (k > 0u) in arm_conv_f32()
[all …]
A Darm_lms_f32.c201 while (blkCnt > 0u) in arm_lms_f32()
218 while (tapCnt > 0u) in arm_lms_f32()
233 while (tapCnt > 0u) in arm_lms_f32()
263 while (tapCnt > 0u) in arm_lms_f32()
285 while (tapCnt > 0u) in arm_lms_f32()
314 while (tapCnt > 0u) in arm_lms_f32()
329 while (tapCnt > 0u) in arm_lms_f32()
341 while (blkCnt > 0u) in arm_lms_f32()
358 while (tapCnt > 0u) in arm_lms_f32()
387 while (tapCnt > 0u) in arm_lms_f32()
[all …]
A Darm_correlate_q15.c196 while (k > 0u) in arm_correlate_q15()
211 while (k > 0u) in arm_correlate_q15()
254 count = 0u; in arm_correlate_q15()
268 while (blkCnt > 0u) in arm_correlate_q15()
450 while (blkCnt > 0u) in arm_correlate_q15()
460 while (k > 0u) in arm_correlate_q15()
476 while (k > 0u) in arm_correlate_q15()
507 while (blkCnt > 0u) in arm_correlate_q15()
515 while (k > 0u) in arm_correlate_q15()
577 while (k > 0u) in arm_correlate_q15()
[all …]
A Darm_fir_decimate_q15.c95 while (blkCnt > 0u) in arm_fir_decimate_q15()
124 while (tapCnt > 0u) in arm_fir_decimate_q15()
159 while (tapCnt > 0u) in arm_fir_decimate_q15()
192 while (blkCntN3 > 0u) in arm_fir_decimate_q15()
281 while (i > 0u) in arm_fir_decimate_q15()
293 while (i > 0u) in arm_fir_decimate_q15()
334 while (blkCnt > 0u) in arm_fir_decimate_q15()
554 while (i > 0u) in arm_fir_decimate_q15()
568 while (i > 0u) in arm_fir_decimate_q15()
610 while (blkCnt > 0u) in arm_fir_decimate_q15()
[all …]
/AliOS-Things-master/components/freetype/src/autofit/
A Dafhints.c995 fu = u; in af_glyph_hints_align_strong_points()
1136 FT_Pos u; in af_iup_interp() local
1150 u = p->v; in af_iup_interp()
1153 u += d1; in af_iup_interp()
1157 p->u = u; in af_iup_interp()
1166 u = p->v; in af_iup_interp()
1173 u = ref1->u + FT_MulDiv( u - v1, ref2->u - ref1->u, v2 - v1 ); in af_iup_interp()
1175 p->u = u; in af_iup_interp()
1182 u = p->v; in af_iup_interp()
1189 u = ref1->u + FT_MulDiv( u - v1, ref2->u - ref1->u, v2 - v1 ); in af_iup_interp()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/imageio/
A Dwebpdec.c194 output_buffer->u.RGBA.rgba = (uint8_t*)pic->argb; in ReadWebP()
196 output_buffer->u.RGBA.size = output_buffer->u.RGBA.stride * pic->height; in ReadWebP()
199 output_buffer->u.YUVA.y = pic->y; in ReadWebP()
200 output_buffer->u.YUVA.u = pic->u; in ReadWebP()
201 output_buffer->u.YUVA.v = pic->v; in ReadWebP()
202 output_buffer->u.YUVA.a = has_alpha ? pic->a : NULL; in ReadWebP()
203 output_buffer->u.YUVA.y_stride = pic->y_stride; in ReadWebP()
204 output_buffer->u.YUVA.u_stride = pic->uv_stride; in ReadWebP()
205 output_buffer->u.YUVA.v_stride = pic->uv_stride; in ReadWebP()
207 output_buffer->u.YUVA.y_size = pic->height * pic->y_stride; in ReadWebP()
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/
A DHelloTFLite.unity2 %TAG !u! tag:unity3d.com,2011:
3 --- !u!29 &1
13 --- !u!104 &2
42 --- !u!157 &3
94 --- !u!196 &4
116 --- !u!1 &492081941
134 --- !u!81 &492081942
148 --- !u!20 &492081944
184 --- !u!4 &492081945
198 --- !u!1 &871349752
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis-dsp/Source/BasicMathFunctions/
A Darm_shift_q7.c84 if (sign == 0u) in arm_shift_q7()
88 while (blkCnt > 0u) in arm_shift_q7()
113 while (blkCnt > 0u) in arm_shift_q7()
128 while (blkCnt > 0u) in arm_shift_q7()
152 while (blkCnt > 0u) in arm_shift_q7()
172 if (sign == 0u) in arm_shift_q7()
177 while (blkCnt > 0u) in arm_shift_q7()
192 while (blkCnt > 0u) in arm_shift_q7()

Completed in 74 milliseconds

12345678910>>...25