HomeSort by: relevance | last modified time | path
    Searched refs:Back (Results 1 - 25 of 47) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
segmented_array_test.cc 143 auto &Back = Data.back();
144 ASSERT_EQ(Back.First, 1);
145 ASSERT_EQ(Back.Second, 1);
152 // Check that we are still able to access 'back' properly.
154 auto &Back = Data.back();
155 ASSERT_EQ(Back.First, static_cast<s64>(Segment + 1));
156 ASSERT_EQ(Back.Second, static_cast<s64>(Segment + 1));
168 // Then we ensure that adding elements back works just fine
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SerialSnippetGenerator.cpp 111 // Select back-to-back memory instruction.
134 // Select back-to-back non-memory instruction.
138 const AliasingConfigurations Back(*OtherInstr, Instr);
143 else if (!Back.hasImplicitAliasing())
144 setRandomAliasing(Back, OtherIT, ThisIT);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_ilist.h 53 Elem* Back();
57 // Next links point towards back of the queue.
128 Elem* e = Back();
140 Elem* IList<Base, Node, Elem>::Back() {
tsan_rtl.h 216 // Current position in tctx->trace.Back()->events (Event*).
686 TracePart *current = thr->tctx->trace.parts.Back();
706 DCHECK_LE(evp + 1, &thr->tctx->trace.parts.Back()->events[TracePart::kSize]);
tsan_rtl.cpp 581 auto *part = trace->parts.Back();
tsan_rtl_report.cpp 558 last_part = trace->parts.Back();
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_ilist.h 53 Elem* Back();
57 // Next links point towards back of the queue.
128 Elem* e = Back();
140 Elem* IList<Base, Node, Elem>::Back() {
tsan_rtl.cpp 917 auto *part = trace->parts.Back();
950 TracePart* part = thr->tctx->trace.parts.Back();
1033 trace->parts.Front(), trace->parts.Back(),
tsan_rtl.h 167 // Current position in tctx->trace.Back()->events (Event*).
710 TracePart *current = thr->tctx->trace.parts.Back();
730 DCHECK_LE(evp + 1, &thr->tctx->trace.parts.Back()->events[TracePart::kSize]);
tsan_rtl_report.cpp 472 last_part = trace->parts.Back();
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
UDTLayout.cpp 120 const LayoutItemBase *Back = LayoutItems.back();
121 uint32_t ChildPadding = Back->LayoutItemBase::tailPadding();
  /src/external/gpl3/gcc.old/dist/libgcc/config/i386/
morestack.S 174 .cfi_adjust_cfa_offset 4 # Back to where we were.
341 addl $BACKOFF,%eax # Back off 512 bytes.
387 addl $BACKOFF,%eax # Back off 512 bytes.
439 addl $BACKOFF,%ecx # Back off 512 bytes.
518 addq $BACKOFF,%rax # Back off 1024 bytes.
566 addq $BACKOFF,%rax # Back off 1024 bytes.
613 addq $BACKOFF,%rcx # Back off 1024 bytes.
  /src/external/gpl3/gcc/dist/libgcc/config/i386/
morestack.S 174 .cfi_adjust_cfa_offset 4 # Back to where we were.
341 addl $BACKOFF,%eax # Back off 512 bytes.
387 addl $BACKOFF,%eax # Back off 512 bytes.
439 addl $BACKOFF,%ecx # Back off 512 bytes.
518 addq $BACKOFF,%rax # Back off 1024 bytes.
566 addq $BACKOFF,%rax # Back off 1024 bytes.
613 addq $BACKOFF,%rcx # Back off 1024 bytes.
  /src/external/gpl3/gcc.old/dist/libgcc/config/s390/
morestack.S 74 st %r11, 0(%r15) # Save back chain.
100 st %r11, 0(%r15) # Save back chain.
103 ahi %r2, BACKOFF # Back off a bit.
143 ahi %r2, BACKOFF # Back off a bit.
151 # write the back chain again.
225 ahi %r3, BACKOFF # Back off a bit.
267 stg %r11, 0(%r15) # Save back chain.
295 stg %r11, 0(%r15) # Save back chain.
298 aghi %r2, BACKOFF # Back off a bit.
340 aghi %r2, BACKOFF # Back off a bit
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/s390/
morestack.S 74 st %r11, 0(%r15) # Save back chain.
100 st %r11, 0(%r15) # Save back chain.
103 ahi %r2, BACKOFF # Back off a bit.
143 ahi %r2, BACKOFF # Back off a bit.
151 # write the back chain again.
225 ahi %r3, BACKOFF # Back off a bit.
267 stg %r11, 0(%r15) # Save back chain.
295 stg %r11, 0(%r15) # Save back chain.
298 aghi %r2, BACKOFF # Back off a bit.
340 aghi %r2, BACKOFF # Back off a bit
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 399 AlignPackIncludeStack.back().CurrentPragmaLocation != PrevLocation);
581 CurrentValue = Stack.back().Value;
582 CurrentPragmaLocation = Stack.back().PragmaLocation;
593 CurrentValue = Stack.back().Value;
594 CurrentPragmaLocation = Stack.back().PragmaLocation;
693 // see the default section, reset our current section back to null so we stop
928 PragmaAttributeStack.back().Entries.push_back(
935 PragmaAttributeStack.back().Loc = PragmaLoc;
936 PragmaAttributeStack.back().Namespace = Namespace;
946 // Dig back through the stack trying to find the most recently pushed grou
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
FormatUtil.cpp 38 StringRef Back = S.take_back(Front.size());
39 return std::string(Front) + std::string("...") + std::string(Back);
  /src/external/lgpl3/gmp/dist/mpn/x86/k6/
divrem_1.asm 51 C Back-to-back div instructions run at 20 cycles, the same as the loop here,
  /src/external/gpl3/gdb/dist/readline/readline/doc/
texi2html 522 # 'Back_Button' => 'Back',
683 # Back -- previous node in reading order
751 # T2H_HREF of Next, Prev, Up, Forward, Back are not defined
806 # T2H_HREF of Next, Prev, Up, Forward, Back, etc are not defined
1010 'Back', 'Forward', ' ', 'FastBack', 'Up', 'FastForward',
1026 'Back', '',
1046 'Back', '',
1075 'Back', ' &lt; ',
1272 'Back', 'previous section in reading order',
1290 'Back', '1.2.2'
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/doc/
texi2html 522 # 'Back_Button' => 'Back',
683 # Back -- previous node in reading order
751 # T2H_HREF of Next, Prev, Up, Forward, Back are not defined
806 # T2H_HREF of Next, Prev, Up, Forward, Back, etc are not defined
1010 'Back', 'Forward', ' ', 'FastBack', 'Up', 'FastForward',
1026 'Back', '',
1046 'Back', '',
1075 'Back', ' &lt; ',
1272 'Back', 'previous section in reading order',
1290 'Back', '1.2.2'
    [all...]
  /src/usr.bin/make/unit-tests/
cond-short.mk 162 # so the comparison fell back to string comparison, which then complained
185 # side of the '&&' irrelevant. Back then, irrelevant condition parts were
directive-for.mk 308 # Back then, the .newline variable didn't exist, therefore it was unlikely
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 361 (&CURanges.back().End->getSection() !=
367 CURanges.back().End = Range.End;
601 const RangeSpan &Back = Ranges.back();
602 attachLowHighPC(Die, Front.Begin, Back.End);
944 // Map back from a DIVariable to its containing DbgVariable.
959 auto Item = WorkList.back();
  /src/usr.sbin/sysinst/
msg.mi.en 550 {Back to source selection & retry}
976 { Back to main timezone list}
1034 message exit_utility_menu {Back to main menu}
1145 Once you bring your upgraded system back up, you may need to take care
msg.mi.es 561 {Back to source selection & retry}

Completed in 91 milliseconds

1 2