Home
last modified time | relevance | path

Searched refs:up (Results 1 – 25 of 1984) sorted by relevance

12345678910>>...80

/external/icu/icu4c/source/test/testdata/
Ddcfmtest.txt34 # up
75 format 0.00 up "32.045" "32.05"
84 format 0.00 up "-32.045" "-32.05"
93 format @@@ up "1235.00" "1240"
102 format @@@ up "-1235.00" "-1240"
111 format 0.000E0 up "12345" "1.235E4"
118 format 0.0## up "1.00001" "1.001"
119 format 0.0## up "1.0000000000000000000000000000000000000000000000000001" "1.001"
120 format 0.0## up "1.0000000000000000000000000000000000000000000000000000" "1.0"
145 format 0.0 up "-1.00" "-1.0"
[all …]
/external/tcpdump/
Dprint-udp.c109 vat_print(const void *hdr, register const struct udphdr *up) in vat_print() argument
116 (u_int32_t)(EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up)), in vat_print()
123 (u_int32_t)(EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up) - 8), in vat_print()
135 rtp_print(const void *hdr, u_int len, register const struct udphdr *up) in rtp_print() argument
142 u_int dlen = EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up) - 8; in rtp_print()
286 register const struct udphdr *up, in udp_cksum() argument
289 return (nextproto4_cksum(ip, (const u_int8_t *)(void *)up, len, in udp_cksum()
294 static int udp6_cksum(const struct ip6_hdr *ip6, const struct udphdr *up, in udp6_cksum() argument
297 return (nextproto6_cksum(ip6, (const u_int8_t *)(void *)up, len, in udp6_cksum()
362 register const struct udphdr *up; in udp_print() local
[all …]
/external/elfutils/src/libcpu/
Dmemory-access.h98 const union unaligned *up = p; in read_2ubyte_unaligned() local
100 return bswap_16 (up->u2); in read_2ubyte_unaligned()
101 return up->u2; in read_2ubyte_unaligned()
106 const union unaligned *up = p; in read_2sbyte_unaligned() local
108 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned()
109 return up->s2; in read_2sbyte_unaligned()
115 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local
116 return up->u4; in read_4ubyte_unaligned_noncvt()
121 const union unaligned *up = p; in read_4ubyte_unaligned() local
123 return bswap_32 (up->u4); in read_4ubyte_unaligned()
[all …]
/external/lzma/CPP/7zip/UI/Common/
DUpdateCallback.cpp75 const CUpdatePair2 &up = (*UpdatePairs)[index]; in GetUpdateItemInfo() local
76 if (newData != NULL) *newData = BoolToInt(up.NewData); in GetUpdateItemInfo()
77 if (newProps != NULL) *newProps = BoolToInt(up.NewProps); in GetUpdateItemInfo()
81 if (up.ExistInArchive()) in GetUpdateItemInfo()
82 *indexInArchive = (ArcItems == 0) ? up.ArcIndex : (*ArcItems)[up.ArcIndex].IndexInServer; in GetUpdateItemInfo()
91 const CUpdatePair2 &up = (*UpdatePairs)[index]; in GetProperty() local
96 prop = up.IsAnti; in GetProperty()
101 if (up.IsAnti) in GetProperty()
118 if (up.ExistOnDisk()) in GetProperty()
120 const CDirItem &di = DirItems->Items[up.DirIndex]; in GetProperty()
[all …]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
DUnresolvedPrincipalTest.java38 UnresolvedPrincipal up = new UnresolvedPrincipal(klass, name); in testCtor() local
39 assertEquals(klass, up.getClassName()); in testCtor()
40 assertEquals(name, up.getName()); in testCtor()
42 up = new UnresolvedPrincipal(klass, null); in testCtor()
43 assertEquals(klass, up.getClassName()); in testCtor()
44 assertNull(up.getName()); in testCtor()
47 up = new UnresolvedPrincipal(null, name); in testCtor()
71 UnresolvedPrincipal up = new UnresolvedPrincipal(klass, name); in testEquals_Common() local
75 assertTrue(up.equals(up)); in testEquals_Common()
76 assertTrue(up.equals(up2)); in testEquals_Common()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DRing.java52 private Vector3f center, up; field in Ring
63 up = Vector3f.UNIT_Y.clone(); in Ring()
81 public Ring(Vector3f center, Vector3f up, float innerRadius, in Ring() argument
84 this.up = up; in Ring()
114 return up; in getUp()
123 public void setUp(Vector3f up) { in setUp() argument
124 this.up = up; in setUp()
193 up.cross(Vector3f.UNIT_X, b1); in random()
195 up.cross(Vector3f.UNIT_Y, b1); in random()
198 up.cross(b1, b2); in random()
[all …]
/external/elfutils/src/libdw/
Dmemory-access.h176 const union unaligned *up = p; in read_2ubyte_unaligned_1() local
178 return bswap_16 (up->u2); in read_2ubyte_unaligned_1()
179 return up->u2; in read_2ubyte_unaligned_1()
184 const union unaligned *up = p; in read_2sbyte_unaligned_1() local
186 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned_1()
187 return up->s2; in read_2sbyte_unaligned_1()
193 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local
194 return up->u4; in read_4ubyte_unaligned_noncvt()
199 const union unaligned *up = p; in read_4ubyte_unaligned_1() local
201 return bswap_32 (up->u4); in read_4ubyte_unaligned_1()
[all …]
/external/openssh/openbsd-compat/
Dgetcwd.c65 char *ept, *eup, *up; in getcwd() local
92 if ((up = malloc(upsize = MAXPATHLEN)) == NULL) in getcwd()
94 eup = up + upsize; in getcwd()
95 bup = up; in getcwd()
96 up[0] = '.'; in getcwd()
97 up[1] = '\0'; in getcwd()
109 if (lstat(up, &s)) in getcwd()
125 free(up); in getcwd()
137 if ((nup = realloc(up, upsize *= 2)) == NULL) in getcwd()
139 bup = nup + (bup - up); in getcwd()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
DParticleTriMesh.java179 Vector3f up = new Vector3f(), in updateParticleData() local
183 up.set(camUp); in updateParticleData()
206 camDir.cross(left, up); in updateParticleData()
207 up.multLocal(p.size); in updateParticleData()
210 up.set(faceNormal).crossLocal(Vector3f.UNIT_X); in updateParticleData()
211 faceNormal.cross(up, left); in updateParticleData()
212 up.multLocal(p.size); in updateParticleData()
222 up.x = camLeft.x * -sin + camUp.x * cos; in updateParticleData()
223 up.y = camLeft.y * -sin + camUp.y * cos; in updateParticleData()
224 up.z = camLeft.z * -sin + camUp.z * cos; in updateParticleData()
[all …]
/external/tcpdump/tests/
Dsflow_multiple_counter_30_pdus.out6 ifstatus 3, adminstatus: up, operstatus: up
18 ifstatus 3, adminstatus: up, operstatus: up
30 ifstatus 3, adminstatus: up, operstatus: up
42 ifstatus 3, adminstatus: up, operstatus: up
54 ifstatus 3, adminstatus: up, operstatus: up
66 ifstatus 3, adminstatus: up, operstatus: up
78 ifstatus 3, adminstatus: up, operstatus: up
92 ifstatus 3, adminstatus: up, operstatus: up
104 ifstatus 3, adminstatus: up, operstatus: up
116 ifstatus 3, adminstatus: up, operstatus: up
[all …]
/external/toybox/toys/lsb/
Dsu.c45 struct passwd *up; in su_main() local
65 up = xgetpwnam(name); in su_main()
66 xsetuser(up); in su_main()
69 *(argv++) = TT.s ? TT.s : up->pw_shell; in su_main()
79 xchdir(up->pw_dir); in su_main()
83 setenv("HOME", up->pw_dir, 1); in su_main()
84 setenv("SHELL", up->pw_shell, 1); in su_main()
85 setenv("USER", up->pw_name, 1); in su_main()
86 setenv("LOGNAME", up->pw_name, 1); in su_main()
/external/iptables/extensions/
Dlibxt_conntrack.c518 struct xt_conntrack_mtinfo3 up; in conntrack1_mt_parse() local
520 memset(&up, 0, sizeof(up)); in conntrack1_mt_parse()
521 cinfo_transform(&up, info); in conntrack1_mt_parse()
522 up.origsrc_port_high = up.origsrc_port; in conntrack1_mt_parse()
523 up.origdst_port_high = up.origdst_port; in conntrack1_mt_parse()
524 up.replsrc_port_high = up.replsrc_port; in conntrack1_mt_parse()
525 up.repldst_port_high = up.repldst_port; in conntrack1_mt_parse()
526 cb->data = &up; in conntrack1_mt_parse()
528 if (up.origsrc_port != up.origsrc_port_high || in conntrack1_mt_parse()
529 up.origdst_port != up.origdst_port_high || in conntrack1_mt_parse()
[all …]
/external/v8/test/mjsunit/
Dreadonly.js69 for (var up = 0; up <= depth; ++up) {
76 for (var j = 0; j < depth - up; ++j) {
80 for (var j = 0; j < up; ++j) {
87 o.up = o;
88 for (var j = 0; j < up; ++j) o.up = Object.getPrototypeOf(o.up);
190 readonly(o.up, "a");
/external/dnsmasq/src/
Dcache.c161 struct crec **up = hash_bucket(cache_get_name(crecp)); in cache_hash() local
165 while (*up && ((*up)->flags & F_REVERSE)) in cache_hash()
166 up = &((*up)->hash_next); in cache_hash()
169 while (*up && !((*up)->flags & F_IMMORTAL)) in cache_hash()
170 up = &((*up)->hash_next); in cache_hash()
172 crecp->hash_next = *up; in cache_hash()
173 *up = crecp; in cache_hash()
272 struct crec *crecp, **up; in cache_scan_free() local
276 for (up = hash_bucket(name), crecp = *up; crecp; crecp = crecp->hash_next) in cache_scan_free()
279 *up = crecp->hash_next; in cache_scan_free()
[all …]
/external/valgrind/gdbserver_tests/
Dmcleak.stdinB.gdb15 up
21 up
29 up
37 up
43 up
50 up
57 up
64 up
71 up
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
Dauto_pointer.pass.cpp48 std::unique_ptr<A> up(std::move(ap)); in main() local
49 assert(up.get() == p); in main()
59 std::unique_ptr<A> up; in main() local
60 up = std::move(ap); in main()
61 assert(up.get() == p); in main()
Dauto_pointer01.fail.cpp47 std::unique_ptr<A> up(ap); in main() local
48 assert(up.get() == p); in main()
58 std::unique_ptr<A> up; in main() local
59 up = ap; in main()
60 assert(up.get() == p); in main()
/external/icu/icu4c/source/i18n/
DdecNumber.c380 Unit *up; /* work pointer */ in uprv_decNumberFromUInt32() local
383 for (up=dn->lsu; uin>0; up++) { in uprv_decNumberFromUInt32()
384 *up=(Unit)(uin%(DECDPUNMAX+1)); in uprv_decNumberFromUInt32()
387 dn->digits=decGetDigits(dn->lsu, up-dn->lsu); in uprv_decNumberFromUInt32()
410 const Unit *up; /* .. */ in uprv_decNumberToInt32() local
412 up=dn->lsu; /* -> lsu */ in uprv_decNumberToInt32()
413 lo=*up; /* get 1 to 9 digits */ in uprv_decNumberToInt32()
418 up++; in uprv_decNumberToInt32()
420 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1]; in uprv_decNumberToInt32()
446 const Unit *up; /* .. */ in uprv_decNumberToUInt32() local
[all …]
/external/sonic/samples/
DREADME5 This is a sonic 2X sped-up version of a public domain librivox.org recording, from
9 This is the same recording as sonic.wav, but sped up using soundtouch, which
10 uses WSOLA rather than the sonic algorithm. Even at 2X speed up, you should be
17 This is his voice sped up by 2X using Sonic.
23 though Sonic can speed up espeak to much faster rates.
27 sonic 2.6 out.wav espeak_sonic.wav'. Sonic sped it up 2.6X, which is about the
28 same speed as espeak at -s450. I personally feel that the sonic sped up sample
/external/sonic/debian/
Dcontrol14 Description: Simple utility to speed up or slow down speech
16 and speeds them up or slows them down, with low distortion.
18 high quality at speed up factors well over 2X.
24 Description: Simple library to speed up or slow down speech
26 libsonic is a very simple library for speeding up or slowing
30 high quality at speed up factors well over 2X.
41 high quality at speed up factors well over 2X.
/external/v8/test/mjsunit/regress/
Dregress-2185-2.js88 function up(a) { function
110 var asc = up([]);
112 var asc_desc = down(up([]));
113 var desc_asc = up(down([]));
114 var asc_asc = up(up([]));
/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp274 FX_BYTE up = 0; in PNG_PredictorEncode() local
276 up = pSrcData[byte - row_size]; in PNG_PredictorEncode()
278 pDestData[byte + 1] = pSrcData[byte] - up; in PNG_PredictorEncode()
287 FX_BYTE up = 0; in PNG_PredictorEncode() local
289 up = pSrcData[byte - row_size]; in PNG_PredictorEncode()
291 pDestData[byte + 1] = pSrcData[byte] - (left + up) / 2; in PNG_PredictorEncode()
300 FX_BYTE up = 0; in PNG_PredictorEncode() local
302 up = pSrcData[byte - row_size]; in PNG_PredictorEncode()
308 pDestData[byte + 1] = pSrcData[byte] - PaethPredictor(left, up, upper_left); in PNG_PredictorEncode()
348 FX_BYTE up = 0; in PNG_PredictLine() local
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMinimalCollection.java109 throw up(); in addAll()
112 throw up(); in removeAll()
115 throw up(); in retainAll()
118 throw up(); in clear()
120 private static UnsupportedOperationException up() { in up() method in MinimalCollection
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
DUnionPattern.java196 UnionPattern up = (UnionPattern)expr; in deepEquals()
201 if((null == up.m_patterns) || (up.m_patterns.length != n)) in deepEquals()
206 if(!m_patterns[i].deepEquals(up.m_patterns[i])) in deepEquals()
210 else if(up.m_patterns != null) in deepEquals()
/external/skia/src/svg/parser/
DSkSVGParser.cpp392 SkSVGElement* up = parent; in CreateElement() local
393 while (up && up->fIsDef == false) { in CreateElement()
394 up->fIsDef = true; in CreateElement()
395 up = up->fParent; in CreateElement()
399 SkSVGElement* up = parent; in CreateElement() local
400 while (up && up->fIsNotDef == false) { in CreateElement()
401 up->fIsNotDef = true; in CreateElement()
402 up = up->fParent; in CreateElement()

12345678910>>...80