Home
last modified time | relevance | path

Searched refs:calls (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/external/eigen/unsupported/doc/examples/
DBVH_Example.cpp16 PointPointMinimizer() : calls(0) {} in PointPointMinimizer()
19 …double minimumOnVolumeVolume(const Box2d &r1, const Box2d &r2) { ++calls; return r1.squaredExterio… in minimumOnVolumeVolume()
20 …double minimumOnVolumeObject(const Box2d &r, const Vector2d &v) { ++calls; return r.squaredExterio… in minimumOnVolumeObject()
21 …double minimumOnObjectVolume(const Vector2d &v, const Box2d &r) { ++calls; return r.squaredExterio… in minimumOnObjectVolume()
22 …double minimumOnObjectObject(const Vector2d &v1, const Vector2d &v2) { ++calls; return (v1 - v2).s… in minimumOnObjectObject()
24 int calls; member
43 …std::cout << "Brute force distance = " << sqrt(minDistSq) << ", calls = " << minimizer.calls << st… in main()
46 minimizer.calls = 0; in main()
49 …std::cout << "BVH distance = " << sqrt(minDistSq) << ", calls = " << minimizer.calls << st… in main()
/external/eigen/unsupported/test/
DBVH.cpp48 BallPointStuff() : calls(0), count(0) {} in BallPointStuff()
49 BallPointStuff(const VectorType &inP) : p(inP), calls(0), count(0) {} in BallPointStuff()
52 bool intersectVolume(const BoxType &r) { ++calls; return r.contains(p); } in intersectVolume()
54 ++calls; in intersectObject()
60 …bool intersectVolumeVolume(const BoxType &r1, const BoxType &r2) { ++calls; return !(r1.intersecti… in intersectVolumeVolume()
61 …bool intersectVolumeObject(const BoxType &r, const BallType &b) { ++calls; return r.squaredExterio… in intersectVolumeObject()
62 …bool intersectObjectVolume(const BallType &b, const BoxType &r) { ++calls; return r.squaredExterio… in intersectObjectVolume()
64 ++calls; in intersectObjectObject()
69 …bool intersectVolumeObject(const BoxType &r, const VectorType &v) { ++calls; return r.contains(v);… in intersectVolumeObject()
71 ++calls; in intersectObjectObject()
[all …]
/external/strace/
Dcount.c42 int calls, errors; member
67 counts[tcp->scno].calls++; in count_syscall()
124 int m = counts[*((int *) a)].calls; in count_cmp()
125 int n = counts[*((int *) b)].calls; in count_cmp()
183 if (counts == NULL || counts[i].calls == 0) in call_summary_pers()
185 tv_mul(&dtv, &overhead, counts[i].calls); in call_summary_pers()
187 call_cum += counts[i].calls; in call_summary_pers()
203 if (counts[j].calls == 0) in call_summary_pers()
205 tv_div(&dtv, &counts[j].time, counts[j].calls); in call_summary_pers()
215 counts[j].calls, in call_summary_pers()
DNEWS157 * Improved output for delete_module, futex, and mbind system calls on Linux.
159 * Support new Linux system calls move_pages, utimensat, signalfd, timerfd,
167 * Support new Linux system calls *at, inotify*, pselect6, ppoll and unshare.
172 * Accept numeric system calls in -e.
183 * Update PowerPC system calls.
184 * Better printing for Linux aio system calls.
219 * Print attribute values in *xattr system calls on Linux.
220 * Include pread and pwrite calls in -e read and -e write tracing.
222 * Print clock_t values symbolically in Linux clock_* system calls.
243 * Handle new mq_* system calls in Linux 2.6.6 and later.
[all …]
Dstrace.spec1 Summary: Tracks and displays system calls associated with a running process
16 The strace program intercepts and records the system calls called and
22 Install strace if you need a tool to track the system calls made and
27 Summary: Tracks and displays system calls associated with a running process.
31 The strace program intercepts and records the system calls called and
37 Install strace if you need a tool to track the system calls made and
187 - New selector type -e trace=desc for file-descriptor using calls (#159400).
197 - Update PowerPC system calls.
198 - Better printing for Linux aio system calls.
250 - new upstream version, mq_* calls (#120701), -p vs NPTL (#120462), more fixes (#118694, #120541, #…
[all …]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DCommonTreeNodeStream.java54 protected IntArray calls; field in CommonTreeNodeStream
77 if ( calls != null ) calls.clear(); in reset()
126 if ( calls==null ) { in push()
127 calls = new IntArray(); in push()
129 calls.push(p); // save current index in push()
137 int ret = calls.pop(); in pop()
DBufferedTreeNodeStream.java120 protected IntArray calls; field in BufferedTreeNodeStream
344 if ( calls==null ) { in push()
345 calls = new IntArray(); in push()
347 calls.push(p); // save current index in push()
355 int ret = calls.pop(); in pop()
363 if (calls != null) { in reset()
364 calls.clear(); in reset()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DFragmentTransactionTest.java193 final Map<String, Boolean> calls = new HashMap<String, Boolean>(); in hide_shouldCallOnHiddenChangedOnFragment() local
198 calls.put(key, hidden); in hide_shouldCallOnHiddenChangedOnFragment()
203 assertEquals(true, calls.get(key)); in hide_shouldCallOnHiddenChangedOnFragment()
209 final Map<String, Boolean> calls = new HashMap<String, Boolean>(); in show_shouldCallOnHiddenChangedOnFragment() local
214 calls.put(key, hidden); in show_shouldCallOnHiddenChangedOnFragment()
219 assertEquals(false, calls.get(key)); in show_shouldCallOnHiddenChangedOnFragment()
225 final Map<String, Boolean> calls = new HashMap<String, Boolean>(); in hide_shouldNotCallOnHiddenChangedOnFragmentIfAlreadyHidden() local
230 calls.put(key, hidden); in hide_shouldNotCallOnHiddenChangedOnFragmentIfAlreadyHidden()
235 assertFalse(calls.containsKey(key)); in hide_shouldNotCallOnHiddenChangedOnFragmentIfAlreadyHidden()
241 final Map<String, Boolean> calls = new HashMap<String, Boolean>(); in show_shouldNotCallOnHiddenChangedOnFragmentIfAlreadyNotHidden() local
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DSuppliersTest.java95 transient int calls = 0; field in SuppliersTest.CountingSupplier
98 calls++; in get()
99 return calls * 10; in get()
134 assertEquals(0, countingSupplier.calls); in checkMemoize()
139 assertEquals(1, countingSupplier.calls); in checkMemoize()
144 assertEquals(1, countingSupplier.calls); in checkMemoize()
202 assertEquals(0, countingSupplier.calls); in checkExpiration()
206 assertEquals(1, countingSupplier.calls); in checkExpiration()
210 assertEquals(1, countingSupplier.calls); in checkExpiration()
216 assertEquals(2, countingSupplier.calls); in checkExpiration()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRCommonTreeNodeStream.m62 calls = [[ANTLRIntArray newArrayWithLen:INITIAL_CALL_STACK_SIZE] retain];
78 calls = [[ANTLRIntArray newArrayWithLen:INITIAL_CALL_STACK_SIZE] retain];
96 if ( calls ) [calls release];
106 if ( calls != nil )
107 [calls reset]; // [calls clear]; // in Java
195 if ( calls == nil ) {
196 calls = [[ANTLRIntArray newArrayWithLen:INITIAL_CALL_STACK_SIZE] retain];
198 [calls push:p]; // save current anIndex
207 int ret = [calls pop];
246 @synthesize calls;
/external/chromium/chrome/browser/ui/cocoa/infobars/
Dinfobar_controller_unittest.mm36 // container which calls close: immediately, rather than kicking off an
123 // Check that dismissing the infobar calls InfoBarClosed() on the delegate.
130 // Check that clicking on the link calls LinkClicked() on the
140 // Check that clicking on the link calls LinkClicked() on the
166 // Check that dismissing the infobar calls InfoBarClosed() on the delegate.
175 // Check that clicking the OK button calls Accept() and then closes
187 // Check that clicking the OK button calls Accept() but does not close
197 // Check that clicking the cancel button calls Cancel() and closes
209 // Check that clicking the cancel button calls Cancel() but does not close
219 // Check that clicking on the link calls LinkClicked() on the
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBufferedTreeNodeStream.cs160 protected Stack<int> calls; field in Antlr.Runtime.Tree.BufferedTreeNodeStream
507 if ( calls == null ) in Push()
509 calls = new Stack<int>(); in Push()
511 calls.Push( p ); // save current index in Push()
522 int ret = calls.Pop(); in Pop()
531 if ( calls != null ) in Reset()
533 calls.Clear(); in Reset()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBufferedTreeNodeStream.cs151 protected Stack<int> calls; field in Antlr.Runtime.Tree.BufferedTreeNodeStream
427 if (calls == null) { in Push()
428 calls = new Stack<int>(); in Push()
430 calls.Push(p); // save current index in Push()
440 int ret = calls.Pop(); in Pop()
448 if (calls != null) { in Reset()
449 calls.Clear(); in Reset()
/external/guava/guava-tests/test/com/google/common/collect/
DForwardingTestCase.java45 private List<String> calls = new ArrayList<String>(); field in ForwardingTestCase
48 calls.add(id); in called()
52 return calls.toString(); in getCalls()
56 return !calls.isEmpty(); in isCalled()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DCommonTreeNodeStream.js267 if ( !this.calls ) {
268 this.calls = []; property
270 this.calls.push(this.p); // save current index
278 var ret = this.calls.pop();
286 if (this.calls) {
287 this.calls = []; property
/external/webkit/Source/WebCore/plugins/
DPluginMainThreadScheduler.cpp76 void PluginMainThreadScheduler::dispatchCallsForPlugin(NPP npp, const Deque<Call>& calls) in dispatchCallsForPlugin() argument
78 Deque<Call>::const_iterator end = calls.end(); in dispatchCallsForPlugin()
79 for (Deque<Call>::const_iterator it = calls.begin(); it != end; ++it) { in dispatchCallsForPlugin()
/external/compiler-rt/lib/asan/lit_tests/
Dinitialization-nobug.cc55 static int calls; in countCalls() local
56 return ++calls; in countCalls()
/external/okhttp/src/test/java/com/squareup/okhttp/internal/
DRecordingHostnameVerifier.java24 public final List<String> calls = new ArrayList<String>(); field in RecordingHostnameVerifier
27 calls.add("verify " + hostname); in verify()
DRecordingAuthenticator.java27 public final List<String> calls = new ArrayList<String>(); field in RecordingAuthenticator
39 this.calls in getPasswordAuthentication()
/external/webkit/LayoutTests/dom/xhtml/level2/html/
DHTMLFrameElement09-expected.txt1 CONSOLE MESSAGE: line 722: Value complete does not allow function calls.
2 CONSOLE MESSAGE: line 722: Value complete does not allow function calls.
/external/llvm/test/Analysis/CallGraph/
D2008-09-09-DirectCall.ll4 ; CHECK: CS<{{.*}}> calls function 'callee'
6 ; CHECK: CS<{{.*}}> calls function 'callee'
/external/clang/test/SemaObjCXX/
Divar-lookup.mm15 int *ip = [Ivar method]; // Okay; calls A's method on the instance variable Ivar.
16 // Note that Objective-C calls Ivar's method.
/external/libvorbis/
Dtodo.txt15 break up some of the more monolithic calls (eg, allow access
17 convenience calls for text comments
/external/skia/bench/
DMemoryBench.cpp43 int calls = 0; in onDraw() local
47 calls += 1; in onDraw()
/external/llvm/test/CodeGen/MBlaze/
Dmul64.ll1 ; Ensure that multiplication is lowered to function calls when the 64-bit
2 ; multiplier unit is not available in the hardware and that function calls

12345678910>>...27