Searched refs:u3 (Results 1 - 25 of 33) sorted by relevance

12

/external/dropbear/libtommath/
H A Dbn_mp_exteuclid.c19 a*u1 + b*u2 = u3
23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local
26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
30 /* initialize, (u1,u2,u3) = (1,0,a) */
32 if ((err = mp_copy(a, &u3)) != MP_OKAY) { goto _ERR; }
40 /* q = u3/v3 */
41 if ((err = mp_div(&u3, &v3, &q, NULL)) != MP_OKAY) { goto _ERR; }
43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
49 if ((err = mp_sub(&u3, &tmp, &t3)) != MP_OKAY) { goto _ERR; }
51 /* (u1,u2,u3)
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeOutput.java41 public void write(short u0, short u1, short u2, short u3); argument
46 public void write(short u0, short u1, short u2, short u3, short u4); argument
H A DShortArrayCodeOutput.java76 public void write(short u0, short u1, short u2, short u3) { argument
80 write(u3);
84 public void write(short u0, short u1, short u2, short u3, short u4) { argument
88 write(u3);
/external/qemu/distrib/sdl-1.2.15/src/video/aalib/
H A DSDL_aaevents_c.h31 int u1,int u2,int u3, int u4);
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgaevents_c.h31 int u1,int u2,int u3, int u4);
/external/iptables/include/net/netfilter/
H A Dnf_conntrack_tuple.h60 union nf_inet_addr u3; member in struct:nf_conntrack_man
73 union nf_inet_addr u3; member in struct:nf_conntrack_tuple::__anon6507
109 union nf_inet_addr u3; member in struct:nf_conntrack_tuple_mask::__anon6515
/external/clang/test/CodeGen/
H A Ddesignated-initializers.c14 // CHECK: @u3 = global %union.anon.1 zeroinitializer
15 union { double f; int i; } u3 = { }; variable in typeref:union:__anon4210
67 union { int i; float f; } u3; local
/external/e2fsprogs/lib/uuid/
H A Duuid.h58 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
59 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
61 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
62 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
H A Duuid.h.in58 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
59 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
61 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
62 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
/external/openssl/crypto/des/
H A Ddes_locl.h215 unsigned int u1,u2,u3; \
224 u3=(int)(u>>8L); \
226 u3&=0xfc; \
228 LL^= *(const DES_LONG *)(des_SP+0x600+u3); \
235 u3=(int)t>>8L; \
237 u3&=0xfc; \
239 LL^= *(const DES_LONG *)(des_SP+0x700+u3); }
289 unsigned int u1,u2,u3; \
299 u3=(int)u>>8L; \
301 u3
[all...]
/external/clang/test/SemaCXX/
H A Ddcl_init_aggr.cpp121 u u3 = 1; // expected-error{{no viable conversion}} variable
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DHex.java68 public static String u3(int v) { method in class:Hex
278 case 6: astr = Hex.u3(outOffset); break;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DHex.java80 public static String u3(int v) { method in class:Hex
290 case 6: astr = Hex.u3(outOffset); break;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator64.h53 static const uptr u3 = u2 + (l4 - l3) / s3; member in class:__sanitizer::DefaultSizeClassMap
54 static const uptr u4 = u3 + (l5 - l4) / s4;
75 if (class_id <= u3) return l3 + s3 * (class_id - u2);
76 if (class_id <= u4) return l4 + s4 * (class_id - u3);
84 if (size <= l5) return u3 + (size - l4 + s4 - 1) / s4;
92 if (class_id <= u3) return c3;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp47 constexpr union U3 {} u3 = {}; variable in typeref:union:U3
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DExcludedProxyTest.java57 URL u3 = new URL("http://localhost");
58 URLConnection conn3 = u3.openConnection();
H A DURLTest.java56 URL u3; field in class:URLTest
111 u3 = new URL("http://www.yahoo4.com/");
112 assertEquals("u3 returns a wrong protocol", "http", u3.getProtocol());
113 assertEquals("u3 returns a wrong host", "www.yahoo4.com", u3.getHost());
114 assertEquals("u3 returns a wrong port", -1, u3.getPort());
115 assertEquals("u3 returns a wrong file", "/", u3
[all...]
/external/libvorbis/vq/
H A DMakefile.am22 44u0.vqs 44u1.vqs 44u2.vqs 44u3.vqs 44u4.vqs 44u5.vqs 44u6.vqs \
/external/webkit/Source/JavaScriptCore/runtime/
H A DOperations.h127 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, const UString& u2, const UString& u3) argument
131 unsigned length3 = u3.length();
133 return jsString(exec, u2, u3);
135 return jsString(exec, u1, u3);
145 return new (globalData) JSString(globalData, u1, u2, u3);
H A DJSString.h288 // This constructor constructs a new string by concatenating u1, u2 & u3.
289 JSString(JSGlobalData* globalData, const UString& u1, const UString& u2, const UString& u3) argument
291 , m_length(u1.length() + u2.length() + u3.length())
297 appendStringInConstruct(index, u3);
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_bookmark_unittest.cc582 // u3 is a duplicate URL
583 int64 u3 = adds.AddURL(L"Nifty2", "ftp://nifty.andrew.cmu.edu/", f1, u2); local
619 // Then add u3 after f1.
620 int64 u3_old_parent = mods.ModifyPosition(u3, f2, f1);
630 ExpectBrowserNodeParent(u3, u3_old_parent);
643 dels.Delete(u3);
646 ExpectBrowserNodeKnown(u3);
651 ExpectBrowserNodeUnknown(u3);
672 int64 u3 = adds.AddURL( L"u3", ur local
[all...]
/external/checkpolicy/
H A Dpolicy_scan.l208 u3 |
/external/fdlibm/
H A De_lgamma_r.c127 u3 = 9.77717527963372745603e-01, /* 0x3FEF4976, 0x44EA8450 */ variable
271 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
/external/kernel-headers/original/asm-mips/sn/
H A Dioc3.h24 } u3; member in struct:ioc3_uartregs
37 #define iu_iir u3.iir
38 #define iu_fcr u3.fcr
/external/v8/test/mjsunit/
H A Dlarge-object-allocation.js130 this.u3 = i;

Completed in 1494 milliseconds

12