/external/valgrind/exp-sgcheck/ |
D | sg_main.c | 1975 StackFrame *innermost, *innermostOrig; in shadowStack_unwind() local 1977 innermost = shadowStacks[tid]; in shadowStack_unwind() 1978 tl_assert(innermost); in shadowStack_unwind() 1979 innermostOrig = innermost; in shadowStack_unwind() 1982 if (!innermost->outer) in shadowStack_unwind() 1984 if (innermost->inner) in shadowStack_unwind() 1985 tl_assert(innermost->inner->outer == innermost); in shadowStack_unwind() 1986 tl_assert(innermost->outer->inner == innermost); in shadowStack_unwind() 1987 tl_assert(innermost->blocks_added_by_call == NULL); in shadowStack_unwind() 1988 if (sp_now <= innermost->creation_sp) break; in shadowStack_unwind() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | FastStringBuffer.java | 295 FastStringBuffer innermost = this; in reset() local 297 while (innermost.m_innerFSB != null) in reset() 299 innermost = innermost.m_innerFSB; in reset() 302 m_chunkBits = innermost.m_chunkBits; in reset() 303 m_chunkSize = innermost.m_chunkSize; in reset() 304 m_chunkMask = innermost.m_chunkMask; in reset()
|
/external/v8/src/compiler/ |
D | loop-analysis.cc | 384 LoopInfo* innermost = nullptr; in FinishLoopTree() local 395 if (innermost == nullptr || in FinishLoopTree() 396 loop->loop->depth_ > innermost->loop->depth_) { in FinishLoopTree() 397 innermost = loop; in FinishLoopTree() 403 if (innermost == nullptr) continue; in FinishLoopTree() 404 AddNodeToLoop(&ni, innermost, innermost_index); in FinishLoopTree()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | SynchronizedNavigableMapTest.java | 47 NavigableMap<K, V> innermost = new SafeTreeMap<K, V>( in create() local 49 TestMap<K, V> inner = new TestMap<K, V>(innermost, mutex); in create() 237 NavigableMap<String, String> innermost = in suite() 240 innermost.put(entry.getKey(), entry.getValue()); in suite() 243 new TestMap<String, String>(innermost, mutex); in suite()
|
D | SynchronizedNavigableSetTest.java | 158 NavigableSet<String> innermost = new SafeTreeSet<String>(); in suite() 159 Collections.addAll(innermost, elements); in suite() 160 TestSet<String> inner = new TestSet<String>(innermost, MUTEX); in suite()
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-nested-blocks.m | 22 // innermost block.
|
D | encode-test.m | 14 struct Innermost *innermost; field
|
/external/gemmlowp/doc/ |
D | packing.txt | 32 doc/design.txt: at the innermost level, one tries to work within registers 108 to the innermost GEMM loop in the depth dimension. That's the critical 128 The innermost loop of the packing stage, PackRun, and PackingRegisterBlock 132 the innermost loop is called PackRun().
|
D | packing.md | 26 [design.md](design.md): at the innermost level, one tries to work within 104 innermost GEMM loop in the depth dimension. That's the critical inner loop that 125 ## The innermost loop of the packing stage, PackRun, and PackingRegisterBlock 128 innermost loop is called PackRun().
|
/external/clang/test/SemaObjC/ |
D | nullability.m | 38 // expected-note@-1{{use nullability type specifier '_Nonnull' to affect the innermost pointer type… 44 // expected-note@-1{{use nullability type specifier '_Nullable' to affect the innermost pointer typ… 55 // expected-note@-1{{use nullability type specifier '_Nullable' to affect the innermost pointer typ…
|
/external/libchrome/base/message_loop/ |
D | message_pump_mac.mm | 551 // Stop the innermost run loop managed by this MessagePumpCFRunLoop object. 553 // This object is running the innermost loop, just stop it. 559 // other run loops, just mark this object to quit the innermost Run as
|
/external/llvm/docs/ |
D | Vectorizers.rst | 221 control flow in the innermost loop. The innermost loop may contain complex
|
/external/python/cpython2/Doc/tutorial/ |
D | classes.rst | 114 * the innermost scope, which is searched first, contains the local names 122 found outside of the innermost scope are read-only (an attempt to write to such 123 a variable will simply create a *new* local variable in the innermost scope, 140 effect -- assignments to names always go into the innermost scope. Assignments
|
/external/google-breakpad/src/processor/proto/ |
D | process_state.proto | 144 // innermost called frame in a stack, this will be an exact program counter
|
/external/python/cpython2/Doc/reference/ |
D | executionmodel.rst | 27 that name established in the innermost function block containing the use.
|
D | expressions.rst | 205 list element each time the innermost block is reached [#]_. 234 each time the innermost block is reached.
|
/external/valgrind/docs/internals/ |
D | xml-output.txt | 358 is one or more FRAMEs. The first is the innermost frame, the
|
D | xml-output-protocol4.txt | 223 is one or more FRAMEs. The first is the innermost frame, the
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 568 reference and not for assignment which will always write to the innermost 569 scope. In contrast, local variables both read and write in the innermost
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 458 unsigned innermost = -1U; in distributeObjCPointerTypeAttrFromDeclarator() local 465 innermost = i; in distributeObjCPointerTypeAttrFromDeclarator() 498 if (innermost != -1U) { in distributeObjCPointerTypeAttrFromDeclarator() 500 declarator.getTypeObject(innermost).getAttrListRef()); in distributeObjCPointerTypeAttrFromDeclarator()
|
/external/clang/docs/ |
D | AutomaticReferenceCounting.rst | 501 pointer which is guaranteed to be valid at least as long as the innermost 742 where the next-innermost declarator is a function declarator, and 748 object, it is applied to the innermost pointer or block-pointer type. 1987 to the innermost autorelease pool exactly as if the object had been sent the
|
/external/python/cpython2/Doc/library/ |
D | pyexpat.rst | 780 An end tag did not match the innermost open start tag.
|
D | doctest.rst | 439 Traceback (innermost last):
|
/external/clang/include/clang/Basic/ |
D | DiagnosticParseKinds.td | 496 "be innermost component of anonymous pack declaration}0">;
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 2242 Traceback (innermost last):
|