Home
last modified time | relevance | path

Searched refs:u2 (Results 1 – 23 of 23) sorted by relevance

/AliOS-Things-master/components/ble_host/bt_host/host/
A Duuid.c50 static int uuid128_cmp(const struct bt_uuid *u1, const struct bt_uuid *u2) in uuid128_cmp() argument
55 uuid_to_uuid128(u2, &uuid2); in uuid128_cmp()
60 int bt_uuid_cmp(const struct bt_uuid *u1, const struct bt_uuid *u2) in bt_uuid_cmp() argument
63 if (u1->type != u2->type) { in bt_uuid_cmp()
64 return uuid128_cmp(u1, u2); in bt_uuid_cmp()
69 return (int)BT_UUID_16(u1)->val - (int)BT_UUID_16(u2)->val; in bt_uuid_cmp()
71 return (int)BT_UUID_32(u1)->val - (int)BT_UUID_32(u2)->val; in bt_uuid_cmp()
73 return memcmp(BT_UUID_128(u1)->val, BT_UUID_128(u2)->val, 16); in bt_uuid_cmp()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/example/ble_central/
A Duser_cmd.c548 uint32_t u2 = p_parse_value->dw_param[4]; in cmd_srvuuid() local
553 (uint8_t)u2, (uint8_t)(u2 >> 8), (uint8_t)(u2 >> 16), (uint8_t)(u2 >> 24), in cmd_srvuuid()
626 uint32_t u2 = p_parse_value->dw_param[6]; in cmd_charuuid() local
631 (uint8_t)u2, (uint8_t)(u2 >> 8), (uint8_t)(u2 >> 16), (uint8_t)(u2 >> 24), in cmd_charuuid()
735 uint32_t u2 = p_parse_value->dw_param[6]; in cmd_readu() local
740 (uint8_t)u2, (uint8_t)(u2 >> 8), (uint8_t)(u2 >> 16), (uint8_t)(u2 >> 24), in cmd_readu()
/AliOS-Things-master/components/littlevgl/src/lv_misc/
A Dlv_math.c81 int32_t lv_bezier3(uint32_t t, int32_t u0, int32_t u1, int32_t u2, int32_t u3) in lv_bezier3() argument
91 uint32_t v3 = ((uint32_t)3 * t_rem * t2 * u2) >> 20; in lv_bezier3()
A Dlv_math.h55 int32_t lv_bezier3(uint32_t t, int32_t u0, int32_t u1, int32_t u2, int32_t u3);
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/
A Decc_dsa.c198 uECC_word_t u1[NUM_ECC_WORDS], u2[NUM_ECC_WORDS]; in uECC_verify() local
242 uECC_vli_modMult(u2, r, z, curve->n, num_n_words); /* u2 = r/s */ in uECC_verify()
260 uECC_vli_numBits(u2, num_n_words)); in uECC_verify()
263 ((!!uECC_vli_testBit(u2, num_bits - 1)) << 1)]; in uECC_verify()
273 index = (!!uECC_vli_testBit(u1, i)) | ((!!uECC_vli_testBit(u2, i)) << 1); in uECC_verify()
/AliOS-Things-master/components/mbedtls/library/
A Decdsa.c68 mbedtls_mpi u1, u2; /* intermediate values */ member
81 mbedtls_mpi_init( &ctx->u2 ); in ecdsa_restart_ver_init()
94 mbedtls_mpi_free( &ctx->u2 ); in ecdsa_restart_ver_free()
496 mbedtls_mpi e, s_inv, u1, u2; in ecdsa_verify_restartable() local
498 mbedtls_mpi *pu1 = &u1, *pu2 = &u2; in ecdsa_verify_restartable()
502 mbedtls_mpi_init( &u1 ); mbedtls_mpi_init( &u2 ); in ecdsa_verify_restartable()
515 pu2 = &rs_ctx->ver->u2; in ecdsa_verify_restartable()
587 mbedtls_mpi_free( &u1 ); mbedtls_mpi_free( &u2 ); in ecdsa_verify_restartable()
/AliOS-Things-master/components/SDL2/src/video/yuv2rgb/
A Dyuv_rgb.c525 …__m128i y1_16, y2_16, u1_16, u2_16, v1_16, v2_16, y, u1, u2, v1, v2, u1_tmp, u2_tmp, v1_tmp, v2_tm…
558 u2 = _mm_packus_epi16(u1_16, u2_16); \
563 u1_tmp = _mm_avg_epu8(u1, u2); \
598 u2 = _mm_packus_epi16(u1_16, u2_16); \
603 u2_tmp = _mm_avg_epu8(u1, u2); \
608u2 = _mm_packus_epi16(_mm_and_si128(u1_tmp, _mm_set1_epi16(0xFF)), _mm_and_si128(u2_tmp, _mm_set1_…
610 u1 = _mm_avg_epu8(u1, u2); \
A Dyuv_rgb_sse_func.h271 __m128i u1, u2, u3, u4, v1, v2, v3, v4; \
273 u2 = _mm_srli_epi32(_mm_slli_epi32(LOAD_SI128((const __m128i*)(u_ptr+16)), 24), 24); \
276 u = _mm_packus_epi16(_mm_packs_epi32(u1, u2), _mm_packs_epi32(u3, u4)); \
291 __m128i u1, u2, v1, v2; \
293 u2 = _mm_srli_epi16(_mm_slli_epi16(LOAD_SI128((const __m128i*)(u_ptr+16)), 8), 8); \
294 u = _mm_packus_epi16(u1, u2); \
/AliOS-Things-master/components/freetype/src/cff/
A Dcf2hints.c1119 const FT_Vector* u2, in cf2_glyphpath_computeIntersection() argument
1155 u.x = CF2_CS_SCALE( u2->x - u1->x ); in cf2_glyphpath_computeIntersection()
1156 u.y = CF2_CS_SCALE( u2->y - u1->y ); in cf2_glyphpath_computeIntersection()
1169 intersection->x = u1->x + FT_MulFix( s, u2->x - u1->x ); in cf2_glyphpath_computeIntersection()
1170 intersection->y = u1->y + FT_MulFix( s, u2->y - u1->y ); in cf2_glyphpath_computeIntersection()
1181 if ( u1->x == u2->x && in cf2_glyphpath_computeIntersection()
1184 if ( u1->y == u2->y && in cf2_glyphpath_computeIntersection()
1196 if ( cf2_fixedAbs( intersection->x - ( u2->x + v1->x ) / 2 ) > in cf2_glyphpath_computeIntersection()
1198 cf2_fixedAbs( intersection->y - ( u2->y + v1->y ) / 2 ) > in cf2_glyphpath_computeIntersection()
/AliOS-Things-master/components/SDL2/src/render/opengl/
A DSDL_glfuncs.h241 (GLenum target, GLdouble u1, GLdouble u2, GLint stride,
244 (GLenum target, GLfloat u1, GLfloat u2, GLint stride,
247 (GLenum target, GLdouble u1, GLdouble u2, GLint ustride,
251 (GLenum target, GLfloat u1, GLfloat u2, GLint ustride,
254 SDL_PROC_UNUSED(void, glMapGrid1d, (GLint un, GLdouble u1, GLdouble u2))
255 SDL_PROC_UNUSED(void, glMapGrid1f, (GLint un, GLfloat u1, GLfloat u2))
257 (GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1,
260 (GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1,
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_stretch.c218 int u1, u2; in SDL_SoftStretch() local
301 __asm__ __volatile__("call *%4":"=&D"(u1), "=&S"(u2) in SDL_SoftStretch()
A DSDL_yuv.c1077 __m128i u2 = _mm_and_si128(uv2, mask); in SDL_ConvertPixels_SplitNV_to_UVPlanes() local
1078 __m128i u = _mm_packus_epi16(u1, u2); in SDL_ConvertPixels_SplitNV_to_UVPlanes()
/AliOS-Things-master/components/py_engine/engine/lib/libm/
A Derf_lgamma.c72 u2 = 1.4549225569e+00f, /* 0x3fba3ae7 */ variable
222 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/
A Dtarith.c648 long u1, u2; in validation_muldiv() local
651 if (times < 0) u2 = -times, n = !n; else u2 = times; in validation_muldiv()
652 png_64bit_product(u1, u2, &hi, &lo); in validation_muldiv()
/AliOS-Things-master/components/py_engine/engine/tools/mpremote/
A DREADME.md40 - u0, u1, u2, u3: connect to `/dev/ttyUSB?`
/AliOS-Things-master/components/ble_host/bt_host/include/bluetooth/
A Duuid.h576 int bt_uuid_cmp(const struct bt_uuid *u1, const struct bt_uuid *u2);
/AliOS-Things-master/components/SDL2/include/
A DSDL_opengl.h1420 GLAPI void GLAPIENTRY glMap1d( GLenum target, GLdouble u1, GLdouble u2,
1423 GLAPI void GLAPIENTRY glMap1f( GLenum target, GLfloat u1, GLfloat u2,
1428 GLdouble u1, GLdouble u2, GLint ustride, GLint uorder,
1432 GLfloat u1, GLfloat u2, GLint ustride, GLint uorder,
1452 GLAPI void GLAPIENTRY glMapGrid1d( GLint un, GLdouble u1, GLdouble u2 );
1453 GLAPI void GLAPIENTRY glMapGrid1f( GLint un, GLfloat u1, GLfloat u2 );
1455 GLAPI void GLAPIENTRY glMapGrid2d( GLint un, GLdouble u1, GLdouble u2,
1457 GLAPI void GLAPIENTRY glMapGrid2f( GLint un, GLfloat u1, GLfloat u2,
A DSDL_stdinc.h429 int u0, u1, u2; in SDL_memset4()
433 : "=&D" (u0), "=&a" (u1), "=&c" (u2) in SDL_memset4()
A DSDL_opengl_glext.h4561 typedef void (APIENTRYP PFNGLMAP1XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GL…
4563 typedef void (APIENTRYP PFNGLMAPGRID1XOESPROC) (GLint n, GLfixed u1, GLfixed u2);
4564 typedef void (APIENTRYP PFNGLMAPGRID2XOESPROC) (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixe…
4666 GLAPI void APIENTRY glMap1xOES (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, G…
4667 GLAPI void APIENTRY glMap2xOES (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder,…
4668 GLAPI void APIENTRY glMapGrid1xOES (GLint n, GLfixed u1, GLfixed u2);
4669 GLAPI void APIENTRY glMapGrid2xOES (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2);
5312 …VERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint…
5313 …APVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint…
5320 GLAPI void APIENTRY glMapVertexAttrib1dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, …
[all …]
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/
A Dduktape.c81920 duk_uint32_t u1, u2, u3; local
97332 duk__test_double_union u2; local
97597 duk__test_double_union u1, u2; local
97604 u2.d = 10.0;
97605 DUK__DBLUNION_CMP_TRUE(&u1, &u2);
97608 u2.d = 10.0;
97609 DUK__DBLUNION_CMP_TRUE(&u1, &u2);
97612 u2.d = 10.0;
97633 u2.d = -10.0;
97637 u2.d = -10.0;
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/
A Drgb-3c-8b.ppm310 …LNLM�O��N�NQ��T��Q��T�Q�SST�SQUSZ JNX cm$u2"�K/�]4�b6�[7}>+q8(p4…
/AliOS-Things-master/hardware/chip/rtl872xd/
A Date.bin1942 …��������SƐ����D@�u �~ �����D������e�dt�#�D��jv|{|f�u1C1u2C2u3u4bC4��8�1��2…
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dquickjs.c14404 JSFloat64Union u1, u2; in js_strict_eq2() local
14412 u2.d = d2; in js_strict_eq2()
14413 res = (u1.u64 == u2.u64); /* +0 != -0 */ in js_strict_eq2()

Completed in 502 milliseconds