Searched defs:u2 (Results 1 - 25 of 95) sorted by relevance

1234

/external/python/cpython3/Objects/stringlib/
H A Dreplace.h9 Py_UCS4 u1, Py_UCS4 u2, Py_ssize_t maxcount)
11 *s = u2;
51 *s = u2;
8 replace_1char_inplace(STRINGLIB_CHAR* s, STRINGLIB_CHAR* end, Py_UCS4 u1, Py_UCS4 u2, Py_ssize_t maxcount) argument
/external/ltp/testcases/kernel/fs/fs-bench/
H A Dboxmuler.c8 double u1, u2, z; local
20 u2 = ((double)(random() % 1000000)) / 1000000;
21 z = sqrt(-2.0 * log(u1)) * cos(M_2PI * u2);
/external/ltp/testcases/kernel/syscalls/syscall/
H A Dsyscall01.c50 uid_t u1, u2; local
53 u2 = syscall(SYS_getuid);
55 if (u1 == u2) {
59 u1, u2);
/external/tensorflow/tensorflow/core/kernels/
H A Dcross_op_test.cc63 const float u1 = -0.669, u2 = -0.509, u3 = 0.125; local
65 const float s1 = u2 * v3 - u3 * v2;
67 const float s3 = u1 * v2 - u2 * v1;
69 AddInputFromArray<float>(TensorShape({3}), {u1, u2, u3});
H A Dcross_op.h38 auto u2 = in0_data.template chip<1>(1); local
45 s1.device(d) = u2 * v3 - u3 * v2;
47 s3.device(d) = u1 * v2 - u2 * v1;
/external/clang/test/CXX/class/class.static/class.static.data/
H A Dp3.cpp49 U<NonLit> u2; // expected-note {{here}} variable
/external/clang/test/SemaTemplate/
H A Dfun-template-def.cpp38 U u2 = (T)i1; local
/external/libcxx/test/std/utilities/utility/pairs/pair.piecewise/
H A Dpiecewise_construct.pass.cpp39 B(double d, unsigned u1, unsigned u2) : d_(d), u1_(u1), u2_(u2) {} argument
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dcross_op.cc65 auto u2 = b->Slice(in0, starts, limits, strides); variable
72 auto s1 = b->Sub(b->Mul(u2, v3), b->Mul(u3, v2));
74 auto s3 = b->Sub(b->Mul(u1, v2), b->Mul(u2, v1));
/external/turbine/java/com/google/turbine/bytecode/
H A DByteReader.java53 public int u2() { method in class:ByteReader
/external/webrtc/webrtc/base/
H A Drandom.cc77 double u2 = static_cast<double>(NextOutput()) / 0xFFFFFFFFFFFFFFFFull; local
78 return mean + standard_deviation * sqrt(-2 * log(u1)) * cos(2 * kPi * u2);
/external/clang/test/CodeGen/
H A Dmcu-struct-return.c15 } u2; variable in typeref:union:U2
39 union U2 foo2() { return u2; }
H A Dunion.c46 union { int large_bitfield: 31; char c } u2; variable in typeref:union:__anon2634
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:__anon2535
152 // CHECK: bitcast %union.anon.4* %u2
154 union { int i; float f; } u2 = { }; local
/external/elfutils/libcpu/
H A Dmemory-access.h87 uint16_t u2; member in union:unaligned
100 return bswap_16 (up->u2);
101 return up->u2;
108 return (int16_t) bswap_16 (up->u2);
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
H A Dmove_convert.pass.cpp192 U2 u2(nullptr, dsource);
193 u1 = std::move(u2);
327 U2 u2; local
329 u1 = std::move(u2);
336 U2 u2; local
338 u1 = std::move(u2);
345 U2 u2; local
347 u1 = std::move(u2);
355 U2 u2(nullptr, d2);
357 u1 = std::move(u2);
[all...]
/external/mesa3d/src/glx/
H A Drender2.c44 __indirect_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
69 __GLX_PUT_DOUBLE(12, u2);
83 __GLX_PUT_DOUBLE(16, u2);
111 __indirect_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
141 __GLX_PUT_FLOAT(12, u2);
151 __GLX_PUT_FLOAT(16, u2);
174 __indirect_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustr, argument
200 __GLX_PUT_DOUBLE(12, u2);
218 __GLX_PUT_DOUBLE(16, u2);
252 __indirect_glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLin argument
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DHex.java96 public static String u2(int v) { method in class:Hex
116 return u2(v);
289 case 4: astr = Hex.u2(outOffset); break;
/external/clang/test/SemaCXX/
H A Dcxx0x-nontrivial-union.cpp13 union u2 { union
16 u2(int k) : k(k) {} function in union:u2
17 u2() : nt() {} function in union:u2
/external/elfutils/tests/
H A Dshow-die-info.c142 Dwarf_Word u2; local
146 || dwarf_formudata (&attr, &u2) != 0
147 || i != (int) u2)
170 Dwarf_Word u2; local
174 || dwarf_formudata (&attr, &u2) != 0
175 || i != (int) u2)
199 Dwarf_Word u2; local
203 || dwarf_formudata (&attr, &u2) != 0
204 || i != (int) u2)
228 Dwarf_Word u2; local
258 Dwarf_Word u2; local
[all...]
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_vertex.h58 GLfloat u2, v2; member in struct:__anon17301::__anon17302
67 GLfloat u2, v2, q2; member in struct:__anon17301::__anon17303
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotation.java308 * @param u2 second vector of the origin pair
310 * @param v2 desired image of u2 by the rotation
313 public Rotation(Vector3D u1, Vector3D u2, Vector3D v1, Vector3D v2) { argument
317 double u2u2 = Vector3D.dotProduct(u2, u2);
328 double u2x = u2.getX();
329 double u2y = u2.getY();
330 double u2z = u2.getZ();
339 // adjust v2 in order to have (u1|u2) = (v1|v2) and (v2'|v2') = (u2|u
[all...]
/external/boringssl/src/crypto/fipsmodule/ecdsa/
H A Decdsa.c241 EC_SCALAR r, s, u1, u2, s_inv_mont; local
263 // u2 = r * s^-1 mod order
266 // |u2| will be taken out of Montgomery form, as desired.
269 !scalar_mod_mul_montgomery(group, &u2, &r, &s_inv_mont)) {
278 if (!ec_point_mul_scalar_public(group, point, &u1, pub_key, &u2, ctx)) {
/external/clang/test/Sema/
H A Dtransparent-union.c86 unsigned int u2; member in struct:pr15134v2::__anon3268

Completed in 679 milliseconds

1234