Home
last modified time | relevance | path

Searched refs:num_locations (Results 1 – 25 of 39) sorted by relevance

12

/external/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/
DTestSourceRegexBreakpoints.py42 num_locations = main_break.GetNumLocations()
44 num_locations == 1,
46 (num_locations))
75 num_locations = main_break.GetNumLocations()
77 num_locations == 2,
79 (num_locations))
87 num_locations = main_break.GetNumLocations()
89 num_locations == 4,
91 (num_locations))
99 num_locations = main_break.GetNumLocations()
[all …]
/external/freetype/src/truetype/
Dttpload.c110 face->num_locations = table_len >> shift; in tt_face_load_loca()
121 face->num_locations = table_len >> shift; in tt_face_load_loca()
124 if ( face->num_locations != (FT_ULong)face->root.num_glyphs + 1 ) in tt_face_load_loca()
127 face->num_locations - 1, face->root.num_glyphs )); in tt_face_load_loca()
130 if ( face->num_locations <= (FT_ULong)face->root.num_glyphs ) in tt_face_load_loca()
164 face->num_locations = (FT_ULong)face->root.num_glyphs + 1; in tt_face_load_loca()
168 face->num_locations )); in tt_face_load_loca()
172 face->root.num_glyphs = face->num_locations in tt_face_load_loca()
173 ? (FT_Long)face->num_locations - 1 : 0; in tt_face_load_loca()
207 if ( gindex < face->num_locations ) in tt_face_get_location()
[all …]
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp110 uint32_t* num_locations) { in NumConsumedLocations() argument
111 *num_locations = 0; in NumConsumedLocations()
116 *num_locations = 1; in NumConsumedLocations()
123 *num_locations = 2; in NumConsumedLocations()
125 *num_locations = 1; in NumConsumedLocations()
132 num_locations); in NumConsumedLocations()
133 *num_locations *= type->GetOperandAs<uint32_t>(2); in NumConsumedLocations()
139 num_locations); in NumConsumedLocations()
146 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations()
165 *num_locations += member_locations; in NumConsumedLocations()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp110 uint32_t* num_locations) { in NumConsumedLocations() argument
111 *num_locations = 0; in NumConsumedLocations()
116 *num_locations = 1; in NumConsumedLocations()
123 *num_locations = 2; in NumConsumedLocations()
125 *num_locations = 1; in NumConsumedLocations()
132 num_locations); in NumConsumedLocations()
133 *num_locations *= type->GetOperandAs<uint32_t>(2); in NumConsumedLocations()
139 num_locations); in NumConsumedLocations()
146 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations()
165 *num_locations += member_locations; in NumConsumedLocations()
[all …]
/external/llvm-project/lldb/utils/lui/
Dlldbutil.py354 num_locations=num_expected_locations,
362 num_locations=num_expected_locations)
391 num_locations=num_expected_locations,
398 num_locations=num_expected_locations)
425 num_locations=num_expected_locations,
433 num_locations=num_expected_locations)
454 num_locations=num_expected_locations)
474 num_locations=num_expected_locations)
517 num_locations = 1
519 num_locations = break_results['num_locations']
[all …]
/external/bcc/tests/cc/
Dtest_usdt_probes.cc51 REQUIRE(probe->num_locations() == 1);
121 int num_locations; in probe_num_locations() local
126 if (cmd_scanf(cmd, "%d", &num_locations) != 0) { in probe_num_locations()
130 return num_locations; in probe_num_locations()
177 REQUIRE(probe->num_locations() == exp_locations);
200 REQUIRE(probe->num_locations() == exp_locations);
215 REQUIRE(probe->num_locations() == exp_locations);
250 REQUIRE(probe->num_locations() == exp_locations);
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbutil.py381 check_breakpoint_result(test, break_results, num_locations=num_expected_locations)
418 num_locations=num_expected_locations,
426 num_locations=num_expected_locations)
455 num_locations=num_expected_locations,
462 num_locations=num_expected_locations)
489 num_locations=num_expected_locations,
497 num_locations=num_expected_locations)
518 num_locations=num_expected_locations)
538 num_locations=num_expected_locations)
559 num_locations = num_expected_locations,
[all …]
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/
DTestRegexpBreakCommand.py43 num_locations=1)
52 num_locations=1)
63 num_locations=1)
DTestBreakpointCommandsFromPython.py70 num_locations = no_files_bkpt.GetNumLocations()
72 num_locations >= 2,
76 for idx in range(0, num_locations):
/external/llvm-project/lldb/test/API/lang/cpp/breakpoint-commands/
DTestCPPBreakpointCommands.py22 num_locations = bkpt.GetNumLocations()
24 num_locations == expected_num_locations,
28 num_locations))
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointIDList.cpp176 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges() local
177 for (size_t j = 0; j < num_locations; ++j) { in FindAndReplaceIDRanges()
264 const size_t num_locations = breakpoint->GetNumLocations(); in FindAndReplaceIDRanges() local
268 for (size_t k = 0; k < num_locations; ++k) { in FindAndReplaceIDRanges()
280 for (size_t k = 0; k < num_locations; ++k) { in FindAndReplaceIDRanges()
DBreakpoint.cpp597 size_t num_locations = m_locations.GetSize(); in ModulesChanged() local
599 for (loc_idx = 0; loc_idx < num_locations; loc_idx++) { in ModulesChanged()
880 const size_t num_locations = GetNumLocations(); in GetDescription() local
895 if (num_locations > 0) { in GetDescription()
896 s->Printf(", locations = %" PRIu64, (uint64_t)num_locations); in GetDescription()
933 if (num_locations == 0) { in GetDescription()
935 } else if (num_locations == 1 && !show_locations) { in GetDescription()
940 s->Printf("%" PRIu64 " locations.", static_cast<uint64_t>(num_locations)); in GetDescription()
961 for (size_t i = 0; i < num_locations; ++i) { in GetDescription()
DBreakpointLocationList.cpp244 size_t num_locations = m_locations.size(); in RemoveLocation() local
245 for (size_t idx = 0; idx < num_locations; idx++) { in RemoveLocation()
/external/llvm-project/lldb/examples/python/
Djump.py90 num_locations = breakpoint.GetNumLocations()
92 if (num_locations == 0):
98 for location_index in range(num_locations):
/external/llvm-project/lldb/test/API/lang/objc/foundation/
DTestFoundationDisassembly.py83 num_locations=1)
106 num_locations=1)
DTestObjCMethods.py45 num_locations=1)
68 num_locations=1)
/external/bcc/tools/
Dtplist.py75 for idx in range(0, probe.num_locations):
80 print(" %d location(s)" % probe.num_locations)
/external/llvm-project/lldb/examples/functions/
Dmain.cpp204 const size_t num_locations = bp.GetNumLocations(); in main() local
205 for (uint32_t bp_loc_idx = 0; bp_loc_idx < num_locations; in main()
/external/bcc/src/cc/usdt/
Dusdt.cc327 info.num_locations = probe->num_locations(); in each()
496 if (index < 0 || (size_t)index >= probe->num_locations()) in bcc_usdt_get_location()
513 if (location_index < 0 || (size_t)location_index >= probe->num_locations()) in bcc_usdt_get_argument()
/external/bcc/src/cc/includes/
Dbcc_usdt.h34 int num_locations; member
/external/bcc/src/cc/
Dbcc_usdt.h34 int num_locations; member
/external/bcc/src/python/bcc/
Dusdt.py108 self.num_locations = probe.num_locations
/external/llvm-project/lldb/source/API/
DSBBreakpoint.cpp545 const size_t num_locations = bkpt_sp->GetNumLocations(); in GetDescription() local
546 s.Printf(", locations = %" PRIu64, (uint64_t)num_locations); in GetDescription()
802 uint32_t num_locations = 0; in GetNumBreakpointLocationsFromEvent() local
804 num_locations = in GetNumBreakpointLocationsFromEvent()
807 return num_locations; in GetNumBreakpointLocationsFromEvent()
/external/llvm-project/lldb/bindings/interface/
DSBBreakpoint.i307num_locations = property(GetNumLocations, None, doc='''A read only property that returns the count…
/external/freetype/include/freetype/internal/
Dtttypes.h1601 FT_ULong num_locations; /* in broken TTF, gid > 0xFFFF */ member

12