/external/tcpdump/tests/ |
D | isis-extd-ipreach-oobr.out | 80 IPv6 prefix: 2aa3:88dd:a090:8ff::/91, Distribution: up, Metric: 28221769, Internal 81 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 82 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 83 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 84 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 85 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 86 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 87 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 88 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal 89 IPv6 prefix: ::/0, Distribution: up, Metric: 0, Internal [all …]
|
D | sflow_multiple_counter_30_pdus.out | 6 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/icu/icu4c/source/test/testdata/ |
D | dcfmtest.txt | 36 # up 77 format 0.00 up "32.045" "32.05" 86 format 0.00 up "-32.045" "-32.05" 95 format @@@ up "1235.00" "1240" 104 format @@@ up "-1235.00" "-1240" 113 format 0.000E0 up "12345" "1.235E4" 120 format 0.0## up "1.00001" "1.001" 121 format 0.0## up "1.0000000000000000000000000000000000000000000000000001" "1.001" 122 format 0.0## up "1.0000000000000000000000000000000000000000000000000000" "1.0" 147 format 0.0 up "-1.00" "-1.0" [all …]
|
/external/u-boot/arch/powerpc/cpu/mpc85xx/ |
D | serial_scc.c | 77 volatile scc_uart_t *up; in mpc85xx_serial_init() local 85 up = (scc_uart_t *)&(cpm->im_dprambase[PROFF_SCC]); in mpc85xx_serial_init() 119 up->scc_genscc.scc_rbase = dpaddr; in mpc85xx_serial_init() 120 up->scc_genscc.scc_tbase = dpaddr+sizeof(cbd_t); in mpc85xx_serial_init() 121 up->scc_genscc.scc_rfcr = CPMFCR_EB; in mpc85xx_serial_init() 122 up->scc_genscc.scc_tfcr = CPMFCR_EB; in mpc85xx_serial_init() 123 up->scc_genscc.scc_mrblr = 1; in mpc85xx_serial_init() 124 up->scc_maxidl = 0; in mpc85xx_serial_init() 125 up->scc_brkcr = 1; in mpc85xx_serial_init() 126 up->scc_parec = 0; in mpc85xx_serial_init() [all …]
|
/external/tcpdump/ |
D | print-udp.c | 100 vat_print(netdissect_options *ndo, const void *hdr, register const struct udphdr *up) in vat_print() argument 109 ND_TCHECK_16BITS(&up->uh_ulen); in vat_print() 111 (uint32_t)(EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up)), in vat_print() 121 ND_TCHECK_16BITS(&up->uh_ulen); in vat_print() 123 (uint32_t)(EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up) - 8), in vat_print() 139 register const struct udphdr *up) in rtp_print() argument 151 ND_TCHECK_16BITS(&up->uh_ulen); in rtp_print() 152 dlen = EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up) - 8; in rtp_print() 302 register const struct udphdr *up, in udp_cksum() argument 305 return nextproto4_cksum(ndo, ip, (const uint8_t *)(const void *)up, len, len, in udp_cksum() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_xdrlib.py | 27 up = xdrlib.Unpacker(data) 29 self.assertEqual(up.get_position(), 0) 31 self.assertEqual(up.unpack_int(), 42) 32 self.assertEqual(up.unpack_int(), -17) 33 self.assertEqual(up.unpack_uint(), 9) 34 self.assertTrue(up.unpack_bool() is True) 37 pos = up.get_position() 38 self.assertTrue(up.unpack_bool() is False) 41 up.set_position(pos) 42 self.assertTrue(up.unpack_bool() is False) [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_xdrlib.py | 28 up = xdrlib.Unpacker(data) 30 self.assertEqual(up.get_position(), 0) 32 self.assertEqual(up.unpack_int(), 42) 33 self.assertEqual(up.unpack_int(), -17) 34 self.assertEqual(up.unpack_uint(), 9) 35 self.assertTrue(up.unpack_bool() is True) 38 pos = up.get_position() 39 self.assertTrue(up.unpack_bool() is False) 42 up.set_position(pos) 43 self.assertTrue(up.unpack_bool() is False) [all …]
|
/external/elfutils/libcpu/ |
D | memory-access.h | 98 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/bcc/examples/networking/vlan_filter/ |
D | test_setup.sh | 34 ip netns exec netns11 ifconfig veth11 192.168.100.11/24 up 35 ip netns exec netns11 ip link set lo up 36 ip netns exec netns12 ifconfig veth12 192.168.100.12/24 up 37 ip netns exec netns12 ip link set lo up 38 ip netns exec netns21 ifconfig veth21 192.168.200.21/24 up 39 ip netns exec netns21 ip link set lo up 40 ip netns exec netns22 ifconfig veth22 192.168.200.22/24 up 41 ip netns exec netns22 ip link set lo up 45 ip netns exec netns3 ip link set brx up 46 ip netns exec netns3 ip link set veth13 up [all …]
|
/external/lzma/CPP/7zip/UI/Common/ |
D | UpdateCallback.cpp | 120 const CUpdatePair2 &up = (*UpdatePairs)[index]; in GetUpdateItemInfo() local 121 if (newData) *newData = BoolToInt(up.NewData); in GetUpdateItemInfo() 122 if (newProps) *newProps = BoolToInt(up.NewProps); in GetUpdateItemInfo() 126 if (up.ExistInArchive()) in GetUpdateItemInfo() 127 *indexInArchive = (ArcItems == 0) ? up.ArcIndex : (*ArcItems)[up.ArcIndex].IndexInServer; in GetUpdateItemInfo() 220 const CUpdatePair2 &up = (*UpdatePairs)[index]; in GetRawProp() local 221 if (up.UseArcProps && up.ExistInArchive() && Arc->GetRawProps) in GetRawProp() 223 ArcItems ? (*ArcItems)[up.ArcIndex].IndexInServer : up.ArcIndex, in GetRawProp() 230 if (up.IsAnti) in GetRawProp() 234 const CDirItem &di = DirItems->Items[up.DirIndex]; in GetRawProp() [all …]
|
/external/openssh/openbsd-compat/ |
D | getcwd.c | 65 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/lua/src/ |
D | ltablib.c | 310 static IdxT partition (lua_State *L, IdxT lo, IdxT up) { in partition() argument 312 IdxT j = up - 1; /* will be decremented before first use */ in partition() 317 if (i == up - 1) /* a[i] < P but a[up - 1] == P ?? */ in partition() 333 set2(L, up - 1, i); in partition() 346 static IdxT choosePivot (IdxT lo, IdxT up, unsigned int rnd) { in choosePivot() argument 347 IdxT r4 = (up - lo) / 4; /* range/4 */ in choosePivot() 349 lua_assert(lo + r4 <= p && p <= up - r4); in choosePivot() 357 static void auxsort (lua_State *L, IdxT lo, IdxT up, in auxsort() argument 359 while (lo < up) { /* loop for tail recursion */ in auxsort() 364 lua_geti(L, 1, up); in auxsort() [all …]
|
/external/deqp-deps/glslang/Test/ |
D | dce.frag | 10 ++c; // should still show up in AST 14 flag ? ++c : ++c; // both should still show up in AST 20 ++c; // should still show up in AST 23 ++c; // should still show up in AST 29 ++c; // should still show up in AST 34 ++c; // should still show up in AST 37 ++c; // should still show up in AST 43 ++c; // should still show up in AST 46 int foo() // not called, but should still show up in AST 50 ++c; // should still show up in AST [all …]
|
/external/elfutils/libdw/ |
D | memory-access.h | 228 const union unaligned *up = p; in read_2ubyte_unaligned_1() local 230 return bswap_16 (up->u2); in read_2ubyte_unaligned_1() 231 return up->u2; in read_2ubyte_unaligned_1() 236 const union unaligned *up = p; in read_2sbyte_unaligned_1() local 238 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned_1() 239 return up->s2; in read_2sbyte_unaligned_1() 245 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local 246 return up->u4; in read_4ubyte_unaligned_noncvt() 251 const union unaligned *up = p; in read_4ubyte_unaligned_1() local 253 return bswap_32 (up->u4); in read_4ubyte_unaligned_1() [all …]
|
/external/iptables/extensions/ |
D | libxt_conntrack.c | 518 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/dnsmasq/src/ |
D | cache.c | 124 struct crec** up = hash_bucket(cache_get_name(crecp)); in cache_hash() local 127 while (*up && ((*up)->flags & F_REVERSE)) up = &((*up)->hash_next); in cache_hash() 130 while (*up && !((*up)->flags & F_IMMORTAL)) up = &((*up)->hash_next); in cache_hash() 132 crecp->hash_next = *up; in cache_hash() 133 *up = crecp; in cache_hash() 220 struct crec *crecp, **up; in cache_scan_free() local 223 for (up = hash_bucket(name), crecp = *up; crecp; crecp = crecp->hash_next) in cache_scan_free() 225 *up = crecp->hash_next; in cache_scan_free() 235 *up = crecp->hash_next; in cache_scan_free() 239 up = &crecp->hash_next; in cache_scan_free() [all …]
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | test_tunnel.sh | 60 ip netns exec at_ns0 ip link set dev veth0 up 61 ip link set dev veth1 up mtu 1500 71 ip netns exec at_ns0 ip link set dev $DEV_NS up 76 ip link set dev $DEV up 85 ip netns exec at_ns0 ip link set dev veth0 up 87 ip link set dev veth1 up 96 ip netns exec at_ns0 ip link set dev $DEV_NS up 102 ip link set dev $DEV up 119 ip netns exec at_ns0 ip link set dev $DEV_NS up 124 ip link set dev $DEV up [all …]
|
/external/libmtp/logs/ |
D | mtp-detect-philips-sa5145.txt | 150 Error 2: (Look this up in ptp.h for an explanation.) 182 Error 2: (Look this up in ptp.h for an explanation.) 184 Error 2: (Look this up in ptp.h for an explanation.) 186 Error 2: (Look this up in ptp.h for an explanation.) 188 Error 2: (Look this up in ptp.h for an explanation.) 190 Error 2: (Look this up in ptp.h for an explanation.) 192 Error 2: (Look this up in ptp.h for an explanation.) 194 Error 2: (Look this up in ptp.h for an explanation.) 196 Error 2: (Look this up in ptp.h for an explanation.) 198 Error 2: (Look this up in ptp.h for an explanation.) [all …]
|
/external/linux-kselftest/tools/testing/selftests/net/ |
D | ip6_gre_headroom.sh | 12 ip link set dev h1 up 17 ip link set dev vh3 up 18 ip link set dev h3 up 20 ip link set dev swp3 up 24 ip link set dev swp1 up 29 ip link set dev er6 up 33 ip link set dev gt6 up
|
/external/icu/icu4c/source/i18n/ |
D | decNumber.cpp | 382 Unit *up; /* work pointer */ in uprv_decNumberFromUInt32() local 385 for (up=dn->lsu; uin>0; up++) { in uprv_decNumberFromUInt32() 386 *up=(Unit)(uin%(DECDPUNMAX+1)); in uprv_decNumberFromUInt32() 389 dn->digits=decGetDigits(dn->lsu, static_cast<int32_t>(up - dn->lsu)); in uprv_decNumberFromUInt32() 412 const Unit *up; /* .. */ in uprv_decNumberToInt32() local 414 up=dn->lsu; /* -> lsu */ in uprv_decNumberToInt32() 415 lo=*up; /* get 1 to 9 digits */ in uprv_decNumberToInt32() 420 up++; in uprv_decNumberToInt32() 422 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1]; in uprv_decNumberToInt32() 448 const Unit *up; /* .. */ in uprv_decNumberToUInt32() local [all …]
|
/external/python/cpython3/Lib/turtledemo/ |
D | peace.py | 21 up() 29 up() 43 up() 49 up() 54 up()
|
D | bytedesign.py | 33 self.up() 38 self.up() 41 self.up() 63 self.up() 73 self.up() 79 self.up() 87 self.up() 94 self.up() 103 self.up()
|
/external/python/cpython2/Demo/turtle/ |
D | tdemo_peace.py | 21 up() 29 up() 43 up() 49 up() 54 up()
|
D | tdemo_bytedesign.py | 34 self.up() 39 self.up() 42 self.up() 64 self.up() 74 self.up() 80 self.up() 88 self.up() 95 self.up() 104 self.up()
|
/external/ltp/testcases/kernel/device-drivers/misc_modules/per_cpu_allocator_module/ |
D | test_per_cpu_allocator_module.c | 100 unsigned long *up = per_cpu_ptr(p, cpu); in fill_area() local 104 *up++ = v++; in fill_area() 117 unsigned long *up = per_cpu_ptr(p, cpu); in verify_area() local 121 if (*up != v && warns-- > 0) { in verify_area() 125 printk(" [%p]=%lx should be %lx\n", up, in verify_area() 126 *up, v); in verify_area() 128 up++; in verify_area()
|