Home
last modified time | relevance | path

Searched full:gaps (Results 1 – 25 of 486) sorted by relevance

12345678910>>...20

/external/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h605 // LocalVariableAddrGap Gaps[];
609 ArrayRef<LocalVariableAddrGap> Gaps) in DefRangeSym() argument
611 Header(*H), Gaps(Gaps) {} in DefRangeSym()
617 ArrayRef<LocalVariableAddrGap> Gaps; in deserialize() local
618 CV_DESERIALIZE(Data, H, CV_ARRAY_FIELD_TAIL(Gaps)); in deserialize()
620 return DefRangeSym(RecordOffset, H, Gaps); in deserialize()
629 ArrayRef<LocalVariableAddrGap> Gaps; variable
639 // LocalVariableAddrGap Gaps[];
642 ArrayRef<LocalVariableAddrGap> Gaps) in DefRangeSubfieldSym() argument
644 RecordOffset(RecordOffset), Header(*H), Gaps(Gaps) {} in DefRangeSubfieldSym()
[all …]
/external/icu/icu4c/source/tools/toolutil/
Ddenseranges.cpp26 * Collect up to 15 range gaps and sort them by ascending gap size.
122 // divided by the 1..(capacity-1) largest gaps. in uprv_makeDenseRanges()
123 LargestGaps gaps(capacity-1); in uprv_makeDenseRanges() local
130 gaps.add(expectedValue, (int64_t)actualValue-(int64_t)expectedValue); in uprv_makeDenseRanges()
134 // We know gaps.count()>=1 because we have fewer values (length) than in uprv_makeDenseRanges()
139 if(i>=gaps.count()) { in uprv_makeDenseRanges()
144 maxLength-=gaps.gapLength(i); in uprv_makeDenseRanges()
149 // Use the num ranges with the num-1 largest gaps. in uprv_makeDenseRanges()
150 gaps.truncate(num-1); in uprv_makeDenseRanges()
153 int32_t gapIndex=gaps.firstAfter(minValue); in uprv_makeDenseRanges()
[all …]
/external/libsrtp2/crypto/math/
Dstat.c119 uint16_t gaps[6] = { 0, 0, 0, 0, 0, 0 }; in stat_test_runs() local
149 debug_print(srtp_mod_stat, ">25 gaps: %d", state); in stat_test_runs()
154 state = -6; /* group together gaps > 5 */ in stat_test_runs()
156 gaps[-1 - state]++; /* increment gap count */ in stat_test_runs()
181 /* check for long gaps */ in stat_test_runs()
183 debug_print(srtp_mod_stat, ">25 gaps (2): %d", state); in stat_test_runs()
203 debug_print(srtp_mod_stat, " gaps[]: %d", gaps[i]); in stat_test_runs()
209 (gaps[i] < lo_value[i]) || (gaps[i] > hi_value[i])) in stat_test_runs()
/external/llvm-project/llvm/test/Transforms/LoopVectorize/
Dinterleaved-accesses-masked-group.ll48 ; We therefore create a separate interleave-group with gaps for each of the
50 ; invalidated because interleave-groups of stores with gaps are not supported.
53 ; due to gaps.
70 ; STRIDED_UNMASKED-NEXT: LV: Invalidate candidate interleaved store group due to gaps.
77 ; STRIDED_MASKED-NEXT: LV: Invalidate candidate interleaved store group due to gaps.
78 ; STRIDED_MASKED-NEXT: LV: Invalidate candidate interleaved store group due to gaps.
83 ; We therefore create a separate interleave-group with gaps for each of the accesses,
84 ; (which are later invalidated because interleave-groups of stores with gaps are
112 ; STRIDED_MASKED-NEXT: LV: Invalidate candidate interleaved store group due to gaps.
113 ; STRIDED_MASKED-NEXT: LV: Invalidate candidate interleaved store group due to gaps.
/external/elfutils/src/
Delfcmp.c63 …{ "gaps", OPT_GAPS, "ACTION", 0, N_("Control treatment of gaps in loadable segments [ignore|match]…
91 /* How to treat gaps in loadable segments. */
97 gaps; variable
154 section is compared according to the rules of the --gaps option. in main()
291 if (gaps != gaps_ignore && (shdr1->sh_flags & SHF_ALLOC) != 0) in main()
567 /* We we look at gaps, create artificial ones for the parts of the in main()
571 if (gaps != gaps_ignore) in main()
585 /* If we need to look at the gaps we need access to the file data. */ in main()
591 if (gaps != gaps_ignore) in main()
636 if (gaps != gaps_ignore && phdr1->p_type == PT_LOAD) in main()
[all …]
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp399 IO.mapRequired("Gaps", Symbol.Gaps); in map()
406 IO.mapRequired("Gaps", Symbol.Gaps); in map()
413 IO.mapRequired("Gaps", Symbol.Gaps); in map()
419 IO.mapRequired("Gaps", Symbol.Gaps); in map()
427 IO.mapRequired("Gaps", Symbol.Gaps); in map()
440 IO.mapRequired("Gaps", Symbol.Gaps); in map()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp376 IO.mapRequired("Gaps", Symbol.Gaps); in map()
383 IO.mapRequired("Gaps", Symbol.Gaps); in map()
390 IO.mapRequired("Gaps", Symbol.Gaps); in map()
396 IO.mapRequired("Gaps", Symbol.Gaps); in map()
404 IO.mapRequired("Gaps", Symbol.Gaps); in map()
417 IO.mapRequired("Gaps", Symbol.Gaps); in map()
/external/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalSymbolDumper.cpp344 ArrayRef<LocalVariableAddrGap> Gaps) { in formatGaps() argument
346 for (const auto &G : Gaps) { in formatGaps()
585 P.formatLine("gaps = {2}", Def.Hdr.Offset, in visitKnownRecord()
586 formatGaps(P.getIndentLevel() + 9, Def.Gaps)); in visitKnownRecord()
598 P.formatLine("range = {0}, gaps = {1}", formatRange(Def.Range), in visitKnownRecord()
599 formatGaps(P.getIndentLevel() + 9, Def.Gaps)); in visitKnownRecord()
613 P.formatLine("gaps = [{0}]", in visitKnownRecord()
614 formatGaps(P.getIndentLevel() + 9, DefRangeRegister.Gaps)); in visitKnownRecord()
625 P.formatLine("range = {0}, gaps = {1}", formatRange(Def.Range), in visitKnownRecord()
626 formatGaps(P.getIndentLevel() + 9, Def.Gaps)); in visitKnownRecord()
[all …]
/external/llvm/lib/DebugInfo/CodeView/
DSymbolDumper.cpp49 void printLocalVariableAddrGap(ArrayRef<LocalVariableAddrGap> Gaps);
71 ArrayRef<LocalVariableAddrGap> Gaps) { in printLocalVariableAddrGap() argument
72 for (auto &Gap : Gaps) { in printLocalVariableAddrGap()
308 printLocalVariableAddrGap(DefRangeFramePointerRel.Gaps); in visitDefRangeFramePointerRelSym()
323 printLocalVariableAddrGap(DefRangeRegisterRel.Gaps); in visitDefRangeRegisterRelSym()
334 printLocalVariableAddrGap(DefRangeRegister.Gaps); in visitDefRangeRegisterSym()
347 printLocalVariableAddrGap(DefRangeSubfieldRegister.Gaps); in visitDefRangeSubfieldRegisterSym()
366 printLocalVariableAddrGap(DefRangeSubfield.Gaps); in visitDefRangeSubfieldSym()
384 printLocalVariableAddrGap(DefRange.Gaps); in visitDefRangeSym()
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DSymbolDumper.cpp53 void printLocalVariableAddrGap(ArrayRef<LocalVariableAddrGap> Gaps);
91 ArrayRef<LocalVariableAddrGap> Gaps) { in printLocalVariableAddrGap() argument
92 for (auto &Gap : Gaps) { in printLocalVariableAddrGap()
321 printLocalVariableAddrGap(DefRangeFramePointerRel.Gaps); in visitKnownRecord()
335 printLocalVariableAddrGap(DefRangeRegisterRel.Gaps); in visitKnownRecord()
346 printLocalVariableAddrGap(DefRangeRegister.Gaps); in visitKnownRecord()
358 printLocalVariableAddrGap(DefRangeSubfieldRegister.Gaps); in visitKnownRecord()
377 printLocalVariableAddrGap(DefRangeSubfield.Gaps); in visitKnownRecord()
394 printLocalVariableAddrGap(DefRange.Gaps); in visitKnownRecord()
DSymbolRecordMapping.cpp234 error(IO.mapVectorTail(DefRangeFramePointerRel.Gaps, MapGap())); in visitKnownRecord()
255 error(IO.mapVectorTail(DefRangeRegisterRel.Gaps, MapGap())); in visitKnownRecord()
266 error(IO.mapVectorTail(DefRangeRegister.Gaps, MapGap())); in visitKnownRecord()
278 error(IO.mapVectorTail(DefRangeSubfieldRegister.Gaps, MapGap())); in visitKnownRecord()
289 error(IO.mapVectorTail(DefRangeSubfield.Gaps, MapGap())); in visitKnownRecord()
299 error(IO.mapVectorTail(DefRange.Gaps, MapGap())); in visitKnownRecord()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DSymbolDumper.cpp53 void printLocalVariableAddrGap(ArrayRef<LocalVariableAddrGap> Gaps);
91 ArrayRef<LocalVariableAddrGap> Gaps) { in printLocalVariableAddrGap() argument
92 for (auto &Gap : Gaps) { in printLocalVariableAddrGap()
321 printLocalVariableAddrGap(DefRangeFramePointerRel.Gaps); in visitKnownRecord()
335 printLocalVariableAddrGap(DefRangeRegisterRel.Gaps); in visitKnownRecord()
346 printLocalVariableAddrGap(DefRangeRegister.Gaps); in visitKnownRecord()
358 printLocalVariableAddrGap(DefRangeSubfieldRegister.Gaps); in visitKnownRecord()
377 printLocalVariableAddrGap(DefRangeSubfield.Gaps); in visitKnownRecord()
394 printLocalVariableAddrGap(DefRange.Gaps); in visitKnownRecord()
DSymbolRecordMapping.cpp234 error(IO.mapVectorTail(DefRangeFramePointerRel.Gaps, MapGap())); in visitKnownRecord()
255 error(IO.mapVectorTail(DefRangeRegisterRel.Gaps, MapGap())); in visitKnownRecord()
266 error(IO.mapVectorTail(DefRangeRegister.Gaps, MapGap())); in visitKnownRecord()
278 error(IO.mapVectorTail(DefRangeSubfieldRegister.Gaps, MapGap())); in visitKnownRecord()
289 error(IO.mapVectorTail(DefRangeSubfield.Gaps, MapGap())); in visitKnownRecord()
299 error(IO.mapVectorTail(DefRange.Gaps, MapGap())); in visitKnownRecord()
/external/llvm-project/lld/test/COFF/Inputs/
Dpdb-hashes-1.yaml111 Gaps:
126 Gaps:
141 Gaps:
386 Gaps:
401 Gaps:
Dpdb-globals.yaml248 Gaps: []
261 Gaps: []
274 Gaps: []
287 Gaps: []
751 Gaps: []
Dgeneric.yaml70 Gaps:
85 Gaps:
/external/llvm-project/lldb/source/Plugins/Trace/intel-pt/
DDecodedThread.h56 /// Gaps in the trace can come in a few flavors:
57 /// - tracing gaps (e.g. tracing was paused and then resumed)
115 /// errors (i.e. gaps) in the trace.
/external/deqp/doc/testspecs/VK/
Dsparse_resources.txt63 …gnment parameter of buffer's memory requirements. Memory is bound to the buffer object leaving gaps
76 against expected output from compute shader. For parts that correspond to gaps, the data is random …
83 Memory is bound to the image leaving gaps between bound blocks with the size equal to alignment.
95 against expected output from compute shader. For parts that correspond to gaps, the data is random …
/external/llvm-project/llvm/include/llvm/Support/
DOptimizedStructLayout.h95 /// gaps among the fixed-offset fields, the algorithm may attempt
96 /// to allocate flexible-offset fields into those gaps. If that's
97 /// undesirable, the caller should "block out" those gaps by e.g.
/external/llvm-project/lld/test/COFF/
Dpdb-framedata.yaml121 Gaps:
136 Gaps:
214 Gaps:
229 Gaps:
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbUtil.cpp32 llvm::ArrayRef<LocalVariableAddrGap> gaps) { in MakeRangeList() argument
38 while (!gaps.empty()) { in MakeRangeList()
39 const LocalVariableAddrGap &gap = gaps.front(); in MakeRangeList()
44 gaps = gaps.drop_front(); in MakeRangeList()
618 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps); in GetVariableLocationInfo()
659 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps); in GetVariableLocationInfo()
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
DIsIterableContainingInRelativeOrderTest.java49 …assertMatches("Sub section with single gaps without a first or last match", containsInRelativeOrde… in testMatchesWithSingleGapAndNotFirstOrLast()
53 …assertMatches("Sub section with many gaps iterable", containsInRelativeOrder(2, 4, 6), asList(1, 2… in testMatchingSubSectionWithManyGaps()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h445 std::vector<LocalVariableAddrGap> Gaps; variable
467 std::vector<LocalVariableAddrGap> Gaps; variable
489 std::vector<LocalVariableAddrGap> Gaps; variable
513 std::vector<LocalVariableAddrGap> Gaps; variable
539 std::vector<LocalVariableAddrGap> Gaps; variable
574 std::vector<LocalVariableAddrGap> Gaps; variable
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h452 std::vector<LocalVariableAddrGap> Gaps; variable
474 std::vector<LocalVariableAddrGap> Gaps; variable
496 std::vector<LocalVariableAddrGap> Gaps; variable
520 std::vector<LocalVariableAddrGap> Gaps; variable
546 std::vector<LocalVariableAddrGap> Gaps; variable
581 std::vector<LocalVariableAddrGap> Gaps; variable
/external/llvm/test/Transforms/LoopVectorize/
Dinterleaved-accesses-pred-stores.ll7 ; contains a conditional store. The store group contains gaps and is not
56 ; groups are separately vectorized. The store group contains gaps and is not
116 ; gaps and are not vectorized.

12345678910>>...20