HomeSort by relevance Sort by last modified time
    Searched refs:hit (Results 51 - 75 of 269) sorted by null

1 23 4 5 6 7 8 91011

  /external/chromium_org/third_party/lcov-1.9/bin/
genhtml 36 # actually hit some source lines are kept
578 # get_rate(found, hit)
580 # Return a relative value for the specified found&hit values
587 my ($found, $hit) = @_;
592 return int($hit * 1000 / $found) * 10 + 2 - (1 / $found);
597 # get_overall_line(found, hit, name_singular, name_plural)
600 # found/hit data.
605 my ($found, $hit, $name_sn, $name_pl) = @_;
610 return sprintf("%.1f%% (%d of %d %s)", $hit * 100 / $found, $hit,
    [all...]
lcov     [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 112 boolean hit = false;
118 hit = true;
128 if (hit) {
138 hit = true;
148 return hit;
206 boolean hit = testBoxAgainstList(mCollisionTiles[tileIndex].segments,
210 if (hit) {
505 HitPoint hit = hitPool.allocate(); local
507 hit.hitPoint = hitPoint;
508 hit.hitNormal = hitNormal
    [all...]
GameObjectCollisionSystem.java 78 * @param attackVolumes A list of volumes that can hit other game objects. May be null.
138 final int hit = testAttackAgainstVulnerability( local
145 if (hit != HitType.INVALID) {
149 other.object, record.object, hit);
153 record.object, other.object, hit, hitAccepted);
190 * and returns a hit type if an intersection is found.
195 * @return The hit type of the first attacking volume that intersects a vulnerability volume,
  /external/oprofile/events/x86-64/family11h/
unit_masks 75 0x01 DCT0 Page hit
78 0x08 DCT1 Page hit
85 0x02 Number of stale table entry hits (hit on a page closed too soon)
106 0x02 Probe hit clean
107 0x04 Probe hit dirty without memory cancel
108 0x08 Probe hit dirty with memory cancel
127 0x10 DEV hit
  /external/chromium_org/third_party/lcov/bin/
genhtml 36 # actually hit some source lines are kept
492 # get_rate(found, hit)
494 # Return a relative value for the specified found&hit values
501 my ($found, $hit) = @_;
506 return int($hit * 1000 / $found) * 10 + 2 - (1 / $found);
1053 # "hit" -> $lines_hit (number of executed lines in file)
1094 my $hitcount; # Count for lines hit
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestDepthOfField.java 195 CollisionResult hit = results.getClosestCollision(); local
196 fpsText.setText(""+hit.getDistance());
197 dofFilter.setFocusDistance(hit.getDistance()/10.0f);
  /external/oprofile/events/x86-64/hammer/
unit_masks 69 0x01 Page hit
91 0x02 Probe hit clean
92 0x04 Probe hit dirty without memory cancel
93 0x08 Probe hit dirty with memory cancel
116 0x01 GART aperture hit on access from CPU
117 0x02 GART aperture hit on access from I/O
  /dalvik/hit/src/com/android/hit/
ArrayInstance.java 17 package com.android.hit;
  /external/chromium_org/v8/test/mjsunit/
debug-break-inline.js 42 // Debug event listener which sets a breakpoint first time it is hit
43 // and otherwise counts break points hit and checks that the expected
debug-script-breakpoints-closure.js 32 // Simple debug event handler which just counts the number of break points hit.
60 // Ensure the closure actually triggers a break point hit.
debug-step.js 32 // Simple debug event handler which first time hit will perform 1000 steps and
33 // second time hit will evaluate and store the value of "i". If requires that
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1853.js 83 // Set the flag to prove that we hit the first break point.
87 // Set the flag to prove that we hit the second break point.
regress-1383.js 30 // hit an assertion in Code::ComputeFlags.
  /external/oprofile/events/i386/westmere/
unit_masks 67 0x10 stlb_hit DTLB second level hit
74 0x10 stlb_hit DTLB first level misses but second level hit
179 0x0e rfo_hit All L2 demand store RFOs that hit the cache
185 0xe0 lock_hit All demand L2 lock RFOs that hit the cache
204 0x01 l1d_hit Retired loads that hit the L1 data cache (Precise Event)
205 0x02 l2_hit Retired loads that hit the L2 cache (Precise Event)
206 0x04 llc_unshared_hit Retired loads that hit valid versions in the LLC cache (Precise Event)
207 0x08 other_core_l2_hit_hitm Retired loads that hit sibling core's L2 in modified or unmodified states (Precise Event)
209 0x40 hit_lfb Retired loads that miss L1D and hit an previously allocated LFB (Precise Event)
212 0x02 local_hitm Load instructions retired that HIT modified data in sibling core (Precise Event
    [all...]
  /external/oprofile/events/mips/r10000/
events 30 event:0x0c counters:1 um:zero minimum:500 name:EXTERNAL_INTERVENTION_RQ_HITS_SCACHE : External intervention request is determined to have hit in secondary cache
32 event:0x0d counters:1 um:zero minimum:500 name:EXTERNAL_INVALIDATE_RQ_HITS_SCACHE : External invalidate request is determined to have hit in secondary cache
  /external/v8/test/mjsunit/
debug-break-inline.js 42 // Debug event listener which sets a breakpoint first time it is hit
43 // and otherwise counts break points hit and checks that the expected
debug-step.js 32 // Simple debug event handler which first time hit will perform 1000 steps and
33 // second time hit will evaluate and store the value of "i". If requires that
  /external/v8/test/mjsunit/regress/
regress-1853.js 83 // Set the flag to prove that we hit the first break point.
87 // Set the flag to prove that we hit the second break point.
  /external/chromium_org/chrome/renderer/pepper/
pnacl_translation_resource_host.cc 16 PP_Bool* hit,
19 : is_hit(hit), file_handle(handle), callback(cb) {}
  /external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
inspector-wrappers-test-utils.js 40 str += "<li>Type " + params.trigger + " into the console and hit Enter";
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
xmlreport.py 10 def rate(hit, num):
11 """Return the fraction of `hit`/`num`, as a string."""
12 return "%.4g" % (float(hit) / (num or 1.0))
  /external/chromium_org/ui/views/bubble/
bubble_delegate_unittest.cc 174 const int hit; member in struct:views::__anon16843
185 EXPECT_EQ(cases[i].hit, frame->NonClientHitTest(point))
  /external/chromium_org/ui/views/window/
dialog_delegate_unittest.cc 210 // Ensure that the new style's BubbleFrameView hit-tests as expected.
217 const int hit; member in struct:views::__anon16983
229 EXPECT_EQ(cases[i].hit, frame->NonClientHitTest(point))
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloPicking.java 70 initMark(); // a red sphere to mark the hit
90 /** Defining the "Shoot" action: Determine what was hit and how to respond. */
104 // For each hit, we know distance, impact point, name of geometry.
107 String hit = results.getCollision(i).getGeometry().getName();
109 System.out.println(" You shot " + hit + " at " + pt + ", " + dist + " wu away.");
111 // 5. Use the results (we mark the hit object)
113 // The closest collision point is what was truly hit:
115 // Let's interact - we mark the hit with a red dot.
146 /** A red ball that marks the last spot that was "hit" by the "shot". */

Completed in 532 milliseconds

1 23 4 5 6 7 8 91011