HomeSort by relevance Sort by last modified time
    Searched refs:cand (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
rawtransport.cc 89 cand = candidates.begin();
90 cand != candidates.end();
91 ++cand) {
92 ASSERT(cand->component() == 1);
93 ASSERT(cand->protocol() == "udp");
94 rtc::SocketAddress addr = cand->address();
session.cc 147 for (Candidates::const_iterator cand = candidates.begin();
148 cand != candidates.end(); ++cand) {
149 sent_candidates_.push_back(*cand);
154 for (Candidates::const_iterator cand = candidates.begin();
155 cand != candidates.end(); ++cand) {
156 unsent_candidates_.push_back(*cand);
324 for (Candidates::const_iterator cand = candidates.begin();
325 cand != candidates.end(); ++cand)
    [all...]
transport.cc 433 bool Transport::VerifyCandidate(const Candidate& cand, std::string* error) {
435 if (cand.address().IsNil() || cand.address().IsAny()) {
441 int port = cand.address().port();
442 if (cand.protocol() == TCP_PROTOCOL_NAME &&
443 (cand.tcptype() == TCPTYPE_ACTIVE_STR || port == 0)) {
455 if (cand.address().IsPrivateIP()) {
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 354 struct rsn_pmksa_candidate *cand, *pos; local
368 cand = NULL;
372 cand = pos;
377 if (cand) {
378 dl_list_del(&cand->list);
380 cand->priority = prio;
382 cand = os_zalloc(sizeof(*cand));
383 if (cand == NULL)
385 os_memcpy(cand->bssid, bssid, ETH_ALEN)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
me_utils.cpp 110 void GetHalfPelMBRegion_C(UChar *cand, UChar *hmem, Int lx)
118 p1 = cand - lx - 1;
119 p2 = cand - lx;
120 p3 = cand - 1;
121 p4 = cand;
166 void GetHalfPelBlkRegion(UChar *cand, UChar *hmem, Int lx)
174 p1 = cand - lx - 1;
175 p2 = cand - lx;
176 p3 = cand - 1;
177 p4 = cand;
    [all...]
motion_est.cpp 774 UChar *ref, *cand, *ncand = NULL, *cur8; local
883 cand = ref + i + j * lx;
885 d = (*SAD_Macroblock)(cand, cur, (dmin << 16) | lx, extra_info);
892 ncand = cand;
906 cand = ref + i + j * lx;
907 d = (*SAD_Macroblock)(cand, cur, (dmin << 16) | lx, extra_info);
914 ncand = cand;
921 ncand = cand;
955 cand = ref + i + j * lx;
965 d = (*SAD_Macroblock)(cand, cur, (dmin << 16) | lx, extra_info)
1183 UChar *cand; local
1269 UChar *cand, *ref; local
    [all...]
findhalfpel.cpp 191 UChar *cand, *cur8; local
235 cand = ncand8[comp+1];
249 d = (*SAD_Blk_HalfPel)(cand, cur8, dmin, lx, swidth, xh, yh, extra_info);
mp4enc_lib.h 126 void GetHalfPelMBRegion_C(UChar *cand, UChar *hmem, Int lx);
127 void GetHalfPelMBRegion_SSE(UChar *cand, UChar *hmem, Int lx);
128 void GetHalfPelBlkRegion(UChar *cand, UChar *hmem, Int lx);
mp4lib_int.h 244 void (*GetHalfPelMBRegion)(UChar *cand, UChar *hmem, Int lx);
  /external/chromium_org/v8/src/
unique.h 196 Unique<T> cand = this->array_[i]; local
197 if (cand.raw_address_ >= elem.raw_address_) {
198 return cand.raw_address_ == elem.raw_address_;
288 Unique<T> cand = this->array_[i]; local
289 if (!that->Contains(cand)) {
290 out->array_[j++] = cand;
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 209 String cand = nspStack[i]; local
213 if (nspStack[j].equals(cand)) {
214 cand = null;
218 if (cand != null)
219 return cand;
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 963 uint8 *ref, *cand, *ncand; local
1266 uint8 *cand; local
    [all...]
findhalfpel.cpp 60 uint8* cand; local
82 cand = hpel_cand[0];
85 dmin = SATD_MB(cand, cur, 65535); // get Hadamaard transform SAD
607 /* assuming cand always has a pitch of 24 */
608 int SATD_MB(uint8 *cand, uint8 *cur, int dmin)
614 cost = AVCSAD_Macroblock_C(cand, cur, dmin, NULL);
avcenc_lib.h 653 \param "cand" "Pointer to a candidate."
658 int SATD_MB(uint8 *cand, uint8 *cur, int dmin);
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readmacho.c 399 /* 'cand' is a bunch of candidate symbols obtained by reading
951 DiSym* cand = (DiSym*) VG_(indexXA)( candSyms, i ); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tempfile.py 173 cand = tempfile._candidate_tempdir_list()
175 self.assertFalse(len(cand) == 0)
176 for c in cand:
189 cand = tempfile._candidate_tempdir_list()
194 self.assertIn(dirname, cand)
201 self.assertIn(dirname, cand)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tempfile.py 173 cand = tempfile._candidate_tempdir_list()
175 self.assertFalse(len(cand) == 0)
176 for c in cand:
189 cand = tempfile._candidate_tempdir_list()
194 self.assertIn(dirname, cand)
201 self.assertIn(dirname, cand)
  /external/valgrind/main/VEX/priv/
host_generic_reg_alloc2.c 1215 HReg cand = INVALID_HREG; local
    [all...]
  /external/valgrind/main/coregrind/
m_stacktrace.c 1001 Addr cand = (lr & 0xFFFFFFFE) - 1; local
1016 Addr cand = (w & 0xFFFFFFFE) - 1; local
    [all...]
  /external/smack/asmack-master/lib/
jstun.jar 
  /external/wpa_supplicant_8/src/drivers/
driver_wext.c 328 const struct iw_pmkid_cand *cand; local
332 if (len < sizeof(*cand))
335 cand = (const struct iw_pmkid_cand *) ev;
336 addr = (const u8 *) cand->bssid.sa_data;
339 "flags=0x%x index=%d bssid=" MACSTR, cand->flags,
340 cand->index, MAC2STR(addr));
344 data.pmkid_candidate.index = cand->index;
345 data.pmkid_candidate.preauth = cand->flags & IW_PMKID_CAND_PREAUTH;
    [all...]
  /external/valgrind/main/helgrind/
libhb_core.c 4336 Thr_n_RCEC* cand = &ref->accs[i]; local
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndbdic.c 1391 NJ_CHAR *wkc, *cand; local
    [all...]
  /external/valgrind/main/memcheck/
mc_machine.c 140 Int cand = get_otrack_shadow_offset_wrk( offset, szB ); local
141 if (cand == -1)
142 return cand;
143 tl_assert(0 == (cand & 3));
144 tl_assert(cand <= MC_SIZEOF_GUEST_STATE-4);
145 return cand;
    [all...]
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 

Completed in 576 milliseconds

1 2