HomeSort by relevance Sort by last modified time
    Searched defs:Mark (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/v8/src/compiler/
all-nodes.cc 17 Mark(local_zone, graph->end(), graph);
25 Mark(local_zone, end, graph);
28 void AllNodes::Mark(Zone* local_zone, Node* end, const Graph* graph) {
graph.h 24 // Each node has a mark which is a monotonically increasing integer, and a
26 typedef uint32_t Mark;
188 Mark mark_max_;
  /external/perfetto/tools/
find_scan_roots.py 49 def Mark(self, labels):
58 child.Mark(labels)
89 if elem.Mark(args.labels):
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 57 /// Executing Rewind(Mark()) on a stream should not affect the input position.
65 int Mark();
95 /// of the decision. Do not "pop" the marker off the state. Mark(i)
111 /// argument. So if you're nested 5 levels of Mark(), and then Release(2)
130 /// <see cref="IIntStream.Mark"/>/<see cref="IIntStream.Rewind(int)"/>
ANTLRStringStream.cs 62 /** <summary>tracks how deep mark() calls are nested</summary> */
69 * A null is kept @ index 0. Create upon first call to mark().
74 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
199 public virtual int Mark() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 58 * rewind(mark()) should not affect the input cursor. The Lexer
63 int Mark();
93 * Do not "pop" the marker off the state. mark(i)
107 * argument. So if you're nested 5 levels of mark(), and then release(2)
126 * backtracking using the mark/rewind mechanism that restores state and
ANTLRStringStream.cs 64 /** <summary>tracks how deep mark() calls are nested</summary> */
71 * A null is kept @ index 0. Create upon first call to mark().
76 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
226 public virtual int Mark()
UnbufferedTokenStream.cs 113 public override int Mark()
116 return base.Mark();
  /art/runtime/gc/collector/
concurrent_copying-inl.h 41 // mark stack again and get changed back to white after it is processed.
52 // GC will mark the bitmap when popping from mark stack. If only the GC is touching the bitmap
54 // For the baker case, an object is marked if either the mark bit marked or the bitmap bit is
102 inline mirror::Object* ConcurrentCopying::Mark(mirror::Object* from_ref,
136 // It isn't marked yet. Mark it by copying it to the to-space.
173 ret = Mark(from_ref);
175 // Only set the mark bit for baker barrier.
177 // If the mark stack is full, we may temporarily go to mark and back to unmarked. Seeing bot
    [all...]
  /art/runtime/
read_barrier-inl.h 63 ref = reinterpret_cast<MirrorType*>(Mark(ref));
82 ref = reinterpret_cast<MirrorType*>(Mark(old_ref));
117 ref = reinterpret_cast<MirrorType*>(Mark(ref));
130 ref = reinterpret_cast<MirrorType*>(Mark(old_ref));
158 ref = reinterpret_cast<MirrorType*>(Mark(ref));
171 ref = reinterpret_cast<MirrorType*>(Mark(ref));
247 inline mirror::Object* ReadBarrier::Mark(mirror::Object* obj) {
  /cts/libs/vogar-expect/src/vogar/util/
MarkResetConsole.java 52 public Mark mark() { method in class:MarkResetConsole
53 return new Mark();
56 public class Mark {
60 private Mark() {}
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 51 void FileInputStream::Mark(int32_t readlimit) {
memory_input_stream.cc 47 void MemoryInputStream::Mark(int32_t readlimit) {
  /external/vogar/src/vogar/util/
MarkResetConsole.java 52 public Mark mark() { method in class:MarkResetConsole
53 return new Mark();
56 public class Mark {
60 private Mark() {}
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 40 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
122 public virtual int Mark() {
123 lastMarker = input.Mark();
124 dbg.Mark(lastMarker);
DebugTreeNodeStream.cs 50 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
138 public virtual int Mark() {
139 lastMarker = input.Mark();
140 dbg.Mark(lastMarker);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
LookaheadStream.cs 37 * A lookahead queue that knows how to mark/release locations
58 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
61 /** <summary>tracks how deep mark() calls are nested</summary> */
159 public virtual int Mark() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
LookaheadStream.cs 39 * A lookahead queue that knows how to mark/release locations
61 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
64 /** <summary>tracks how deep mark() calls are nested</summary> */
187 public virtual int Mark()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 42 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
143 public virtual int Mark()
145 lastMarker = input.Mark();
146 dbg.Mark( lastMarker );
DebugTreeNodeStream.cs 52 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
160 public virtual int Mark()
162 lastMarker = input.Mark();
163 dbg.Mark( lastMarker );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 66 /** <summary>tracks how deep mark() calls are nested</summary> */
73 * A null is kept @ index 0. Create upon first call to mark().
78 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
249 public int Mark()
SlimTokenStream.cs 62 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
328 public int Mark()
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 48 void FontInputStream::Mark(int32_t readlimit) {
50 stream_->Mark(readlimit);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
Mark.java 24 public final class Mark {
32 public Mark(String name, int index, int line, int column, String buffer, int pointer) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Option.c 793 DHCP_OPTION *Mark;
803 // Use an array of DHCP_OPTION to mark the existance
806 Mark = AllocatePool (sizeof (DHCP_OPTION) * DHCP_MAX_OPTIONS);
808 if (Mark == NULL) {
813 Mark[Index].Tag = (UINT8) Index;
814 Mark[Index].Len = 0;
819 // them to the mark array according to their tags.
830 Mark[SeedOptions[Index].Tag] = SeedOptions[Index];
835 // Mark the option's length is zero if it is in the DeleteList.
838 Mark[DeleteList[Index]].Len = 0;
    [all...]

Completed in 1175 milliseconds

1 2 3