Searched defs:u2 (Results 26 - 50 of 93) sorted by relevance

1234

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DSwapChain9.cpp292 float u2 = (x + width) / float(mWidth); local
296 {x2, y1, 0.0f, 1.0f, u2, v2},
297 {x2, y2, 0.0f, 1.0f, u2, v1},
/external/chromium_org/third_party/boringssl/src/crypto/dsa/
H A Ddsa_impl.c291 BIGNUM u1, u2, t1; local
316 BN_init(&u2);
336 * save W in u2 */
337 if (BN_mod_inverse(&u2, sig->s, dsa->q, ctx) == NULL) {
354 if (!BN_mod_mul(&u1, &u1, &u2, dsa->q, ctx)) {
358 /* u2 = r * w mod q */
359 if (!BN_mod_mul(&u2, sig->r, &u2, dsa->q, ctx)) {
369 if (!BN_mod_exp2_mont(&t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p, ctx, mont)) {
392 BN_free(&u2);
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/ecdsa/
H A Decdsa.c132 BIGNUM *order, *u1, *u2, *m, *X; local
158 u2 = BN_CTX_get(ctx);
179 if (!BN_mod_inverse(u2, sig->s, order, ctx)) {
187 if (!BN_mod_mul(u1, m, u2, order, ctx)) {
191 /* u2 = r * w mod q */
192 if (!BN_mod_mul(u2, sig->r, u2, order, ctx)) {
202 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
/external/clang/test/CodeGen/
H A Dbitfield-2.c100 // CHECK-RECORD: Record: RecordDecl{{.*}}u2
102 // CHECK-RECORD: LLVMType:%union.u2 = type { i8 }
107 union __attribute__((packed)) u2 { union
111 union u2 g2 = { 0xdeadbeef };
113 int f2_load(union u2 *a0) {
116 int f2_store(union u2 *a0) {
119 int f2_reload(union u2 *a0) {
127 union u2 g2 = { 0xdeadbeef };
H A Ddesignated-initializers.c11 // CHECK: @u2 = global { i32, [4 x i8] } { i32 0, [4 x i8] undef }
12 union { int i; double f; } u2 = { }; variable in typeref:union:__anon18642
149 // CHECK: bitcast %union.anon.4* %u2
151 union { int i; float f; } u2 = { }; local
H A Dxcore-stringtype.c153 void unionType2(union U2 u2) {} argument
/external/clang/test/Sema/
H A Dtransparent-union.c86 unsigned int u2; member in struct:pr15134v2::__anon19171
H A Dconversion.c371 unsigned u2 = -1; // expected-warning {{implicit conversion changes signedness}} local
372 u2 = -1; // expected-warning {{implicit conversion changes signedness}}
H A Darray-init.c217 int u2 = {{3}}; //expected-warning{{too many braces around scalar initializer}} variable
/external/clang/test/SemaCXX/
H A Dcxx0x-deleted-default-ctor.cpp17 bad_union2 u2; // expected-error {{call to implicitly-deleted default constructor}} variable
H A Ddcl_init_aggr.cpp120 u u2 = u1; variable
/external/elfutils/0.153/libdw/
H A Dmemory-access.h185 uint16_t u2; member in union:unaligned
211 return bswap_16 (up->u2);
212 return up->u2;
219 return (int16_t) bswap_16 (up->u2);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DSwapChain11.cpp544 float u2 = (x + width) / float(mWidth); local
549 d3d11::SetPositionTexCoordVertex(&vertices[2], x2, y1, u2, v1);
550 d3d11::SetPositionTexCoordVertex(&vertices[3], x2, y2, u2, v2);
H A DBlit11.cpp112 float *u1, float *v1, float *u2, float *v2)
121 *u2 = (sourceArea.x + sourceArea.width) / float(sourceSize.width);
130 float x1, y1, x2, y2, u1, v1, u2, v2; local
131 GenerateVertexCoords(sourceArea, sourceSize, destArea, destSize, &x1, &y1, &x2, &y2, &u1, &v1, &u2, &v2);
137 d3d11::SetPositionTexCoordVertex(&vertices[2], x2, y1, u2, v2);
138 d3d11::SetPositionTexCoordVertex(&vertices[3], x2, y2, u2, v1);
152 float x1, y1, x2, y2, u1, v1, u2, v2; local
153 GenerateVertexCoords(sourceArea, sourceSize, destArea, destSize, &x1, &y1, &x2, &y2, &u1, &v1, &u2, &v2);
163 d3d11::SetPositionLayerTexCoord3DVertex(&vertices[i * 6 + 2], x2, y1, i, u2, v2, readDepth);
166 d3d11::SetPositionLayerTexCoord3DVertex(&vertices[i * 6 + 4], x2, y2, i, u2, v
109 GenerateVertexCoords(const gl::Box &sourceArea, const gl::Extents &sourceSize, const gl::Box &destArea, const gl::Extents &destSize, float *x1, float *y1, float *x2, float *y2, float *u1, float *v1, float *u2, float *v2) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Deval.c360 map1(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, argument
371 if (u1 == u2) {
372 _mesa_error( ctx, GL_INVALID_VALUE, "glMap1(u1,u2)" );
416 map->u2 = u2;
417 map->du = 1.0F / (u2 - u1);
426 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
429 map1(target, u1, u2, stride, order, points, GL_FLOAT);
434 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
437 map1(target, (GLfloat) u1, (GLfloat) u2, strid
442 map2( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLvoid *points, GLenum type ) argument
525 _mesa_Map2f( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points) argument
536 _mesa_Map2d( GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points ) argument
853 _mesa_MapGrid2f( GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2 ) argument
881 _mesa_MapGrid2d( GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2 ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dlempar.c818 YYMINORTYPE u2; local
819 u2.YYERRSYMDT = 0;
820 yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2);
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlempar.c808 YYMINORTYPE u2; local
809 u2.YYERRSYMDT = 0;
810 yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2);
/external/mesa3d/src/mesa/main/
H A Deval.c360 map1(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, argument
371 if (u1 == u2) {
372 _mesa_error( ctx, GL_INVALID_VALUE, "glMap1(u1,u2)" );
416 map->u2 = u2;
417 map->du = 1.0F / (u2 - u1);
426 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
429 map1(target, u1, u2, stride, order, points, GL_FLOAT);
434 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
437 map1(target, (GLfloat) u1, (GLfloat) u2, strid
442 map2( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLvoid *points, GLenum type ) argument
525 _mesa_Map2f( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points) argument
536 _mesa_Map2d( GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points ) argument
853 _mesa_MapGrid2f( GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2 ) argument
881 _mesa_MapGrid2d( GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2 ) argument
[all...]
/external/chromium_org/crypto/
H A Dp224.cc432 FieldElement z1z1, z2z2, u1, u2, s1, s2, h, i, j, r, v; local
447 Mul(&u2, b.x, z1z1);
458 Subtract(&h, u2, u1);
/external/chromium_org/third_party/libyuv/util/
H A Dssim.cc187 const int u2 = rec[-dy2]; local
193 ym += Wxy * (u2 + d2 + l2 + r2);
195 xym += Wxy * (u1 * u2 + d1 * d2 + l1 * l2 + r1 * r2);
196 yym += Wxy * (u2 * u2 + d2 * d2 + l2 * l2 + r2 * r2);
/external/clang/test/Index/
H A Dprint-type-size.cpp44 long long u2; member in union:basic::u
/external/fdlibm/
H A De_lgamma_r.c126 u2 = 1.45492250137234768737e+00, /* 0x3FF7475C, 0xD119BD6F */ variable
271 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2hints.c1078 * From two line segments, (u1,u2) and (v1,v2), compute a point of
1081 * too far away from the ends of the line segments, u2 and v1.
1087 const FT_Vector* u2,
1123 u.x = CF2_CS_SCALE( u2->x - u1->x );
1124 u.y = CF2_CS_SCALE( u2->y - u1->y );
1137 intersection->x = u1->x + FT_MulFix( s, u2->x - u1->x );
1138 intersection->y = u1->y + FT_MulFix( s, u2->y - u1->y );
1149 if ( u1->x == u2->x &&
1152 if ( u1->y == u2->y &&
1163 /* limit the intersection distance from midpoint of u2 an
1085 cf2_glyphpath_computeIntersection( CF2_GlyphPath glyphpath, const FT_Vector* u1, const FT_Vector* u2, const FT_Vector* v1, const FT_Vector* v2, FT_Vector* intersection ) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.cc115 double u2 = kScale * ((b_ & 0x7ffffffful) + 1); local
119 sqrt(-2 * log(u1)) * cos(2 * kPi * u2));
/external/deqp/framework/referencerenderer/
H A DrrRasterizer.cpp184 const tcu::Vector<deInt64,2> u2 = ( p - l.m_v1); local
190 tcu::dot(-v, u2) >= 0; // dot (A->B, A->V) >= 0 and dot (B->A, B->V) >= 0

Completed in 876 milliseconds

1234