/external/webrtc/webrtc/tools/rtcbot/test/ |
D | webrtc_video_streaming.js | 30 function onPeerConnectionCreated(pc1, pc2) { argument 33 pc2.addEventListener('addstream', onAddStream); 34 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 35 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 44 createOfferAndAnswer(pc1, pc2); 65 function createOfferAndAnswer(pc1, pc2) { argument 72 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 75 pc2.createAnswer(gotAnswer, test.fail); 80 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 93 report.collectStatsFromPeerConnection("bot2", pc2);
|
D | two_way_video_streaming.js | 45 function onPeerConnectionCreated(pc1, pc2) { argument 48 pc2.addEventListener('addstream', onAddStream.bind(bot2)); 49 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 50 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 52 createOfferAndAnswer(pc1, pc2); 72 function createOfferAndAnswer(pc1, pc2) { argument 79 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 82 pc2.createAnswer(gotAnswer, test.fail); 87 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 100 report.collectStatsFromPeerConnection("bot2", pc2);
|
D | oneWayVideoStreamingWithDownloadingFile.js | 34 function onPeerConnectionCreated(pc1, pc2) { argument 37 pc2.addEventListener('addstream', onAddStream); 38 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 39 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 48 createOfferAndAnswer(pc1, pc2); 69 function createOfferAndAnswer(pc1, pc2) { argument 76 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 79 pc2.createAnswer(gotAnswer, test.fail); 84 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 102 report.collectStatsFromPeerConnection("bot2", pc2);
|
D | three_bots_video_conference.js | 68 function establichCall(pc1, pc2) { argument 69 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 70 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 72 createOfferAndAnswer(pc1, pc2); 91 function createOfferAndAnswer(pc1, pc2) { argument 98 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 101 pc2.createAnswer(gotAnswer, test.fail); 106 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess,
|
D | simple_offer_answer.js | 18 function run(pc1, pc2) { argument 26 pc2.setRemoteDescription(offer, expectedCall, test.fail); 27 pc2.createAnswer(gotAnswer, test.fail); 33 pc2.setLocalDescription(answer, expectedCall, test.fail);
|
/external/webrtc/webrtc/tools/loopback_test/ |
D | loopback_test.js | 110 var pc2 = new RTCPeerConnection(pcConfig, pcConstraints); 111 constrainTurnCandidates(pc2); 112 constrainBitrateAnswer(pc2); 113 pc2StatTracker = new StatTracker(pc2, 50); 118 var call = new Call(pc1, pc2); 153 function Call(pc1, pc2) { argument 154 pc1.onicecandidate = applyIceCandidate.bind(pc2); 155 pc2.onicecandidate = applyIceCandidate.bind(pc1); 180 pc2.setRemoteDescription(desc); 184 pc2.createAnswer(gotDescription2, onCreateSessionDescriptionError); [all …]
|
/external/curl/src/ |
D | tool_operhlp.c | 138 const char *pc, *pc2; in get_url_file_name() local 149 pc2 = strrchr(pc, '\\'); in get_url_file_name() 151 if(pc2 && (!pc || pc < pc2)) in get_url_file_name() 152 pc = pc2; in get_url_file_name()
|
/external/libcups/cups/ |
D | testpwg.c | 414 _ppd_cache_t *pc2; /* Loaded data */ in test_ppd_cache() local 435 if ((pc2 = _ppdCacheCreateWithFile("test.pwg", NULL)) == NULL) in test_ppd_cache() 443 if (pc2->num_sizes != pc->num_sizes) in test_ppd_cache() 448 printf(" SAVED num_sizes=%d, ORIG num_sizes=%d\n", pc2->num_sizes, in test_ppd_cache() 455 for (i = pc->num_sizes, size = pc->sizes, size2 = pc2->sizes; in test_ppd_cache() 508 for (i = pc->num_sources, map = pc->sources, map2 = pc2->sources; in test_ppd_cache() 531 for (i = pc->num_types, map = pc->types, map2 = pc2->types; in test_ppd_cache() 558 _ppdCacheDestroy(pc2); in test_ppd_cache()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
D | DESEngine.java | 141 private static final byte[] pc2 = field in DESEngine 367 if (pcr[pc2[j]]) in generateWorkingKey() 372 if (pcr[pc2[j + 24]]) in generateWorkingKey()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/engines/ |
D | DESEngine.java | 143 private static final byte[] pc2 = field in DESEngine 369 if (pcr[pc2[j]]) in generateWorkingKey() 374 if (pcr[pc2[j + 24]]) in generateWorkingKey()
|
/external/wpa_supplicant_8/src/crypto/ |
D | des-internal.c | 80 static const u8 pc2[48] = { variable 307 if ((int) pcr[(int) pc2[j]] != 0) in deskey() 309 if ((int) pcr[(int) pc2[j + 24]] != 0) in deskey()
|
/external/u-boot/configs/ |
D | orangepi_pc2_defconfig | 16 CONFIG_DEFAULT_DEVICE_TREE="sun50i-h5-orangepi-pc2"
|
/external/u-boot/include/linux/ |
D | rbtree_augmented.h | 199 unsigned long pc2 = successor->__rb_parent_color; in __rb_erase_augmented() local 201 rebalance = __rb_is_black(pc2) ? parent : NULL; in __rb_erase_augmented()
|
/external/clang/test/SemaCXX/ |
D | namespace-alias.cpp | 109 N::C2 *pc2 = 0; variable
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
D | LevenbergMarquardtEstimator.java | 398 double pc2 = previousCost * previousCost; in estimate() local 399 coeff1 = coeff1 / pc2; in estimate() 400 double coeff2 = lmPar * lmNorm * lmNorm / pc2; in estimate()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
D | LevenbergMarquardtOptimizer.java | 399 double pc2 = previousCost * previousCost; in doOptimize() local 400 coeff1 = coeff1 / pc2; in doOptimize() 401 double coeff2 = lmPar * lmNorm * lmNorm / pc2; in doOptimize()
|
/external/clang/test/CodeGenCXX/ |
D | member-function-pointers.cpp | 35 void (C::*pc2)() = &C::f; variable
|
/external/clang/test/CXX/drs/ |
D | dr15xx.cpp | 246 char *pc2 = f({1, 2}); // #2 also variable
|
/external/u-boot/arch/arm/dts/ |
D | sun50i-h5-orangepi-prime.dts | 4 * Based on sun50i-h5-orangepi-pc2.dts, which is:
|
D | sun50i-h5-orangepi-pc2.dts | 52 compatible = "xunlong,orangepi-pc2", "allwinner,sun50i-h5";
|
D | Makefile | 540 sun50i-h5-orangepi-pc2.dtb \
|
/external/u-boot/drivers/spi/ |
D | davinci_spi.c | 101 dv_reg pc2; /* 0x1c */ member
|
/external/tensorflow/tensorflow/ |
D | workspace.bzl | 175 strip_prefix = "mkl-dnn-1.0-pc2", 177 …s://storage.googleapis.com/mirror.tensorflow.org/github.com/intel/mkl-dnn/archive/v1.0-pc2.tar.gz", 178 "https://github.com/intel/mkl-dnn/archive/v1.0-pc2.tar.gz",
|
/external/python/cryptography/tests/x509/ |
D | test_x509_ext.py | 2756 pc2 = x509.PolicyConstraints(2, 1) 2757 assert pc == pc2 2761 pc2 = x509.PolicyConstraints(2, 2) 2763 assert pc != pc2 2769 pc2 = x509.PolicyConstraints(2, 1) 2771 assert hash(pc) == hash(pc2)
|
/external/u-boot/arch/powerpc/include/asm/ |
D | immap_85xx.h | 2771 u32 pc2; /* PMAN Control Register 2 */ member
|