| /freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/ |
| H A D | touchscreen.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Dmitry Torokhov <dmitry.torokhov@gmail.com> 20 touchscreen-min-x: 21 description: minimum x coordinate reported 25 touchscreen-min-y: 30 touchscreen-size-x: 31 description: horizontal resolution of touchscreen (maximum x coordinate reported + 1) 34 touchscreen-size-y: [all …]
|
| H A D | sitronix,st1232.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Bastian Hecht <hechtb@gmail.com> 13 - $ref: touchscreen.yaml# 18 - sitronix,st1232 19 - sitronix,st1633 32 - compatible 33 - reg 34 - interrupts [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan.cpp | 1 //===-- msan.cpp ----------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 42 // Function argument shadow. Each argument starts at the next available 8-byte 47 // Function argument origin. Each argument starts at the same offset as the 83 static void ExitSymbolizerOrUnwider() { --is_in_symbolizer_or_unwinder; } in ExitSymbolizerOrUnwider() 104 // ... is not in [-2147483648, 2147483647]; references section '.bss'"). 146 RegisterFlag(parser, #Name, Description, &f->Name); in RegisterMsanFlags() 151 FlagHandlerKeepGoing(&f->halt_on_error); in RegisterMsanFlags() [all …]
|
| H A D | msan_report.cpp | 1 //===-- msan_report.cpp -------- 35 const char *Origin() const { return Magenta(); } Origin() function in __msan::Decorator 102 ReportUMR(StackTrace * stack,u32 origin) ReportUMR() argument 187 DescribeMemoryRange(const void * x,uptr size) DescribeMemoryRange() argument [all...] |
| H A D | msan_poisoning.cpp | 1 //===-- msan_poisoning.cpp --------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 49 // Copy left unaligned origin if that memory is poisoned. in CopyOrigin() 51 u32 o = GetOriginIfPoisoned((uptr)src, beg + 4 - d); in CopyOrigin() 60 // If both ends fall into the same 4-byte slot, we are done. in CopyOrigin() 63 // Copy right unaligned origin if that memory is poisoned. in CopyOrigin() 65 u32 o = GetOriginIfPoisoned((uptr)src + (end - d), (d + size) - end); in CopyOrigin() 79 u32 *src_end = (u32 *)MEM_TO_ORIGIN(s + (end - beg)); in CopyOrigin() [all …]
|
| H A D | msan_interface_internal.h | 1 //===-- msan_interface_internal.h -------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 29 // This function can die based on common_flags()->exitcode. 35 // (i.e. -mllvm -msan-keep-going) 49 // Versions of the above which take Origin as a parameter 51 void __msan_warning_with_origin(u32 origin); 53 __msan_warning_with_origin_noreturn(u32 origin); 98 // or -1 if the whole range is good. [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan.cpp | 1 //===-- dfsan.cpp ---------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 19 //===----------------------------------------------------------------------===// 58 // Instrumented code may set this value in terms of -dfsan-track-origins. 71 // +--------------------+ 0x800000000000 (top of memory) 73 // +--------------------+ 0x700000000000 75 // +--------------------+ 0x610000000000 76 // | origin 1 | 77 // +--------------------+ 0x600000000000 [all …]
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/nopwrite/ |
| H A D | nopwrite_mtime.ksh | 2 # SPDX-License-Identifier: CDDL-1.0 33 origin="$TESTPOOL/$TESTFS" 38 datasetexists $origin && destroy_dataset $origin -R 39 log_must zfs create -o mountpoint=$TESTDIR $origin 44 log_must zfs set compress=on $origin 45 log_must zfs set checksum=sha256 $origin 48 zfs snapshot $origin@a || log_fail "zfs snap failed" 49 log_must zfs clone $origin@a $origin/clone 52 o_atime=$(stat -c %X $TESTDIR/clone/file) 53 o_ctime=$(stat -c %Z $TESTDIR/clone/file) [all …]
|
| /freebsd/contrib/bearssl/T0/ |
| H A D | WordBuilder.cs | 31 * Opcodes are accumulated with specific methods. A control-flow stack 60 cfPtr = -1; in WordBuilder() 69 * Build the word. The control-flow stack must be empty. A 'ret' 74 if (cfPtr != -1) { in Build() 75 throw new Exception("control-flow stack is not empty"); in Build() 77 if (jumpToLast || code[code.Count - 1].MayFallThrough) { in Build() 99 * Rotate the control-flow stack at depth 'depth'. 103 int x = cfStack[cfPtr - depth]; in CSRoll() 104 Array.Copy(cfStack, cfPtr - (depth - 1), in CSRoll() 105 cfStack, cfPtr - depth, depth); in CSRoll() [all …]
|
| /freebsd/stand/lua/ |
| H A D | gfx.lua.8 | 4 .\" SPDX-License-Identifier: BSD-2-Clause 13 The built-in graphics related Lua bindings for the 22 .Bl -tag -width term_putimage 31 The units are in pixels and have an origin of 40 The units are in pixels and have an origin of 49 The units are in pixels and have an origin of 61 The units are in pixels and have an origin of 63 .It Fn fb_set_pixel x y 65 .Pq Va x , Va y . 66 The units are in pixels and have an origin of [all …]
|
| /freebsd/lib/libc/nameser/ |
| H A D | ns_print.c | 1 /*- 2 * SPDX-License-Identifier: ISC 5 * Copyright (c) 1996-1999 by Internet Software Consortium. 46 # define SPRINTF(x) strlen(sprintf/**/x) argument 48 # define SPRINTF(x) ((size_t)sprintf x) argument 53 static size_t prune_origin(const char *name, const char *origin); 57 const u_char **p, const char *origin, 67 #define T(x) \ argument 69 if ((x) < 0) \ 70 return (-1); \ [all …]
|
| /freebsd/sys/dev/fb/ |
| H A D | splash_pcx.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 6 * Copyright (c) 1999 Dag-Erling Smørgrav 43 static int splash_mode = -1; 81 -1, in pcx_start() 120 if (splash_mode == -1) in pcx_start() 178 hdr->manufactor != 10 || in pcx_init() 179 hdr->version != 5 || in pcx_init() 180 hdr->encoding != 1 || in pcx_init() 181 hdr->nplanes != 1 || in pcx_init() [all …]
|
| /freebsd/contrib/libyaml/examples/ |
| H A D | global-tag.yaml | 2 --- !shape 5 - !circle 6 center: &ORIGIN {x: 73, y: 129} 8 - !line 9 start: *ORIGIN 10 finish: { x: 89, y: 102 } 11 - !label 12 start: *ORIGIN
|
| /freebsd/sys/dev/sound/pcm/ |
| H A D | feeder_chain.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2008-2009 Ariff Abdullah <ariff@FreeBSD.org> 49 struct feeder_chain_state origin; /* original state */ member 146 desc = &(cdesc->desc); in feeder_build_format() 147 desc->in = 0; in feeder_build_format() 148 desc->out = 0; in feeder_build_format() 152 device_printf(c->dev, in feeder_build_format() 157 desc->in = cdesc->current.afmt; in feeder_build_format() 158 desc->out = cdesc->target.afmt; in feeder_build_format() [all …]
|
| /freebsd/sys/contrib/openzfs/man/man8/ |
| H A D | zfs-receive.8 | 1 .\" SPDX-License-Identifier: CDDL-1.0 10 .\" or https://opensource.org/licenses/CDDL-1.0. 38 .Nm zfs-receive 44 .Op Fl o Sy origin Ns = Ns Ar snapshot 46 .Op Fl x Ar property 52 .Op Fl o Sy origin Ns = Ns Ar snapshot 54 .Op Fl x Ar property 67 .Bl -tag -width "" 72 .Op Fl o Sy origin Ns = Ns Ar snapshot 74 .Op Fl x Ar property [all …]
|
| H A D | zfs-recv.8 | 1 .\" SPDX-License-Identifier: CDDL-1.0 10 .\" or https://opensource.org/licenses/CDDL-1.0. 34 .Dt ZFS-RECEIVE 8 38 .Nm zfs-receive 44 .Op Fl o Sy origin Ns = Ns Ar snapshot 46 .Op Fl x Ar property 52 .Op Fl o Sy origin Ns = Ns Ar snapshot 54 .Op Fl x A [all...] |
| H A D | zfs-send.8 | 1 .\" SPDX-License-Identifier: CDDL-1.0 10 .\" or https://opensource.org/licenses/CDDL-1.0. 39 .Nm zfs-send 45 .Op Fl R Op Fl X Ar dataset Ns Oo , Ns Ar dataset Oc Ns … 55 .Fl -redact Ar redaction_bookmark 74 .Bl -tag -width "" 79 .Op Fl R Op Fl X Ar dataset Ns Oo , Ns Ar dataset Oc Ns … 91 .Bl -tag -width "-D" 92 .It Fl D , -dedup 95 non-deduplicated stream will be generated. [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTImporter.cpp | 1 //===-- ClangASTImporter.cpp ----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 44 clang::ASTContext &src_clang_ast = src_ast->getASTContext(); in CopyType() 54 llvm::Expected<QualType> ret_or_error = delegate_sp->Import(src_qual_type); in CopyType() 62 lldb::opaque_compiler_type_t dst_clang_type = ret_or_error->getAsOpaquePtr(); in CopyType() 73 clang::ASTContext *src_ast = &decl->getASTContext(); in CopyDecl() 81 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl); in CopyDecl() 89 user_id = metadata->GetUserID(); in CopyDecl() 95 decl->getDeclKindName(), named_decl->getNameAsString(), in CopyDecl() [all …]
|
| /freebsd/sys/netgraph/netflow/ |
| H A D | netflow_v9.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 65 uint32_t src_as; /* Src peer/origin Autonomous System (SRC_AS) */ 66 uint32_t dst_as; /* Dst peer/origin Autonomous System (DST_AS) */ 90 uint32_t src_as; /* Src peer/origin Autonomous System (SRC_AS) */ 91 uint32_t dst_as; /* Dst peer/origin Autonomous System (DST_AS) */ 110 #define _NETFLOW_V9_MAX_SIZE(x) (x) - sizeof(struct ip6_hdr) - sizeof(struct udphdr) - 16 argument 118 #define _NETFLOW_V9_TEMPLATE_SIZE(x) (sizeof(x) / sizeof(struct netflow_v9_template)) * 4 argument 119 //#define _NETFLOW_V9_TEMPLATE_SIZE(x) ((x) + 1) * 4
|
| /freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
| H A D | _libzfs_core.py | 1 # SPDX-License-Identifier: Apache-2.0 9 # http://www.apache.org/licenses/LICENSE-2.0 98 :param props: a `dict` of ZFS dataset property name-value pairs 131 def lzc_clone(name, origin, props=None): argument 136 :param bytes origin: a name of the origin snapshot. 137 :param props: a `dict` of ZFS dataset property name-value pairs 143 dataset or the origin snapshot does not exist. 147 :raises SnapshotNameInvalid: if the origin is not a valid snapshot name. 148 :raises NameTooLong: if the name or the origin name is too long. 149 :raises PoolsDiffer: if the clone and the origin have different pool names. [all …]
|
| /freebsd/contrib/tcpdump/ |
| H A D | print-eigrp.c | 2 * Copyright (c) 1998-2004 Hannes Gredler <hannes@gredler.at> 28 #include "netdissect-stdinc.h" 71 { 0x08, "End-of-Table" }, 136 nd_uint8_t destination; /* variable length [1-4] bytes encoding */ 156 nd_uint8_t destination; /* variable length [1-4] bytes encoding */ 204 { 0x07, "IS-IS" }, 231 ndo->ndo_protocol = "eigrp"; in eigrp_print() 239 if (GET_U_1(eigrp_com_header->version) != EIGRP_VERSION) { in eigrp_print() 241 GET_U_1(eigrp_com_header->version)); in eigrp_print() 245 /* in non-verbose mode just lets print the basic Message Type*/ in eigrp_print() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 1 //===- MemorySanitizer.cpp - detector of uninitialized reads --------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 /// poison the shadow of the malloc-ed or alloca-ed memory, load the shadow, 25 /// optimizations and a fast start-up. But this brings the major issue 29 /// component (e.g. DynamoRIO) to instrument pre-built libraries. 33 /// shadow updates (Memcheck is single-threaded so races are not a 42 /// specialized thread-local shadow for return values 45 /// Origin tracking. 48 /// values. This behavior is controlled with a flag (msan-track-origins) and is [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 1 //===-- IOHandlerCursesGUI.cpp --------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 35 #include "lldb/lldb-forward.h" 111 type summary add -s "x=${var.x}, y=${var.y}" curses::Point 112 type summary add -s "w=${var.width}, h=${var.height}" curses::Size 113 type summary add -s "${var.origin%S} ${var.size%S}" curses::Rect 117 int x; member 120 Point(int _x = 0, int _y = 0) : x(_x), y(_y) {} in Point() 123 x = 0; in Clear() [all …]
|
| /freebsd/lib/libvgl/ |
| H A D | main.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 4 * Copyright (c) 1991-1997 Søren Schmidt 43 #define min(x, y) (((x) < (y)) ? (x) : (y)) argument 44 #define max(x, y) (((x) > (y)) ? (x) : (y)) argument 88 ioctl(0, _IO('V', VGLOldMode - M_VESA_BASE), 0); in VGLEnd() 147 return -1; in VGLInit() 161 return -1; in VGLInit() 167 return -1; in VGLInit() 172 return -1; in VGLInit() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| H A D | BugReporterVisitors.h | 1 //===- BugReporterVisitors.h - Generate PathDiagnostics ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 83 /// path - the piece, which is displayed before the path is expanded. 103 /// Default tracking kind -- specifies that as much information should be 130 /// int x = 42; 133 /// int x; 134 /// x = 42; 156 /// Dest <- Origin [all …]
|