| /openbsd-src/gnu/llvm/clang/tools/scan-view/ |
| H A D | CMakeLists.txt | 1 option(CLANG_INSTALL_SCANVIEW "Install the scan-view tool" ON) 4 scan-view) 24 COMPONENT scan-view) 28 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/share/scan-view/${ShareFile} 30 ${CMAKE_BINARY_DIR}/share/scan-view 33 ${CMAKE_BINARY_DIR}/share/scan-view/ 35 list(APPEND Depends ${CMAKE_BINARY_DIR}/share/scan-view/${ShareFile}) 37 DESTINATION "${CMAKE_INSTALL_DATADIR}/scan-view" 38 COMPONENT scan-view) 41 add_custom_target(scan-view ALL DEPENDS ${Depends}) [all …]
|
| /openbsd-src/sbin/unwind/libunbound/services/ |
| H A D | view.c | 50 struct view* a = (struct view*)v1; in view_cmp() 51 struct view* b = (struct view*)v2; in view_cmp() 75 view_delete(struct view* v) in view_delete() 89 struct view* v = (struct view*)n; in delviewnode() 104 static struct view* 107 struct view* v = (struct view*)calloc(1, sizeof(*v)); in view_create() 121 static struct view* 124 struct view* v = view_create(name); in views_enter_view_name() 148 struct view* v; in views_apply_cfg() 224 struct view* [all …]
|
| H A D | view.h | 66 struct view { struct 120 void view_delete(struct view* v); 136 struct view* views_find_view(struct views* vs, const char* name, int write);
|
| /openbsd-src/usr.sbin/unbound/services/ |
| H A D | view.c | 50 struct view* a = (struct view*)v1; in view_cmp() 51 struct view* b = (struct view*)v2; in view_cmp() 75 view_delete(struct view* v) in view_delete() 89 struct view* v = (struct view*)n; in delviewnode() 104 static struct view* 107 struct view* v = (struct view*)calloc(1, sizeof(*v)); in view_create() 121 static struct view* 124 struct view* v = view_create(name); in views_enter_view_name() 148 struct view* v; in views_apply_cfg() 224 struct view* [all …]
|
| H A D | view.h | 66 struct view { struct 120 void view_delete(struct view* v); 136 struct view* views_find_view(struct views* vs, const char* name, int write);
|
| /openbsd-src/gnu/llvm/clang/tools/clang-format/ |
| H A D | clang-format-sublime.py | 31 encoding = self.view.encoding() 38 for region in self.view.sel(): 44 '-assume-filename', str(self.view.file_name())]) 45 old_viewport_position = self.view.viewport_position() 46 buf = self.view.substr(sublime.Region(0, self.view.size())) 52 self.view.replace( 53 edit, sublime.Region(0, self.view.size()), 55 self.view.sel().clear() 57 self.view.sel().add(region) 59 sublime.set_timeout(lambda: self.view.set_viewport_position(
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | ranges | 60 // [range.view], views 67 concept view = ...; 94 // [view.interface], class template view_interface 118 // [range.elements], elements view 139 // [range.empty], empty view 152 // [range.all], all view 174 // [range.filter], filter view 176 requires view<V> && is_object_v<Pred> 183 // [range.drop], drop view 184 template<view V> [all …]
|
| /openbsd-src/gnu/llvm/clang/tools/clang-format-vs/ClangFormat/ |
| H A D | ClangFormatPackage.cs | 289 IWpfTextView view = Vsix.GetCurrentView(); in FormatSelection() 290 if (view == null) in FormatSelection() 293 string text = view.TextBuffer.CurrentSnapshot.GetText(); in FormatSelection() 294 int start = view.Selection.Start.Position.GetContainingLine().Start.Position; in FormatSelection() 295 int end = view.Selection.End.Position.GetContainingLine().End.Position; in FormatSelection() 301 string path = Vsix.GetDocumentParent(view); in FormatSelection() 302 string filePath = Vsix.GetDocumentPath(view); in FormatSelection() 304 RunClangFormatAndApplyReplacements(text, start, end, path, filePath, options, view); in FormatSelection() 320 private void FormatView(IWpfTextView view, OptionPageGrid options) in FormatView() argument 322 if (view == null) in FormatView() [all …]
|
| H A D | Vsix.cs | 73 public static ITextDocument GetTextDocument(IWpfTextView view) in GetTextDocument() argument 76 …if (view != null && view.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out document)) in GetTextDocument() 81 public static string GetDocumentParent(IWpfTextView view) in GetDocumentParent() argument 83 ITextDocument document = GetTextDocument(view); in GetDocumentParent() 91 public static string GetDocumentPath(IWpfTextView view) in GetDocumentPath() argument 93 return GetTextDocument(view)?.FilePath; in GetDocumentPath()
|
| /openbsd-src/sys/dev/pci/drm/i915/selftests/ |
| H A D | i915_vma.c | 66 const struct i915_gtt_view *view) in checked_vma_instance() argument 71 vma = i915_vma_instance(obj, vm, view); in checked_vma_instance() 88 if (i915_vma_compare(vma, vm, view)) { in checked_vma_instance() 591 struct i915_gtt_view view = { in igt_vma_rotate_remap() local 596 struct intel_remapped_plane_info *plane_info = view.remapped.plane; in igt_vma_rotate_remap() 605 plane_info[0].dst_stride = view.type == I915_GTT_VIEW_ROTATED ? in igt_vma_rotate_remap() 609 plane_info[1].dst_stride = view.type == I915_GTT_VIEW_ROTATED ? in igt_vma_rotate_remap() 619 vma = checked_vma_instance(obj, vm, &view); in igt_vma_rotate_remap() 631 expected_pages = remapped_size(view.type, &plane_info[0], &plane_info[1]); in igt_vma_rotate_remap() 633 if (view.type == I915_GTT_VIEW_ROTATED && in igt_vma_rotate_remap() [all …]
|
| /openbsd-src/sys/dev/pci/drm/i915/ |
| H A D | i915_vma.h | 46 const struct i915_gtt_view *view); 214 const struct i915_gtt_view *view) in i915_vma_compare() argument 218 GEM_BUG_ON(view && !i915_is_ggtt_or_dpt(vm)); in i915_vma_compare() 226 if (!view) in i915_vma_compare() 229 cmp -= view->type; in i915_vma_compare() 248 BUILD_BUG_ON(offsetof(typeof(*view), rotated) != in i915_vma_compare() 249 offsetof(typeof(*view), partial)); in i915_vma_compare() 250 BUILD_BUG_ON(offsetof(typeof(*view), rotated) != in i915_vma_compare() 251 offsetof(typeof(*view), remapped)); in i915_vma_compare() 252 return memcmp(&vma->gtt_view.partial, &view->partial, view->type); in i915_vma_compare()
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | StringExtractorGDBRemote.cpp | 643 llvm::StringRef view = llvm::StringRef(m_packet).substr(m_index); in GetPidTid() local 644 size_t initial_length = view.size(); in GetPidTid() 648 if (view.consume_front("p")) { in GetPidTid() 650 if (view.consume_front("-1")) { in GetPidTid() 653 } else if (view.consumeInteger(16, pid) || pid == 0) { in GetPidTid() 660 if (!view.consume_front(".")) { in GetPidTid() 662 m_index += initial_length - view.size(); in GetPidTid() 669 if (view.consume_front("-1")) { in GetPidTid() 672 } else if (view.consumeInteger(16, tid) || tid == 0 || pid == AllProcesses) { in GetPidTid() 679 m_index += initial_length - view.size(); in GetPidTid()
|
| H A D | StringExtractor.cpp | 341 llvm::StringRef view(m_packet); in GetNameColonValue() local 342 if (view.empty()) in GetNameColonValue() 346 view = view.substr(m_index); in GetNameColonValue() 347 std::tie(a, b) = view.split(':'); in GetNameColonValue() 359 size_t bytes_consumed = d.data() - view.data(); in GetNameColonValue()
|
| /openbsd-src/gnu/llvm/lldb/docs/resources/ |
| H A D | bots.rst | 23 <http://green.lab.llvm.org/green/view/LLDB/>`_ for LLDB. 25 * `lldb-cmake <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/>`_ 26 * `lldb-cmake-matrix <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-matrix/>`_ 27 * `lldb-cmake-standalone <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-standalone/>`_ 28 * `lldb-cmake-sanitized <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-sanitized/>`_
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/ |
| H A D | naming-1.m | 12 View *view; /* { dg-error "`view' undeclared" } */ 19 View *view; /* ok */
|
| /openbsd-src/gnu/llvm/libcxx/docs/Status/ |
| H A D | ZipProjects.csv | 14 | `[range.zip.transform.view] <https://wg21.link/range.zip.transform.view>`_, "zip_transform_view",… 18 | `[range.adjacent.view] <https://wg21.link/range.adjacent.view>`_, "adjacent_view", "| `adjacent_v… 22 | `[range.adjacent.transform.view] <https://wg21.link/range.adjacent.transform.view>`_, "adjacent_t…
|
| /openbsd-src/sys/dev/pci/drm/i915/display/ |
| H A D | intel_fb_pin.c | 21 const struct i915_gtt_view *view, in intel_pin_fb_obj_dpt() argument 73 vma = i915_vma_instance(obj, vm, view); in intel_pin_fb_obj_dpt() 108 const struct i915_gtt_view *view, in intel_pin_and_fence_fb_obj() argument 176 view, pinctl); in intel_pin_and_fence_fb_obj() 250 &plane_state->view.gtt, in intel_plane_pin_fb() 276 vma = intel_pin_fb_obj_dpt(fb, &plane_state->view.gtt, false, in intel_plane_pin_fb()
|
| H A D | skl_universal_plane.c | 610 u32 stride = plane_state->view.color_plane[color_plane].scanout_stride; in skl_plane_stride() 1002 u32 offset = plane_state->view.color_plane[color_plane].offset; in skl_surf_address() 1151 u32 x = plane_state->view.color_plane[0].x; in skl_plane_update_arm() 1152 u32 y = plane_state->view.color_plane[0].y; in skl_plane_update_arm() 1173 PLANE_OFFSET_Y(plane_state->view.color_plane[1].y) | in skl_plane_update_arm() 1174 PLANE_OFFSET_X(plane_state->view.color_plane[1].x)); in skl_plane_update_arm() 1212 int x = plane_state->view.color_plane[color_plane].x; in icl_plane_update_noarm() 1213 int y = plane_state->view.color_plane[color_plane].y; in icl_plane_update_noarm() 1531 int aux_x = plane_state->view.color_plane[ccs_plane].x; in skl_check_main_ccs_coordinates() 1532 int aux_y = plane_state->view in skl_check_main_ccs_coordinates() [all...] |
| H A D | intel_fb.c | 998 state->view.color_plane[color_plane].mapping_stride, in intel_plane_adjust_aligned_offset() 1079 int pitch = state->view.color_plane[color_plane].mapping_stride; in intel_plane_compute_aligned_offset() 1426 struct intel_fb_view *view) in calc_plane_remap_info() argument 1429 struct intel_remapped_plane_info *remap_info = &view->gtt.remapped.plane[color_plane]; in calc_plane_remap_info() 1430 struct i915_color_plane_view *color_plane_info = &view->color_plane[color_plane]; in calc_plane_remap_info() 1455 if (view->gtt.type == I915_GTT_VIEW_ROTATED) { in calc_plane_remap_info() 1457 check_array_bounds(i915, view->gtt.rotated.plane, color_plane); in calc_plane_remap_info() 1480 drm_WARN_ON(&i915->drm, view->gtt.type != I915_GTT_VIEW_REMAPPED); in calc_plane_remap_info() 1482 check_array_bounds(i915, view->gtt.remapped.plane, color_plane); in calc_plane_remap_info() 1484 if (view->gtt.remapped.plane_alignment) { in calc_plane_remap_info() [all …]
|
| /openbsd-src/sys/dev/pci/drm/i915/gem/ |
| H A D | i915_gem_mman.c | 187 * for the mappable aperture!), a view is created instead and faulted 188 * into userspace. (This view is aligned and sized appropriately for 235 struct i915_gtt_view view; in compute_partial_view() local 240 view.type = I915_GTT_VIEW_PARTIAL; in compute_partial_view() 241 view.partial.offset = rounddown(page_offset, chunk); in compute_partial_view() 242 view.partial.size = in compute_partial_view() 244 (obj->base.size >> PAGE_SHIFT) - view.partial.offset); in compute_partial_view() 248 view.type = I915_GTT_VIEW_NORMAL; in compute_partial_view() 250 return view; in compute_partial_view() 418 /* Use a partial view i in vm_fault_gtt() 380 struct i915_gtt_view view = vm_fault_gtt() local 711 struct i915_gtt_view view = vm_fault_gtt() local [all...] |
| /openbsd-src/gnu/llvm/libcxx/include/__ranges/ |
| H A D | concepts.h | 91 concept view = variable 98 view<_Range> && range<const _Range> && 136 ((view<remove_cvref_t<_Tp>> && constructible_from<remove_cvref_t<_Tp>, _Tp>) || 137 (!view<remove_cvref_t<_Tp>> &&
|
| H A D | split_view.h | 46 requires view<_View> && view<_Pattern> && 118 requires view<_View> && view<_Pattern> && 173 requires view<_View> && view<_Pattern> &&
|
| H A D | all.h | 39 requires ranges::view<decay_t<_Tp>> 49 requires (!ranges::view<decay_t<_Tp>>) && 59 requires (!ranges::view<decay_t<_Tp>> &&
|
| /openbsd-src/usr.bin/systat/ |
| H A D | engine.c | 50 field_view *view; member 408 if (curr_view != NULL && curr_view->view != NULL) { in print_title() 409 for (fp = curr_view->view; *fp != NULL; fp++) { in print_title() 454 if (curr_view->view == NULL) in reset_fields() 457 for (fp = curr_view->view; *fp != NULL; fp++) { in reset_fields() 477 for (fp = curr_view->view; *fp != NULL; fp++) { in field_setup() 500 for (fp = curr_view->view; *fp != NULL; fp++) { in field_setup() 519 for (fp = curr_view->view; *fp != NULL; fp++) { in field_setup() 543 v = ve->view; in set_curr_view() 566 if (fv->view == NULL || fv->name == NULL || fv->mgr == NULL) in add_view() [all …]
|
| /openbsd-src/usr.sbin/unbound/respip/ |
| H A D | respip.c | 26 #include "services/view.h" 409 /** Iterate through raw view data and apply the view-specific respip 412 * an error. This additional iteration through view configuration data 422 struct view* v; in respip_views_apply_cfg() 427 /** if no respip config for this view then there's in respip_views_apply_cfg() 436 log_err("view '%s' unexpectedly missing", cv->name); in respip_views_apply_cfg() 452 "for view '%s'", cv->name); in respip_views_apply_cfg() 878 struct view* view in respip_rewrite_reply() local [all...] |