/external/iptables/extensions/ |
libxt_CONNSECMARK.man | 12 If the packet has a security marking, copy it to the connection 16 If the packet does not have a security marking, and the connection 17 does, copy the security marking from the connection to the packet.
|
/external/v8/src/ |
incremental-marking-inl.h | 31 #include "incremental-marking.h" 40 MarkBit value_bit = Marking::MarkBitFrom(HeapObject::cast(value)); 41 if (Marking::IsWhite(value_bit)) { 42 MarkBit obj_bit = Marking::MarkBitFrom(obj); 43 if (Marking::IsBlack(obj_bit)) { 82 MarkBit obj_bit = Marking::MarkBitFrom(obj); 83 if (Marking::IsBlack(obj_bit)) { 93 ASSERT(Marking::MarkBitFrom(obj) == mark_bit); 96 Marking::BlackToGrey(mark_bit); 107 // trace it. In this case we switch to non-incremental marking i [all...] |
incremental-marking.cc | 30 #include "incremental-marking.h" 68 MarkBit obj_bit = Marking::MarkBitFrom(obj); 69 if (Marking::IsBlack(obj_bit)) { 89 ASSERT(Marking::IsWhite(Marking::MarkBitFrom(HeapObject::cast(value)))); 91 IncrementalMarking* marking = isolate->heap()->incremental_marking(); local 92 ASSERT(!marking->is_compacting_); 93 marking->RecordWrite(obj, NULL, value); 100 IncrementalMarking* marking = isolate->heap()->incremental_marking(); local 101 ASSERT(marking->is_compacting_) [all...] |
incremental-marking.h | 45 MARKING, 68 INLINE(bool IsMarking()) { return state() >= MARKING; } 70 inline bool IsMarkingIncomplete() { return state() == MARKING; } 96 // Do some marking every time this much memory has been allocated. 98 // Start off by marking this many times more memory than has been allocated. 103 // After this many steps we increase the marking/allocating factor. 105 // This is how much we increase the marking/allocating factor by. 118 state_ = MARKING; 162 ASSERT(!Marking::IsImpossible(mark_bit)); 168 ASSERT(Marking::IsBlack(mark_bit)) [all...] |
mark-compact-inl.h | 40 MarkBit Marking::MarkBitFrom(Address addr) { 56 ASSERT(Marking::MarkBitFrom(obj) == mark_bit); 66 MarkBit mark = Marking::MarkBitFrom(object); 80 ASSERT(Marking::MarkBitFrom(obj) == mark_bit); 92 return Marking::MarkBitFrom(heap_object).Get();
|
mark-compact.cc | 38 #include "incremental-marking.h" 49 const char* Marking::kWhiteBitPattern = "00"; 50 const char* Marking::kBlackBitPattern = "10"; 51 const char* Marking::kGreyBitPattern = "11"; 52 const char* Marking::kImpossibleBitPattern = "01"; 338 MarkBit mark_bit = Marking::MarkBitFrom(obj); 339 ASSERT(Marking::IsWhite(mark_bit)); 373 MarkBit mark_bit = Marking::MarkBitFrom(obj); 380 bool Marking::TransferMark(Address old_start, Address new_start) { 397 if (Marking::IsBlack(old_mark_bit)) [all...] |
mark-compact.h | 49 class Marking { 51 explicit Marking(Heap* heap) 134 return Color(Marking::MarkBitFrom(obj)); 168 // Marking deque for tracing live objects. 194 // Push the (marked) object on the marking stack if there is room, 200 Marking::BlackToGrey(object); 601 // Phase 1: Marking live objects. 626 // Marking operations for objects reachable from roots. 631 // Marks the object black and pushes it on the marking stack. 632 // This is for non-incremental marking [all...] |
/external/clang/test/CodeGen/ |
2002-05-23-StaticValues.c | 3 /* Make sure the frontend is correctly marking static stuff as internal! */
|
/external/iptables/include/linux/netfilter/ |
xt_TPROXY.h | 4 /* TPROXY target is capable of marking the packet to perform
|
/external/iproute2/examples/diffserv/ |
regression-testing | 26 *observe that the metering/policing works correctly (and the marking 34 *observe that the metering/policing works correctly (and the marking 40 Marking: the should be a variation of marked packets: 55 Marking: Should vary between 0x88,0x90,0x98 and 0x0 60 Marking: Should vary between 0x90,0x98 and 0x0 65 Marking: Should vary between 0x98 and 0x0 70 Marking: Should be consistent at 0x0 80 *observe that the metering/policing works correctly (and the marking 89 Marking: the should be a variation of marked packets: 107 Marking: Should vary between 0x88,0x90,0x98 and 0x [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1708.js | 29 // array caused invalid marking bit patterns on lazily swept pages. 31 // Flags: --expose-gc --noincremental-marking --max-new-space-size 1000 47 // located in a lazy swept page with intact marking bits. Now shift 56 // marking bits being correctly transfered to the new object start. 58 // that marking bit patterns are still sane.
|
/external/e2fsprogs/tests/f_dup_de2/ |
expect.1 | 4 Marking / (2) to be rebuilt.
|
/external/iproute2/man/man8/ |
tc-red.8 | 41 Depending on if ECN is configured, marking either means dropping or 42 purely marking a packet as overlimit. 44 The average queue size is used for determining the marking 69 Average queue size at which marking becomes a possibility. 72 At this average queue size, the marking probability is maximal. Should be at 79 Maximum probability for marking, specified as a floating point 92 longer bursts of traffic before marking starts. Real life experiments
|
/external/llvm/test/Transforms/DeadArgElim/ |
2008-06-23-DeadAfterLive.ll | 13 ; marking @test5's return value dead because only this call is unused.
|
/libcore/luni/src/main/java/java/util/concurrent/ |
Delayed.java | 12 * A mix-in style interface for marking objects that should be
|
/external/dbus/dbus/ |
dbus-protocol.h | 53 #define DBUS_LITTLE_ENDIAN ('l') /**< Code marking LSB-first byte order in the wire protocol. */ 54 #define DBUS_BIG_ENDIAN ('B') /**< Code marking MSB-first byte order in the wire protocol. */ 65 /** Type code marking an 8-bit unsigned integer */ 69 /** Type code marking a boolean */ 73 /** Type code marking a 16-bit signed integer */ 77 /** Type code marking a 16-bit unsigned integer */ 81 /** Type code marking a 32-bit signed integer */ 85 /** Type code marking a 32-bit unsigned integer */ 89 /** Type code marking a 64-bit signed integer */ 93 /** Type code marking a 64-bit unsigned integer * [all...] |
/external/proguard/docs/manual/ |
optimizations.html | 55 <dt><code><b>class/marking/final</b></code></dt> 68 <dt><code><b>field/marking/private</b></code></dt> 75 <dt><code><b>method/marking/private</b></code></dt> 79 <code><b>method/marking/static</b></code></dt> 82 <dt><code><b>method/marking/final</b></code></dt>
|
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/ |
ActionBarActivity.java | 28 * NOTE: dynamically marking menu items as invisible/visible is not currently supported. 67 * Note: marking menu items as invisible/visible is not currently supported.
|
/external/libxslt/libxslt/ |
xsltexports.h | 2 * Summary: macros for marking symbols as exportable/importable. 3 * Description: macros for marking symbols as exportable/importable.
|
/external/webkit/Source/JavaScriptCore/runtime/ |
ArgList.cpp | 55 // therefore don't need explicit marking. Once our size exceeds 57 // heap, where they do need explicit marking.
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LifecycleTest.java | 50 //Marking flaky until bug 1164344 is fixed. 58 //Marking flaky until bug 1164344 is fixed.
|
/dalvik/vm/mterp/x86-atom/ |
TODO.txt | 3 (hi) Add gc card marking to aput/iput/sput/new_filled_array
|
/external/e2fsprogs/tests/f_dup_de/ |
expect-nohtree.1 | 7 Marking /etc (12) to be rebuilt.
|
expect.1 | 4 Marking /etc (12) to be rebuilt.
|
/external/webkit/Source/WebCore/manual-tests/ |
inline-input-marking.html | 16 <title>Inline Input Method Marking</title>
|