HomeSort by relevance Sort by last modified time
    Searched defs:found (Results 151 - 175 of 1692) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4c/source/test/perf/leperf/
cmaps.cpp 59 le_bool found = FALSE; local
65 for (i = 0; i < nSubtables && !found; i += 1) {
77 found = TRUE;
91 for (i = 0; i < nSubtables && !found; i += 1) {
107 found = TRUE;
120 if (found)
  /external/ipsec-tools/src/racoon/
admin.c 294 "phase 1 for %s -> %s not found\n", loc, rem);
311 int found = 0, len = com->ac_len - sizeof(com); local
322 found = purgeph1bylogin(user);
324 "deleted %d SA for user \"%s\"\n", found, user);
418 "no configuration found "
  /external/iptables/extensions/
libxt_sctp.c 130 DEBUGP("Previous match found\n");
163 int found = 0; local
182 found = 0;
194 found = 1;
197 if (!found)
  /external/libchrome/base/strings/
string_piece.cc 3 // found in the LICENSE file.
224 StringPiece16::const_iterator found = local
226 if (found == self.end())
228 return found - self.begin();
263 bool found = false; local
266 found = true;
270 if (!found)
376 bool found = false; local
379 found = true;
383 if (!found)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 218 bool found = false; local
222 found = true;
227 if (!found)
  /external/mesa3d/src/glsl/
opt_tree_grafting.cpp 92 bool found; member in struct:__anon20130::find_deref_info
102 info->found = true;
111 info.found = false;
115 return info.found;
366 /* Found a possibly graftable assignment. Now, walk through the
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs.c 317 bool found = false; local
341 found |= key_debug("GL_FIXED rescaling",
346 found |= key_debug("user clip flags",
349 found |= key_debug("user clipping planes as push constants",
353 found |= key_debug("clip distance enable",
355 found |= key_debug("clip plane enable bitfield",
358 found |= key_debug("copy edgeflag",
360 found |= key_debug("PointCoord replace",
362 found |= key_debug("vertex color clamping",
365 found |= brw_debug_recompile_sampler_key(&old_key->tex, &key->tex)
    [all...]
  /external/opencv3/modules/cudaimgproc/test/
test_hough.cpp 167 bool found = false; local
175 found = true;
180 ASSERT_TRUE(found);
238 bool found = false; local
246 found = true;
251 ASSERT_TRUE(found);
  /external/ppp/pppd/plugins/pppoatm/
ans.c 45 unsigned char *pos,*data,*found; local
74 found = NULL;
104 if (!found) {
105 found = data;
120 if (!found) return TRY_OTHER;
121 memcpy(((struct sockaddr_atmsvc *) result)->sas_addr.pub,found,
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
TestHttpResponse.java 87 List<Header> found = new ArrayList<Header>(); local
89 if (h.getName().equalsIgnoreCase(s)) found.add(h);
91 return found.toArray(new Header[found.size()]);
  /external/selinux/libsepol/tests/
test-common.c 32 int found; local
36 fprintf(stderr, "symbol %s not found in table %d\n", id, sym_type);
47 found = 0;
50 found++;
52 CU_ASSERT(found == 1);
188 unsigned int i, j, new, found = 0; local
197 printf("role %s can't be found! \n", id);
206 found++;
216 CU_ASSERT(found == len);
217 if (found != len
229 int j, new, found = 0; local
    [all...]
  /external/skia/tests/
PathOpsQuadLineIntersectionThreadedTest.cpp 5 * found in the LICENSE file.
55 bool found = false; local
62 found = true;
65 REPORTER_ASSERT(reporter, found);
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 603 int found = -1; local
607 found = i;
612 if (found != -1) {
613 StackTraceElement ste = steArray[found];
  /external/svox/pico/lib/
picowa.c 262 picoos_bool found; local
268 if no entry found:
278 found = FALSE;
280 while (!found && (i < wa->numUlex)) {
281 found = picoklex_lexLookup(wa->ulex[i], content, head->len, &lexres);
284 /* note that if found, i will be incremented nevertheless, so i >= 1 */
285 if (found) {
290 if (!found && !picoklex_lexLookup(wa->lex, content, head->len, &lexres)) {
291 /* no lex entry found, WORDGRAPH(POS,NA)graph */
304 } else { /* at least one entry found */
    [all...]
  /external/v8/src/
key-accumulator.cc 3 // found in the LICENSE file.
237 Maybe<bool> found = local
239 MAYBE_RETURN(found, MaybeHandle<FixedArray>());
240 if (!found.FromJust() || !desc.enumerable()) continue; // Skip this key.
  /external/vboot_reference/cgpt/
cgpt_find.c 3 // found in the LICENSE file.
107 // isn't found (or if the file doesn't contain a GPT), it returns false. The
127 int found = 0; local
130 found = 1;
139 found = 1;
141 if (found && match_content(params, drive, entry)) {
203 // found it
211 // returns true if any matches were found, false otherwise.
213 int found = 0; local
221 return found;
    [all...]
  /external/webrtc/talk/media/devices/
devicemanager.cc 316 std::map<std::string, VideoFormat>::const_iterator found = local
319 if (found == max_formats_.end()) {
322 *video_format = found->second;
  /external/webrtc/talk/media/webrtc/
webrtcvideocapturer.cc 172 bool found = false; local
178 found = true;
183 if (!found) {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_packet_history.cc 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
140 bool found = FindSeqNum(sequence_number, &index); local
141 if (!found) {
159 bool found = FindSeqNum(sequence_number, &index); local
160 if (!found) {
185 bool found = FindSeqNum(sequence_number, &index); local
186 if (!found) {
264 // We did not found a match, search all
    [all...]
  /external/webrtc/webrtc/modules/video_capture/linux/
video_capture_linux.cc 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
74 bool found = false; local
94 found = true;
102 if (!found)
104 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, _id, "no matching device found");
196 "no supporting video formats found");
  /external/wpa_supplicant_8/src/ap/
pmksa_cache_auth.c 318 /* Replace an old entry for the same STA (if found) with the new entry
416 * Returns: Pointer to PMKSA cache entry or %NULL if no match was found
450 * Returns: Pointer to PMKSA cache entry or %NULL if no match was found
543 int found = 0; local
552 found++;
561 return found ? 0 : -1;
  /external/wpa_supplicant_8/src/drivers/
rfkill.c 111 int found = 0; local
163 found = os_strcmp(phy, rfk_phy) == 0;
166 if (!found)
185 if (!found)
  /frameworks/av/drm/libmediadrm/
DrmSessionManager.cpp 123 bool found = false; local
130 found = true;
135 if (found) {
  /frameworks/base/libs/hwui/tests/macrobench/
main.cpp 75 char* found = (char*) memrchr(col2, ' ', 50); local
76 if (found) {
77 toPrint = found - col2;
  /frameworks/base/media/mca/filterfw/jni/
jni_util.h 154 const bool found = iter != objects_.end(); local
155 if (found) {
160 return found;

Completed in 1185 milliseconds

1 2 3 4 5 67 8 91011>>