HomeSort by relevance Sort by last modified time
    Searched refs:u3 (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/dropbear/libtommath/
bn_mp_exteuclid.c 19 a*u1 + b*u2 = u3
21 int mp_exteuclid(mp_int *a, mp_int *b, mp_int *U1, mp_int *U2, mp_int *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;
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeOutput.java 41 public void write(short u0, short u1, short u2, short u3);
46 public void write(short u0, short u1, short u2, short u3, short u4);
ShortArrayCodeOutput.java 76 public void write(short u0, short u1, short u2, short u3) {
80 write(u3);
84 public void write(short u0, short u1, short u2, short u3, short u4) {
88 write(u3);
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
CodeOutput.java 41 public void write(short u0, short u1, short u2, short u3);
46 public void write(short u0, short u1, short u2, short u3, short u4);
ShortArrayCodeOutput.java 76 public void write(short u0, short u1, short u2, short u3) {
80 write(u3);
84 public void write(short u0, short u1, short u2, short u3, short u4) {
88 write(u3);
  /external/qemu/distrib/sdl-1.2.12/src/video/aalib/
SDL_aaevents_c.h 31 int u1,int u2,int u3, int u4);
  /external/qemu/distrib/sdl-1.2.12/src/video/svga/
SDL_svgaevents_c.h 31 int u1,int u2,int u3, int u4);
  /external/iptables/include/net/netfilter/
nf_conntrack_tuple.h 60 union nf_inet_addr u3; member in struct:nf_conntrack_man
73 union nf_inet_addr u3; member in struct:nf_conntrack_tuple::__anon7526
109 union nf_inet_addr u3; member in struct:nf_conntrack_tuple_mask::__anon7534
  /external/clang/test/CodeGen/
designated-initializers.c 14 // CHECK: @u3 = global %union.anon.1 zeroinitializer
15 union { double f; int i; } u3 = { }; variable in typeref:union:__anon5295
67 union { int i; float f; } u3; local
  /external/e2fsprogs/lib/uuid/
uuid.h 58 #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}
uuid.h.in 58 #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/bluetooth/bluez/test/
uuidtest.c 46 bt_uuid_t u, u2, u3, u4, u5, ub, u128; local
113 if (bt_string_to_uuid(&u3, uuidsixteen16a)) {
145 if (u3.type != 16) {
165 if (bt_uuid_cmp(&u2, &u3) != 0) {
170 if (bt_uuid_cmp(&u, &u3) != 0) {
175 if (bt_uuid_cmp(&u3, &u4) != 0) {
216 bt_string_to_uuid(&u3, uuidthirtytwo32a);
224 bt_uuid_to_string(&u3, buf, sizeof(buf));
251 if (u3.type != 32) {
271 if (bt_uuid_cmp(&u2, &u3) != 0)
    [all...]
  /external/openssl/crypto/des/
des_locl.h 215 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&=0x3f;
    [all...]
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 121 u u3 = 1; // expected-error{{no viable conversion}} variable
  /dalvik/dexgen/src/com/android/dexgen/util/
Hex.java 68 public static String u3(int v) { method in class:Hex
278 case 6: astr = Hex.u3(outOffset); break;
  /dalvik/dx/src/com/android/dx/util/
Hex.java 68 public static String u3(int v) { method in class:Hex
278 case 6: astr = Hex.u3(outOffset); break;
  /external/dexmaker/src/dx/java/com/android/dx/util/
Hex.java 68 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/
Hex.java 80 public static String u3(int v) { method in class:Hex
290 case 6: astr = Hex.u3(outOffset); break;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 47 constexpr union U3 {} u3 = {}; variable in typeref:union:U3
  /frameworks/rs/driver/
rsdGL.h 95 float x3, float y3, float z3, float u3, float v3,
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ExcludedProxyTest.java 57 URL u3 = new URL("http://localhost"); local
58 URLConnection conn3 = u3.openConnection();
  /external/webkit/Source/JavaScriptCore/runtime/
Operations.h 127 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, const UString& u2, const UString& u3)
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);
  /external/chromium/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 582 // 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", url, f2, 0); // + u3 NOLIN local
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.h 336 float x3, float y3, float u3, float v3,
340 float x3, float y3, float u3, float v3,
344 float x3, float y3, float u3, float v3,
  /bionic/libm/src/
e_lgamma_r.c 128 u3 = 9.77717527963372745603e-01, /* 0x3FEF4976, 0x44EA8450 */ variable
264 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));

Completed in 990 milliseconds

1 2 3