/external/v8/src/compiler/ |
types.h | 38 // Receiver = Object \/ Proxy 166 V(Proxy, kCallableProxy | kOtherProxy) \
|
/external/robolectric/v3/runtime/ |
android-all-4.1.2_r1-robolectric-0.jar | |
/external/tensorflow/tensorflow/contrib/verbs/ |
README.md | 36 3. Tensors which are located on a non-RDMA-compatible GPU, will be RDMA written to a registered CPU **proxy** buffer on the receiver side, and then copied to GPU by the receiver. 45 * **Proxy tensor** - A CPU allocated tensor, which will be used in the case where the result tensor cannot be RDMA written to directly (GPU direct is disabled or not available). The RDMA write will therefore be done to the proxy tensor, and afterwards we will do a manual local copy from it to the result tensor. 59 1. Allocate the result tensor (and the proxy tensor if required). 60 2. Send a **RDMA_MESSAGE_TENSOR_REQUEST** to the sender, containing the address of the destination tensor (result/proxy) for RDMA write. 62 In order to allocate the result and proxy tensors, we need to know the tensor's meta-data, i.e. shape and data-type for DMAable tensors, and proto-size for serialized tensors. Unfortunately, this information is only available on the sender side which complicates manners. In order to avoid sending extra messages for querying the meta-data at each step, we store a local meta-data cache per tensor, which will only be update upon changes. Based on the assumption that the meta-data of a tensor rarely changes between steps, we expect that on most times the cache will only be updated once. The sender is responsible to detect changes in the meta-data, and update the receiver. In order for the sender to know that the meta-data had changed, each **RDMA_MESSAGE_TENSOR_REQUEST** will contain the meta-data that the receiver had grabbed from the local cache. The sender will then compare the meta-data from the message to the tensor's new meta-data. 79 2. Reallocate the result/proxy tensors. 86 1. Proxy copy/deserialize if required. 88 3. Deallocate the result/proxy tensors and remove the request from the pending list. 111 * Allocate the result tensor (and proxy tensor if required) [all...] |
/external/v8/include/ |
v8.h | 95 class Proxy; [all...] |
/frameworks/av/media/libaudioclient/ |
AudioRecord.cpp | 829 // update proxy 886 Proxy::Buffer buffer; 895 sp<AudioRecordClientProxy> proxy; local 919 proxy = mProxy; 932 status = proxy->obtainBuffer(&buffer, requested, elapsed); 954 Proxy::Buffer buffer; [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/ |
ObjectInputStreamTest.java | 48 import java.lang.reflect.Proxy; 650 if (Proxy.isProxyClass(s)) { 657 fail("Should return a proxy class that implements the interfaces named in a proxy class descriptor"); [all...] |
/prebuilts/go/darwin-x86/src/cmd/pprof/ |
pprof.go | 78 Proxy: http.ProxyFromEnvironment,
|
/prebuilts/go/linux-x86/src/cmd/pprof/ |
pprof.go | 78 Proxy: http.ProxyFromEnvironment,
|
/prebuilts/misc/common/robolectric/android-all/ |
android-all-4.1.2_r1-robolectric-0.jar | |
/prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-api/2.42.2/ |
selenium-api-2.42.2.jar | |
/frameworks/base/core/java/android/app/admin/ |
DevicePolicyManager.java | 91 import java.net.Proxy; 685 * A String extra holding the proxy host for the wifi network in 695 * An int extra holding the proxy port for the wifi network in [all...] |
/external/guice/extensions/persist/lib/ |
cglib-nodep-3.0.jar | |
/external/guice/lib/build/ |
cglib-3.1.jar | |
/prebuilts/devtools/tools/lib/ |
cglib-nodep-3.1.jar | |
/prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.1_3/ |
cglib-nodep-2.1_3.jar | |
/prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.2.2/ |
cglib-nodep-2.2.2.jar | |
/prebuilts/tools/common/m2/repository/cglib/cglib-nodep/3.1/ |
cglib-nodep-3.1.jar | |
/art/runtime/ |
class_linker_test.cc | 48 #include "mirror/proxy.h" 651 struct ProxyOffsets : public CheckOffsets<mirror::Proxy> { 652 ProxyOffsets() : CheckOffsets<mirror::Proxy>(false, "Ljava/lang/reflect/Proxy;") { 653 addOffset(OFFSETOF_MEMBER(mirror::Proxy, h_), "h"); [all...] |
/prebuilts/go/darwin-x86/src/net/http/cgi/ |
host_test.go | 260 "Proxy: should_be_stripped\n"+
|
/prebuilts/go/linux-x86/src/net/http/cgi/ |
host_test.go | 260 "Proxy: should_be_stripped\n"+
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableListTest.java | 22 import static java.lang.reflect.Proxy.newProxyInstance; 600 public Object invoke(Object proxy, Method method,
|
MultimapsCollectionTest.java | 27 import static java.lang.reflect.Proxy.newProxyInstance; 155 public Object invoke(Object proxy, Method method, Object[] args)
|
/external/python/cpython2/Lib/ |
urllib2.py | 663 def _parse_proxy(proxy): 672 ValueError: proxy URL with no authority: 'file:/ftp.example.com/' 678 >>> _parse_proxy('proxy.example.com') 679 (None, None, None, 'proxy.example.com') 680 >>> _parse_proxy('proxy.example.com:3128') 681 (None, None, None, 'proxy.example.com:3128') 686 >>> _parse_proxy('joe:password@proxy.example.com') 687 (None, 'joe', 'password', 'proxy.example.com') 688 >>> _parse_proxy('joe:password@proxy.example.com:3128') 689 (None, 'joe', 'password', 'proxy.example.com:3128' [all...] |
/external/v8/src/ast/ |
ast-types.h | 41 // Receiver = Object \/ Proxy 202 V(Proxy, 1u << 17 | AST_REPRESENTATION(kTaggedPointer)) \ [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
URLConnectionTest.java | 47 import java.net.Proxy; 662 MockResponse mockResponse = new MockResponse().setBody("this response comes via a proxy"); 668 assertContent("this response comes via a proxy", connection); 706 // https should not use http proxy 733 * We weren't honoring all of the appropriate proxy system properties when 746 * through a proxy. http://b/3097277 [all...] |