/external/tensorflow/tensorflow/contrib/slim/python/slim/nets/ |
D | vgg.py | 80 """Oxford Net VGG 11-Layers version A Example. 104 net = layers_lib.repeat( 106 net = layers_lib.max_pool2d(net, [2, 2], scope='pool1') 107 net = layers_lib.repeat(net, 1, layers.conv2d, 128, [3, 3], scope='conv2') 108 net = layers_lib.max_pool2d(net, [2, 2], scope='pool2') 109 net = layers_lib.repeat(net, 2, layers.conv2d, 256, [3, 3], scope='conv3') 110 net = layers_lib.max_pool2d(net, [2, 2], scope='pool3') 111 net = layers_lib.repeat(net, 2, layers.conv2d, 512, [3, 3], scope='conv4') 112 net = layers_lib.max_pool2d(net, [2, 2], scope='pool4') 113 net = layers_lib.repeat(net, 2, layers.conv2d, 512, [3, 3], scope='conv5') [all …]
|
D | inception_v1.py | 67 net = layers.conv2d(inputs, 64, [7, 7], stride=2, scope=end_point) 68 end_points[end_point] = net 70 return net, end_points 72 net = layers_lib.max_pool2d(net, [3, 3], stride=2, scope=end_point) 73 end_points[end_point] = net 75 return net, end_points 77 net = layers.conv2d(net, 64, [1, 1], scope=end_point) 78 end_points[end_point] = net 80 return net, end_points 82 net = layers.conv2d(net, 192, [3, 3], scope=end_point) [all …]
|
D | inception_v2.py | 103 net = layers.separable_conv2d( 110 end_points[end_point] = net 112 return net, end_points 115 net = layers_lib.max_pool2d(net, [3, 3], scope=end_point, stride=2) 116 end_points[end_point] = net 118 return net, end_points 121 net = layers.conv2d( 122 net, 126 end_points[end_point] = net 128 return net, end_points [all …]
|
D | inception_v3.py | 112 net = layers.conv2d(inputs, depth(32), [3, 3], stride=2, scope=end_point) 113 end_points[end_point] = net 115 return net, end_points 118 net = layers.conv2d(net, depth(32), [3, 3], scope=end_point) 119 end_points[end_point] = net 121 return net, end_points 124 net = layers.conv2d( 125 net, depth(64), [3, 3], padding='SAME', scope=end_point) 126 end_points[end_point] = net 128 return net, end_points [all …]
|
D | overfeat.py | 98 net = layers.conv2d( 100 net = layers_lib.max_pool2d(net, [2, 2], scope='pool1') 101 net = layers.conv2d(net, 256, [5, 5], padding='VALID', scope='conv2') 102 net = layers_lib.max_pool2d(net, [2, 2], scope='pool2') 103 net = layers.conv2d(net, 512, [3, 3], scope='conv3') 104 net = layers.conv2d(net, 1024, [3, 3], scope='conv4') 105 net = layers.conv2d(net, 1024, [3, 3], scope='conv5') 106 net = layers_lib.max_pool2d(net, [2, 2], scope='pool5') 112 net = layers.conv2d(net, 3072, [6, 6], padding='VALID', scope='fc6') 113 net = layers_lib.dropout( [all …]
|
D | alexnet.py | 101 net = layers.conv2d( 103 net = layers_lib.max_pool2d(net, [3, 3], 2, scope='pool1') 104 net = layers.conv2d(net, 192, [5, 5], scope='conv2') 105 net = layers_lib.max_pool2d(net, [3, 3], 2, scope='pool2') 106 net = layers.conv2d(net, 384, [3, 3], scope='conv3') 107 net = layers.conv2d(net, 384, [3, 3], scope='conv4') 108 net = layers.conv2d(net, 256, [3, 3], scope='conv5') 109 net = layers_lib.max_pool2d(net, [3, 3], 2, scope='pool5') 116 net = layers.conv2d(net, 4096, [5, 5], padding='VALID', scope='fc6') 117 net = layers_lib.dropout( [all …]
|
/external/tcpdump/tests/ |
D | dnssec-vv.out | 2 ….1.53: [bad udp cksum 0xfe49 -> 0xb5ef!] 20972+ [1au] SSHFP? monadic.cynic.net. ar: . OPT UDPsize=… 4 …net. 3/6/13 monadic.cynic.net. SSHFP, monadic.cynic.net. RRSIG, monadic.cynic.net. RRSIG ns: cynic… 6 ….0.0.1.53: [bad udp cksum 0xfe49 -> 0x28d8!] 48576+ [1au] A? monadic.cynic.net. ar: . OPT UDPsize=… 8 …net. 1/4/5 monadic.cynic.net. A 125.100.126.202 ns: cynic.net. NS ns4.cynic.net., cynic.net. NS ns… 10 ….1.53: [bad udp cksum 0xfe49 -> 0xf266!] 49432+ [1au] SSHFP? monadic.cynic.net. ar: . OPT UDPsize=… 12 …net. 1/4/5 monadic.cynic.net. SSHFP ns: cynic.net. NS ns4.cynic.net., cynic.net. NS ns1.cynic.net.…
|
/external/guava/guava-gwt/test/com/google/common/net/ |
D | MediaTypeTest_gwt.java | 16 package com.google.common.net; 19 return "com.google.common.net.testModule"; in getModuleName() 22 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreateApplicationType() 27 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreateAudioType() 32 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreateImageType() 37 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreateTextType() 42 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreateVideoType() 47 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreate_invalidSubtype() 52 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreate_invalidType() 57 com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); in testCreate_wildcardTypeDeclaredSubtype() [all …]
|
D | InternetDomainNameTest_gwt.java | 16 package com.google.common.net; 19 return "com.google.common.net.testModule"; in getModuleName() 22 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testChild() 27 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testEquality() 32 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testExclusion() 37 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testInvalid() 42 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testInvalidTopPrivateDomain() 47 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testIsValid() 52 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testMultipleUnders() 57 …com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNa… in testParent() [all …]
|
D | HostAndPortTest_gwt.java | 16 package com.google.common.net; 19 return "com.google.common.net.testModule"; in getModuleName() 22 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromHost() 27 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromParts() 32 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromStringBadDefaultPort() 37 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromStringBadPort() 42 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromStringParseableNonsense() 47 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromStringUnparseableNonsense() 52 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromStringUnusedDefaultPort() 57 com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); in testFromStringWellFormed() [all …]
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
D | mksysctl_openbsd.pl | 38 net/if.h 39 net/if_pfsync.h 40 net/pipex.h 66 net 83 net.bpf 84 net.ifq 85 net.inet 86 net.inet.ah 87 net.inet.carp 88 net.inet.divert [all …]
|
D | zsysctl_openbsd_amd64.go | 119 {"net.bpf.bufsize", []_C_int{4, 31, 1}}, 120 {"net.bpf.maxbufsize", []_C_int{4, 31, 2}}, 121 {"net.inet.ah.enable", []_C_int{4, 2, 51, 1}}, 122 {"net.inet.ah.stats", []_C_int{4, 2, 51, 2}}, 123 {"net.inet.carp.allow", []_C_int{4, 2, 112, 1}}, 124 {"net.inet.carp.log", []_C_int{4, 2, 112, 3}}, 125 {"net.inet.carp.preempt", []_C_int{4, 2, 112, 2}}, 126 {"net.inet.carp.stats", []_C_int{4, 2, 112, 4}}, 127 {"net.inet.divert.recvspace", []_C_int{4, 2, 258, 1}}, 128 {"net.inet.divert.sendspace", []_C_int{4, 2, 258, 2}}, [all …]
|
D | zsysctl_openbsd_386.go | 120 {"net.bpf.bufsize", []_C_int{4, 31, 1}}, 121 {"net.bpf.maxbufsize", []_C_int{4, 31, 2}}, 122 {"net.inet.ah.enable", []_C_int{4, 2, 51, 1}}, 123 {"net.inet.ah.stats", []_C_int{4, 2, 51, 2}}, 124 {"net.inet.carp.allow", []_C_int{4, 2, 112, 1}}, 125 {"net.inet.carp.log", []_C_int{4, 2, 112, 3}}, 126 {"net.inet.carp.preempt", []_C_int{4, 2, 112, 2}}, 127 {"net.inet.carp.stats", []_C_int{4, 2, 112, 4}}, 128 {"net.inet.divert.recvspace", []_C_int{4, 2, 258, 1}}, 129 {"net.inet.divert.sendspace", []_C_int{4, 2, 258, 2}}, [all …]
|
D | zsysctl_openbsd_arm.go | 120 {"net.bpf.bufsize", []_C_int{4, 31, 1}}, 121 {"net.bpf.maxbufsize", []_C_int{4, 31, 2}}, 122 {"net.inet.ah.enable", []_C_int{4, 2, 51, 1}}, 123 {"net.inet.ah.stats", []_C_int{4, 2, 51, 2}}, 124 {"net.inet.carp.allow", []_C_int{4, 2, 112, 1}}, 125 {"net.inet.carp.log", []_C_int{4, 2, 112, 3}}, 126 {"net.inet.carp.preempt", []_C_int{4, 2, 112, 2}}, 127 {"net.inet.carp.stats", []_C_int{4, 2, 112, 4}}, 128 {"net.inet.divert.recvspace", []_C_int{4, 2, 258, 1}}, 129 {"net.inet.divert.sendspace", []_C_int{4, 2, 258, 2}}, [all …]
|
/external/antlr/runtime/JavaScript/third/ |
D | antcontrib.properties | 1 antclipse=net.sf.antcontrib.antclipse.ClassPathTask 2 antserver=net.sf.antcontrib.antserver.server.ServerTask 3 remoteant=net.sf.antcontrib.antserver.client.ClientTask 4 verifydesign=net.sf.antcontrib.design.VerifyDesign 5 inifile=net.sf.antcontrib.inifile.IniFileTask 6 if=net.sf.antcontrib.logic.IfTask 7 foreach=net.sf.antcontrib.logic.ForEach 8 for=net.sf.antcontrib.logic.ForTask 9 throw=net.sf.antcontrib.logic.Throw 10 trycatch=net.sf.antcontrib.logic.TryCatchTask [all …]
|
/external/syzkaller/pkg/report/testdata/linux/guilty/ |
D | 34 | 1 FILE: net/ipv6/route.c 4 BUG: KMSAN: use of uninitialized memory in rt6_mtu_change_route+0x4d8/0xa70 net/ipv6/route.c:3822 12 rt6_mtu_change_route+0x4d8/0xa70 net/ipv6/route.c:3822 13 fib6_clean_node+0x319/0x6b0 net/ipv6/ip6_fib.c:1918 14 fib6_walk_continue+0x9a1/0xbb0 net/ipv6/ip6_fib.c:1844 15 fib6_walk net/ipv6/ip6_fib.c:1892 [inline] 16 fib6_clean_tree net/ipv6/ip6_fib.c:1969 [inline] 17 __fib6_clean_all+0x501/0x810 net/ipv6/ip6_fib.c:1985 18 fib6_clean_all+0x90/0xa0 net/ipv6/ip6_fib.c:1996 19 rt6_mtu_change+0xd2/0x120 net/ipv6/route.c:3843 [all …]
|
D | 13 | 1 FILE: net/dccp/ipv6.c 5 BUG: KASAN: use-after-free in skb_clone+0x3a2/0x420 net/core/skbuff.c:1029 at addr ffff88003b910d8c 20 skb_clone+0x3a2/0x420 net/core/skbuff.c:1029 21 dccp_v6_request_recv_sock+0xb5e/0x1960 net/dccp/ipv6.c:527 22 dccp_check_req+0x335/0x5a0 net/dccp/minisocks.c:186 23 dccp_v6_rcv+0x69e/0x1d00 net/dccp/ipv6.c:711 24 ip6_input_finish+0x46d/0x17a0 net/ipv6/ip6_input.c:279 26 ip6_input+0xdb/0x590 net/ipv6/ip6_input.c:322 27 dst_input include/net/dst.h:507 [inline] 28 ip6_rcv_finish+0x289/0x890 net/ipv6/ip6_input.c:69 [all …]
|
D | 26 | 1 FILE: net/xfrm/xfrm_policy.c 32 __xfrm_decode_session+0x68/0x110 net/xfrm/xfrm_policy.c:2358 33 __xfrm_policy_check+0x18c/0x2350 net/xfrm/xfrm_policy.c:2393 34 __xfrm_policy_check2 include/net/xfrm.h:1170 [inline] 35 xfrm_policy_check include/net/xfrm.h:1175 [inline] 36 xfrm6_policy_check include/net/xfrm.h:1185 [inline] 37 rawv6_rcv+0x8f6/0x1200 net/ipv6/raw.c:424 38 ipv6_raw_deliver net/ipv6/raw.c:224 [inline] 39 raw6_local_deliver+0x819/0xa80 net/ipv6/raw.c:240 40 ip6_input_finish+0x3c7/0x17a0 net/ipv6/ip6_input.c:246 [all …]
|
/external/v8/tools/clang/traffic_annotation_extractor/tests/ |
D | test-original.cc | 5 #include "net/traffic_annotation/network_traffic_annotation.h" 13 net::NetworkTrafficAnnotationTag kTrafficAnnotation = 14 net::DefineNetworkTrafficAnnotation("id1", R"( 35 net::PartialNetworkTrafficAnnotationTag partial_traffic_annotation = in TestAnnotations() 36 net::DefinePartialNetworkTrafficAnnotation("id2", "completing_id2", R"( in TestAnnotations() 45 net::NetworkTrafficAnnotationTag completed_traffic_annotation = in TestAnnotations() 46 net::CompleteNetworkTrafficAnnotation("id3", partial_traffic_annotation, in TestAnnotations() 60 net::NetworkTrafficAnnotationTag completed_branch_traffic_annotation = in TestAnnotations() 61 net::BranchedCompleteNetworkTrafficAnnotation( in TestAnnotations() 72 net::URLFetcherDelegate* delegate = nullptr; in TestURLFetcherCreate() [all …]
|
/external/tcpdump/ |
D | CREDITS | 14 Aaron Campbell <aaron at arbor dot net> 15 A Costa <agcosta at gis dot net> 17 Alexandra Kossovsky <alexandra1975 at sourceforge dot net> 19 Ananth Suryanarayana <anantha at juniper dot net> 21 Andrew Brown <atatat at atatdot dot net> 22 Andrew Church <andrew at users dot sourceforge dot net> 24 Andrew Hintz <adhintz at users dot sourceforge dot net> 27 Andy Heffernan <ahh at juniper dot net> 28 Anton Bernal <anton at juniper dot net> 32 Arnaldo Carvalho de Melo <acme at ghostprotocols dot net> [all …]
|
/external/tensorflow/tensorflow/contrib/eager/python/ |
D | network_test.py | 68 checkpoint = trackable_utils.Checkpoint(net=MyNetwork()) 72 def _save_modify_load_network_built(self, net, global_step=None): argument 75 network=net, save_path=checkpoint_directory, global_step=global_step) 77 original_output = self.evaluate(net(input_value)) 78 for var in net.variables: 81 self.evaluate(net(input_value)), 84 network.restore_network_checkpoint(net, save_path=checkpoint_directory) 87 self.evaluate(net(input_value))) 88 for var in net.variables: 90 network.restore_network_checkpoint(net, save_path=checkpoint_path) [all …]
|
/external/libexif/ |
D | ChangeLog | 48 * Updated non-TP translations from launchpad.net's "precise" 51 * Added new translations from launchpad.net's "precise" translations: 88 https://bugs.launchpad.net/bugs/712115 reported by Daniel Thibault). 97 * Updated non-TP translations from launchpad.net: 99 * po/bs.po: Added Bosnian translation from launchpad.net 100 * po/tr.po: Added Turkish translation from launchpad.net 216 * Added a bunch of new translations from launchpad.net 321 2009-09-23 Jan Patera <patera@users.sourceforge.net> 370 2009-03-21 Lutz Mueller <lutz@users.sourceforge.net> 386 2009-03-16 Lutz Mueller <lutz@users.sourceforge.net> [all …]
|
/external/autotest/server/cros/tradefed_test_unittest_data/ |
D | CtsHostsideNetworkTests.txt | 8 03-22 23:13:45 D/ModuleListener: ModuleListener.testRunStarted(com.android.cts.net.HostsideVpnTests… 10 03-22 23:13:45 D/DeviceTestCase: Running com.android.cts.net.HostsideVpnTests#testAppDisallowed() 11 03-22 23:13:45 D/ModuleListener: ModuleListener.testStarted(com.android.cts.net.HostsideVpnTests#te… 12 03-22 23:13:45 D/TestDevice: Uninstalling com.android.cts.net.hostside 17 03-22 23:13:48 D/TestDevice: Uninstalling com.android.cts.net.hostside.app2 22 …am instrument -w -r -e class com.android.cts.net.hostside.VpnTest#testAppDisallowed com.android.… 23 03-22 23:14:03 D/TestDevice: Uninstalling com.android.cts.net.hostside 24 03-22 23:14:04 D/TestDevice: Uninstalling com.android.cts.net.hostside.app2 25 03-22 23:14:05 D/ModuleListener: ModuleListener.testEnded(com.android.cts.net.HostsideVpnTests#test… 26 …x86 CtsHostsideNetworkTests chromeos2-row4-rack5-host4:22] com.android.cts.net.HostsideVpnTests#te… [all …]
|
/external/libnl/etc/ |
D | pktloc | 6 ip.version u8 net+0 0xF0 4 7 ip.hdrlen u8 net+0 0x0F 8 ip.diffserv u8 net+1 9 ip.length u16 net+2 10 ip.id u16 net+4 11 ip.flag.res u8 net+6 0xff 7 12 ip.df u8 net+6 0x40 6 13 ip.mf u8 net+6 0x20 5 14 ip.offset u16 net+6 0x1FFF 15 ip.ttl u8 net+8 [all …]
|
/external/honggfuzz/examples/linux_kernel_ip/ |
D | linux-kernel-4.10.0.patch | 3 Subject: [PATCH] net: no_csums 8 diff --git a/drivers/net/tun.c b/drivers/net/tun.c 10 --- a/drivers/net/tun.c 11 +++ b/drivers/net/tun.c 22 diff --git a/net/core/datagram.c b/net/core/datagram.c 24 --- a/net/core/datagram.c 25 +++ b/net/core/datagram.c 35 diff --git a/net/core/dev.c b/net/core/dev.c 37 --- a/net/core/dev.c 38 +++ b/net/core/dev.c [all …]
|