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

1 2

  /external/jline/src/src/main/java/jline/
MultiCompletor.java 46 public int complete(final String buffer, final int pos, final List cand) {
52 copies[i] = new LinkedList(cand);
66 cand.addAll(copies[i]);
  /frameworks/minikin/libs/minikin/
LineBreaker.cpp 104 Candidate cand = {0, 0, 0.0, 0.0, 0.0, 0.0, 0, 0, 0, HyphenationType::DONT_BREAK}; local
105 mCandidates.push_back(cand);
259 Candidate cand; local
270 cand.offset = i;
271 cand.preBreak = width;
272 cand.postBreak = width;
274 cand.preSpaceCount = postSpaceCount;
275 cand.postSpaceCount = postSpaceCount;
276 cand.penalty = SCORE_DESPERATE;
277 cand.hyphenType = HyphenationType::BREAK_AND_DONT_INSERT_HYPHEN
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 370 struct rsn_pmksa_candidate *cand, *pos; local
384 cand = NULL;
388 cand = pos;
393 if (cand) {
394 dl_list_del(&cand->list);
396 cand->priority = prio;
398 cand = os_zalloc(sizeof(*cand));
399 if (cand == NULL)
401 os_memcpy(cand->bssid, bssid, ETH_ALEN)
    [all...]
  /external/webrtc/webrtc/p2p/base/
transport.cc 269 bool Transport::VerifyCandidate(const Candidate& cand, std::string* error) {
271 if (cand.address().IsNil() || cand.address().IsAnyIP()) {
277 int port = cand.address().port();
278 if (cand.protocol() == TCP_PROTOCOL_NAME &&
279 (cand.tcptype() == TCPTYPE_ACTIVE_STR || port == 0)) {
291 if (cand.address().IsPrivateIP()) {
322 for (const Candidate& cand : candidates) {
323 if (!VerifyCandidate(cand, error)) {
326 if (!HasChannel(cand.component()))
    [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 245 void (*GetHalfPelMBRegion)(UChar *cand, UChar *hmem, Int lx);
  /external/v8/src/crankshaft/
unique.h 210 Unique<T> cand = this->array_[i]; local
211 if (cand.raw_address_ >= elem.raw_address_) {
212 return cand.raw_address_ == elem.raw_address_;
302 Unique<T> cand = this->array_[i]; local
303 if (!that->Contains(cand)) {
304 out->array_[j++] = cand;
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 243 String cand = nspStack[i]; local
247 if (nspStack[j].equals(cand)) {
248 cand = null;
252 if (cand != null)
253 return cand;
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 403 /* 'cand' is a bunch of candidate symbols obtained by reading
957 DiSym* cand = (DiSym*) VG_(indexXA)( candSyms, i ); local
    [all...]
  /prebuilts/go/darwin-x86/src/net/
interface_windows.go 211 var cand *IPNet
216 if cand == nil {
218 cand = &pfxs[i]
224 cand = &pfxs[i]
  /prebuilts/go/linux-x86/src/net/
interface_windows.go 211 var cand *IPNet
216 if cand == nil {
218 cand = &pfxs[i]
224 cand = &pfxs[i]
  /frameworks/minikin/include/minikin/
LineBreaker.h 212 void addCandidate(Candidate cand);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_tempfile.py 138 cand = tempfile._candidate_tempdir_list()
140 self.assertFalse(len(cand) == 0)
141 for c in cand:
154 cand = tempfile._candidate_tempdir_list()
159 self.assertIn(dirname, cand)
166 self.assertIn(dirname, cand)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/python/cpython2/Lib/test/
test_tempfile.py 174 cand = tempfile._candidate_tempdir_list()
176 self.assertFalse(len(cand) == 0)
177 for c in cand:
190 cand = tempfile._candidate_tempdir_list()
195 self.assertIn(dirname, cand)
202 self.assertIn(dirname, cand)
    [all...]
  /external/valgrind/VEX/priv/
host_generic_reg_alloc2.c 1277 HReg cand = INVALID_HREG; local
    [all...]
  /external/valgrind/coregrind/
m_stacktrace.c 1099 Addr cand = (lr & 0xFFFFFFFE) - 1; local
1114 Addr cand = (w & 0xFFFFFFFE) - 1; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_wext.c 332 const struct iw_pmkid_cand *cand; local
336 if (len < sizeof(*cand))
339 cand = (const struct iw_pmkid_cand *) ev;
340 addr = (const u8 *) cand->bssid.sa_data;
343 "flags=0x%x index=%d bssid=" MACSTR, cand->flags,
344 cand->index, MAC2STR(addr));
348 data.pmkid_candidate.index = cand->index;
349 data.pmkid_candidate.preauth = cand->flags & IW_PMKID_CAND_PREAUTH;
    [all...]
driver_nl80211_event.c 1374 struct nlattr *cand[NUM_NL80211_PMKSA_CANDIDATE]; local
    [all...]

Completed in 540 milliseconds

1 2