Home
last modified time | relevance | path

Searched +full:2 +full:- +full:dimensional (Results 1 – 25 of 80) sorted by relevance

1234

/freebsd/sys/contrib/device-tree/Bindings/iio/
H A Dmount-matrix.txt2 * is the definition of +/- values practical or counterintuitive?
13 that produce three-dimensional data in relation to the world where it is
37 reference. This means that the sensor may be flipped upside-down, left-right,
47 Device-to-world examples for some three-dimensional sensor types:
49 - Accelerometers have their world frame of reference toward the center of
55 9.81 m/s^2 upwards along the (z) axis, i.e. out of the screen when the device
57 as the gravity vector is projected 1:1 onto the sensors (z)-axis.
67 +--------+ +--------+
69 +--------+ +--------+
80 (---------)
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Doverflow.h1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
16 * #define type_min(T) (T)(is_signed_type(T) ? (T)1 << (8*sizeof(T)-1) : 0)
17 * #define type_max(T) (T)(is_signed_type(T) ? ((T)1 << (8*sizeof(T)-1)) - 1 : ~(T)0)
21 * the type_max expression (but not if -fsanitize=undefined is in
27 * a-feature-not-a-bug, since people shouldn't be doing arithmetic on
32 * https://mail-index.netbsd.org/tech-misc/2007/02/05/0000.html -
35 #define __type_half_max(type) ((type)1 << (8*sizeof(type) - 1 - is_signed_type(type)))
36 #define type_max(T) ((T)((__type_half_max(T) - 1) + __type_half_max(T)))
37 #define type_min(T) ((T)((T)-type_max(T)-(T)1))
40 * Avoids triggering -Wtype-limits compilation warning,
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dnifty2 #------------------------------------------------------------------------------
10 344 string n+1\0 NIfTI-1 neuroimaging data,
14 344 string ni1\0 NIfTI-1 neuroimaging data header,
19 4 string n+2\0\r\n\032\n NIfTI-2 neuroimaging data,
23 4 string ni2\0\r\n\032\n NIfTI-2 neuroimaging data header,
28 # Main subroutine for NIfTI-1
32 >>70 use nifti-datatype-le
34 >>0 use nifti1-dim-le
36 >>>252 use xform-code-nifti1-le
38 >>>254 use xform-code-nifti1-le
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Derr.D_AGG_MDIM.bad.d33 * An aggregation may not be used as a multi-dimensional array
42 @counts[0][2] = count();
/freebsd/contrib/flex/src/
H A Dtables.c1 /* tables.c - tables serialization code
10 * to contract no. DE-AC03-76SF00098 between the United States
21 * 2. Redistributions in binary form must reproduce the above copyright
40 * @param n in {1,2,4}
73 wr->out = out; in yytbl_writer_init()
74 wr->total_written = 0; in yytbl_writer_init()
88 th->th_magic = YYTBL_MAGIC; in yytbl_hdr_init()
89 th->th_hsize = (flex_uint32_t) (14 + strlen (version_str) + 1 + strlen (name) + 1); in yytbl_hdr_init()
90 th->th_hsize += yypad64 (th->th_hsize); in yytbl_hdr_init()
91 th->th_ssize = 0; // Not known at this point. in yytbl_hdr_init()
[all …]
H A Dtables_shared.h3 dnl tables_shared.h - tables serialization header
12 dnl to contract no. DE-AC03-76SF00098 between the United States
23 dnl 2. Redistributions in binary form must reproduce the above copyright
54 * - The format allows many tables per file.
55 * - The tables can be streamed.
56 * - All data is stored in network byte order.
57 * - We do not hinder future unicode support.
58 * - We can lookup tables by name.
66 /** Calculate (0-7) = number bytes needed to pad n to next 64-bit boundary. */
68 #define yypad64(n) ((8-((n)%8))%8)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/thermal/
H A Dthermal-generic-adc.txt6 temperature using voltage-temperature lookup table.
10 - compatible: Must be "generic-adc-thermal".
11 - #thermal-sensor-cells: Should be 1. See Documentation/devicetree/bindings/thermal/thermal-sen…
15 - temperature-lookup-table: Two dimensional array of Integer; lookup table
29 #include <dt-bindings/thermal/thermal.h>
35 sampling-frequency = <3300>;
36 #io-channel-cells = <1>;
40 tboard_thermistor: thermal-sensor {
41 compatible = "generic-adc-thermal";
42 #thermal-sensor-cells = <0>;
[all …]
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dvideo-interface-devices.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/media/video-interface-devices.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Jacopo Mondi <jacopo@jmondi.org>
11 - Sakari Ailus <sakari.ailus@linux.intel.com>
14 flash-leds:
15 $ref: /schemas/types.yaml#/definitions/phandle-array
17 An array of phandles, each referring to a flash LED, a sub-node of the LED
20 lens-focus:
[all …]
/freebsd/contrib/ntp/include/
H A Dntp_worker.h80 * dynamically-sized one-dimensional arrays of pointers to
168 extern int pipe_socketpair(int fds[2], int *is_pipe);
/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dhypot.h1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
54 // Computes the three-dimensional hypotenuse: `std::hypot(x,y,z)`.
55 // The naive implementation might over-/underflow which is why this implementation is more involved:
57 // See https://github.com/llvm/llvm-project/issues/92782 for a detailed discussion and summary.
60 // Factors needed to determine if over-/underflow might happen in __hypot()
61 constexpr int __exp = std::numeric_limits<_Real>::max_exponent / 2; in __hypot()
63 const _Real __overflow_scale = __math::ldexp(_Real(1), -(__exp + 20)); in __hypot()
/freebsd/usr.bin/rs/
H A Drs.19 .\" 2. Redistributions in binary form must reproduce the above copyright
46 of blank-separated entries in an array,
75 .Bl -tag -width indent
122 The gutter width (inter-column space), normally 2, is taken to be
161 unless the first non-ignored line is longer than the display width.
178 .Bd -literal -offset indent
189 .Bd -literal -offset indent
195 .Bd -literal -offset indent
196 % jot \-r 100 | rs 10 10 | tee array | rs \-T > tarray
201 a file consisting of a multi-line vector with 9 elements per line
[all …]
/freebsd/share/doc/psd/06.Clang/
H A DClang.ms1 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
36 .nr Cl 2
38 The C Programming Language - Reference Manual
47 by Brian W. Kernighan and Dennis M. Ritchie, Prentice-Hall, Inc., 1978.
51 .EH 'PSD:6-%''The C Programming Language - Reference Manual'
52 .OH 'The C Programming Language - Reference Manual''PSD:6-%'
56 This manual describes the C language on the DEC PDP-11\(dg, the DEC VAX-11,
59 \(dg DEC PDP-11, and DEC VAX-11 are trademarks of Digital Equipment Corporation.
65 out implementation-dependent details. With few exceptions, these dependencies
71 There are six classes of tokens\ -\
[all …]
/freebsd/share/man/man3/
H A Dintro.39 .\" 2. Redistributions in binary form must reproduce the above copyright
51 .Bl -tag -width "libbluetooth"
68 .Bl -tag -width "XXXXXX"
85 .It regular-expressions
116 for two dimensional non-bitmap display terminals.
167 The general-purpose input output library (GPIO).
263 The general-purpose data compression library.
268 .Bl -tag -width /usr/lib/libm_p.a -compact
280 .Bd -unfilled -offset indent
305 When the binary is executed, the run-time linker
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDelinearization.h1 //===---- Delinearization.h - MultiDimensional Index Delinearization ------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // use the on-demand SCEVAddRecExpr::delinearize() function.
14 //===----------------------------------------------------------------------===//
55 /// 2. Compute the array size
57 /// starting with the innermost dimensions found in step 2. The Quotient
60 /// array dimensions computed in step 2.
64 /// accesses, and compute in step 2 a unique array shape. This guarantees
67 /// FIXME: We could derive the result of steps 1 and 2 from a description of
[all …]
H A DDependenceAnalysis.h1 //===-- llvm/Analysis/DependenceAnalysis.h --------
[all...]
/freebsd/share/doc/papers/kerntune/
H A D2.t10 .\" 2. Redistributions in binary form must reproduce the above copyright
78 but we are limited by the two-dimensional nature of our output
104 0.20 1.20 4/10 \ \ \s-1CALLER1\s+1 [7]
105 0.30 1.80 6/10 \ \ \s-1CALLER2\s+1 [1]
106 [2] 41.5 0.50 3.00 10+4 \s-1EXAMPLE\s+1 [2]
107 1.50 1.00 20/40 \ \ \s-1SUB1\s+1 <cycle1> [4]
108 0.00 0.50 1/5 \ \ \s-1SUB2\s+1 [9]
109 0.00 0.00 0/5 \ \ \s-1SUB3\s+1 [11]
112 Figure 1. Profile entry for \s-1EXAMPLE\s+1.
144 Self-recursive routines have their calls broken
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h1 //===- ExecutorProcessControl.h - Executor process control APIs -*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
42 /// A handler or incoming WrapperFunctionResults -- either return values from
43 /// callWrapper* calls, or incoming JIT-dispatch requests.
87 [&D = this->D, Fn = std::move(Fn)] in operator()
204 SymbolStringPtr intern(StringRef SymName) { return SSP->intern(SymName); } in intern()
237 /// Look up and SPS-deserialize a bootstrap map value.
249 shared::SPSInputBuffer IB(I->second.data(), I->second.size()); in getBootstrapMapValue()
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_mcast_tbl.c2 * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved.
3 * Copyright (c) 2002-2009 Mellanox Technologies LTD. All rights reserved.
4 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
9 * General Public License (GPL) Version 2, available from the file
17 * - Redistributions of source code must retain the above
21 * - Redistributions in binary form must reproduce the above
64 p_tbl->max_block_in_use = -1; in osm_mcast_tbl_init()
74 p_tbl->num_entries = capacity; in osm_mcast_tbl_init()
75 p_tbl->num_ports = num_ports; in osm_mcast_tbl_init()
76 p_tbl->max_position = in osm_mcast_tbl_init()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/
H A Dlayout_right.h1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12 // Under the terms of Contract DE-NA0003525 with NTESS,
15 //===---------------------------------------------------------------------===//
77 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
78 // mapping<dextents<char, 2>> map(dextents<char, 2>(40,40)); map(3, 10) == -126 in mapping()
89 // not catching this could lead to out-of-bounds access later when used inside mdspan in requires()
90 …// mapping<dextents<char, 2>> map(mapping<dextents<int, 2>>(dextents<int, 2>(40,40))); map(3, 10) … in requires()
101 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
[all …]
H A Dlayout_left.h1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12 // Under the terms of Contract DE-NA0003525 with NTESS,
15 //===---------------------------------------------------------------------===//
78 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
79 // mapping<dextents<char, 2>> map(dextents<char, 2>(40,40)); map(10, 3) == -126 in mapping()
90 // not catching this could lead to out-of-bounds access later when used inside mdspan in requires()
91 …// mapping<dextents<char, 2>> map(mapping<dextents<int, 2>>(dextents<int, 2>(40,40))); map(10, 3) … in requires()
102 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
[all …]
/freebsd/share/man/man9/
H A Dosd.911 .\" 2. The name of the author may not be used to endorse or promote products
110 run-time with any kernel data structure which has been suitably modified for use
113 The one-off modification required involves embedding a
136 and provide a high-level grouping for slots to be registered under.
148 The function may sleep and therefore cannot be called from a non-sleepable
152 argument specifies which high-level type grouping from
176 The function may sleep and therefore cannot be called from a non-sleepable
180 argument specifies which high-level type grouping from
197 argument specifies which high-level type grouping from
223 that is internal-use memory previously allocated via
[all …]
/freebsd/share/doc/psd/18.gprof/
H A Dpresent.me9 .\" 2. Redistributions in binary form must reproduce the above copyright
35 .sh 2 "The Flat Profile
56 .sh 2 "The Call Graph Profile"
69 0.20 1.20 4/10 \ \ \s-1CALLER1\s+1 [7]
70 0.30 1.80 6/10 \ \ \s-1CALLER2\s+1 [1]
71 [2] 41.5 0.50 3.00 10+4 \s-1EXAMPLE\s+1 [2]
72 1.50 1.00 20/40 \ \ \s-1SUB1\s+1 <cycle1> [4]
73 0.00 0.50 1/5 \ \ \s-1SUB2\s+1 [9]
74 0.00 0.00 0/5 \ \ \s-1SUB3\s+1 [11]
76 .ce 2
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.cppm
H A Dcmath.inc1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
138 // [c.math.hypot3], three-dimensional hypotenuse
287 // [sf.cmath.comp.ellint.2], complete elliptic integral of the second kind
323 // [sf.cmath.ellint.2], incomplete elliptic integral of the second kind
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_mcast_tbl.h2 * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved.
3 * Copyright (c) 2002-2009 Mellanox Technologies LTD. All rights reserved.
4 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
9 * General Public License (GPL) Version 2, available from the file
17 * - Redistributions of source code must retain the above
21 * - Redistributions in binary form must reproduce the above
108 * Pointer to a two dimensional array of port_masks for this switch.
188 * Returns 0 on success and non-zero value otherwise.
411 return p_tbl->max_block; in osm_mcast_tbl_get_max_block()
433 * A value of -1 indicates no blocks are in use.
[all …]

1234