Home
last modified time | relevance | path

Searched refs:u3 (Results 1 – 25 of 39) sorted by relevance

12

/external/libvorbis/vq/
D44u3.vqs5 haux 44u3/resaux_0.vqd _44u3__short 0,16,2 8
8 haux 44u3/resaux_1.vqd _44u3__long 0,64,2 8
22 :_p1_0 44u3/res_part1_pass2.vqd, 4, nonseq cull, 0 +- 1
23 :_p2_0 44u3/res_part2_pass2.vqd, 4, nonseq cull, 0 +- 1
24 :_p3_0 44u3/res_part3_pass2.vqd, 4, nonseq cull, 0 +- 1 2
25 :_p4_0 44u3/res_part4_pass2.vqd, 4, nonseq cull, 0 +- 1 2
26 :_p5_0 44u3/res_part5_pass2.vqd, 2, nonseq cull, 0 +- 1 2 3 4
28 :_p6_0 44u3/res_part6_pass0.vqd, 2, nonseq cull, 0 +- 5 10 15 20 25 30
29 :_p6_1 44u3/res_part6_pass1.vqd, 2, nonseq cull, 0 +- 1 2
31 :_p7_0 44u3/res_part7_pass0.vqd, 2, nonseq, 0 +- 255 510 765 1020
[all …]
DMakefile.am22 44u0.vqs 44u1.vqs 44u2.vqs 44u3.vqs 44u4.vqs 44u5.vqs 44u6.vqs \
/external/dropbear/libtommath/
Dbn_mp_exteuclid.c23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; in mp_exteuclid() local
26 …if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY)… in mp_exteuclid()
32 if ((err = mp_copy(a, &u3)) != MP_OKAY) { goto _ERR; } in mp_exteuclid()
41 if ((err = mp_div(&u3, &v3, &q, NULL)) != MP_OKAY) { goto _ERR; } in mp_exteuclid()
49 if ((err = mp_sub(&u3, &tmp, &t3)) != MP_OKAY) { goto _ERR; } in mp_exteuclid()
54 if ((err = mp_copy(&v3, &u3)) != MP_OKAY) { goto _ERR; } in mp_exteuclid()
63 if (u3.sign == MP_NEG) { in mp_exteuclid()
66 mp_neg(&u3, &u3); in mp_exteuclid()
72 if (U3 != NULL) { mp_exch(U3, &u3); } in mp_exteuclid()
75 _ERR: mp_clear_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL); in mp_exteuclid()
/external/openssl/crypto/des/
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&=0x3f; \
[all …]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DShortArrayCodeOutput.java76 public void write(short u0, short u1, short u2, short u3) { in write() argument
80 write(u3); in write()
84 public void write(short u0, short u1, short u2, short u3, short u4) { in write() argument
88 write(u3); in write()
DCodeOutput.java41 public void write(short u0, short u1, short u2, short u3); in write() argument
46 public void write(short u0, short u1, short u2, short u3, short u4); in write() argument
/external/e2fsprogs/lib/uuid/
Duuid.h58 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ argument
59 …static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13…
61 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ argument
62 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
Duuid.h.in58 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ argument
59 …static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13…
61 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ argument
62 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
/external/iptables/include/net/netfilter/
Dnf_conntrack_tuple.h60 union nf_inet_addr u3; member
73 union nf_inet_addr u3; member
109 union nf_inet_addr u3; member
/external/clang/test/CodeGen/
Ddesignated-initializers.c15 union { double f; int i; } u3 = { }; variable
67 union { int i; float f; } u3; in test1() local
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator64.h53 static const uptr u3 = u2 + (l4 - l3) / s3; variable
54 static const uptr u4 = u3 + (l5 - l4) / s4;
75 if (class_id <= u3) return l3 + s3 * (class_id - u2); in Size()
76 if (class_id <= u4) return l4 + s4 * (class_id - u3); in Size()
84 if (size <= l5) return u3 + (size - l4 + s4 - 1) / s4; in ClassID()
92 if (class_id <= u3) return c3; in MaxCached()
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DHex.java80 public static String u3(int v) { in u3() method in Hex
290 case 6: astr = Hex.u3(outOffset); break; in dump()
/external/dexmaker/src/dx/java/com/android/dx/util/
DHex.java68 public static String u3(int v) { in u3() method in Hex
278 case 6: astr = Hex.u3(outOffset); break; in dump()
/external/qemu/distrib/sdl-1.2.15/src/video/aalib/
DSDL_aaevents_c.h31 int u1,int u2,int u3, int u4);
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
DSDL_svgaevents_c.h31 int u1,int u2,int u3, int u4);
/external/webkit/Source/JavaScriptCore/runtime/
DOperations.h127 …S_INLINE JSValue jsString(ExecState* exec, const UString& u1, const UString& u2, const UString& u3) in jsString() argument
131 unsigned length3 = u3.length(); in jsString()
133 return jsString(exec, u2, u3); in jsString()
135 return jsString(exec, u1, u3); in jsString()
145 return new (globalData) JSString(globalData, u1, u2, u3); in jsString()
/external/chromium/chrome/browser/sync/
Dprofile_sync_service_bookmark_unittest.cc583 int64 u3 = adds.AddURL(L"Nifty2", "ftp://nifty.andrew.cmu.edu/", f1, u2); in TEST_F() local
620 int64 u3_old_parent = mods.ModifyPosition(u3, f2, f1); in TEST_F()
630 ExpectBrowserNodeParent(u3, u3_old_parent); in TEST_F()
643 dels.Delete(u3); in TEST_F()
646 ExpectBrowserNodeKnown(u3); in TEST_F()
651 ExpectBrowserNodeUnknown(u3); in TEST_F()
672 int64 u3 = adds.AddURL( L"u3", url, f2, 0); // + u3 NOLINT in TEST_F() local
673 int64 u4 = adds.AddURL( L"u4", url, f2, u3); // + u4 NOLINT in TEST_F()
694 ops.ModifyPosition(u3, other_bookmarks_id(), f1); // Prev == f1 is OK here. in TEST_F()
/external/kernel-headers/original/asm-mips/sn/
Dioc3.h24 } u3; member
37 #define iu_iir u3.iir
38 #define iu_fcr u3.fcr
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DExcludedProxyTest.java57 URL u3 = new URL("http://localhost"); in test_usingProxy() local
58 URLConnection conn3 = u3.openConnection(); in test_usingProxy()
DURLTest.java56 URL u3; field in URLTest
111 u3 = new URL("http://www.yahoo4.com/"); in test_ConstructorLjava_lang_String()
112 assertEquals("u3 returns a wrong protocol", "http", u3.getProtocol()); in test_ConstructorLjava_lang_String()
113 assertEquals("u3 returns a wrong host", "www.yahoo4.com", u3.getHost()); in test_ConstructorLjava_lang_String()
114 assertEquals("u3 returns a wrong port", -1, u3.getPort()); in test_ConstructorLjava_lang_String()
115 assertEquals("u3 returns a wrong file", "/", u3.getFile()); in test_ConstructorLjava_lang_String()
116 assertNull("u3 returns a wrong anchor", u3.getRef()); in test_ConstructorLjava_lang_String()
/external/llvm/test/Transforms/IndVarSimplify/
Deliminate-comparison.ll101 %u3 = zext i32 %t2 to i64
102 store i64 %u3, i64* null
/external/fdlibm/
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/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/
Den-GB_kh0_kdt_mgc3.pkb59 �a=hD"dM����;�6��-v�P4Yw�(w�yxv�pp~�S�;�jDñ�uh cÆ���(���5�u3�Mh�dà\"���Ի�8n�/ �F
/external/clang/test/SemaCXX/
Ddcl_init_aggr.cpp121 u u3 = 1; // expected-error{{no viable conversion}} variable
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
Dp1.cpp47 constexpr union U3 {} u3 = {}; variable

12