Home
last modified time | relevance | path

Searched +full:- +full:i (Results 1 – 25 of 1229) sorted by relevance

12345678910>>...50

/netbsd-src/external/gpl2/rcs/dist/man/
H A Drcsfile.516 rcsfile \- format of RCS file
104 In most environments \*r uses the \s-1ISO\s0 8859/1 encoding:
105 visible graphic characters are codes 041\-176 and 240\-377,
106 and white space characters are codes 010\-015 and 040.
116 the month (01\-12),
118 the day (01\-31),
120 the hour (00\-23),
122 the minute (00\-59),
125 the second (00\-60).
152 node points to the head of that sequence (i.e., contains
[all …]
/netbsd-src/tests/lib/libm/
H A Dt_next.c3 /*-
32 #include <atf-c.h>
53 #define CHECK(i, next, x, d, y) do \ argument
61 (i), #next, \
71 * x[0], x[1], ..., x[n - 1] are consecutive double floating-point
78 unsigned i; in check() local
80 for (i = 0; i < n; i++) { in check()
81 CHECK(i, nextafter, x[i], x[i], x[i]); in check()
82 CHECK(i, nexttoward, x[i], x[i], x[i]); in check()
83 CHECK(i, nextafter, -x[i], -x[i], -x[i]); in check()
[all …]
H A Dt_hypot.c3 /*-
29 #include <atf-c.h>
33 #define CHECK_EQ(i, hypot, a, b, c) \ argument
36 (i), #hypot, (a), (b), hypot(a, b), (c))
38 #define CHECKL_EQ(i, hypot, a, b, c) \ argument
41 (i), #hypot, (long double)(a), (long double)(b), hypot(a, b), \
44 #define CHECK_NAN(i, hypot, a, b) \ argument
47 (i), #hypot, (a), (b), hypot(a, b))
49 #define CHECKL_NAN(i, hypot, a, b) \ argument
52 (i), #hypot, (long double)(a), (long double)(b), hypot(a, b))
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Doptc-save-gen.awk1 # Copyright (C) 2003-2022 Free Software Foundation, Inc.
20 # opt-gather.awk, combines the flags of duplicate options and generates a
24 # This program uses functions from opt-functions.awk and code from
25 # opt-read.awk.
27 # Usage: awk -f opt-functions.awk -f opt-read.awk -f optc-save-gen.awk \
28 # [-v header_name=header.h] < inputfile > options-save.cc
32 print "/* This file is auto-generated by optc-save-gen.awk. */"
35 for (i = 1; i <= n_headers; i++)
36 print "#include " quote headers[i] quote
43 print "#include " quote "hash-set.h" quote
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/src/
H A Dhash.cpp1 //===-------------------------- hash.cpp ----------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 #pragma clang diagnostic ignored "-Wtautological-constant-out-of-range-compare"
22 // handle all next_prime(i) for i in [1, 210), special case 0
75 // potential primes = 210*k + indices[i], k >= 1
135 // The algorithm creates a list of small primes, plus an open-ended list of
175 if (n <= small_primes[N-1]) in __next_prime()
183 // Known a-priori n >= L in __next_prime()
185 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L) in __next_prime()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Doptc-save-gen.awk1 # Copyright (C) 2003-2020 Free Software Foundation, Inc.
20 # opt-gather.awk, combines the flags of duplicate options and generates a
24 # This program uses functions from opt-functions.awk and code from
25 # opt-read.awk.
27 # Usage: awk -f opt-functions.awk -f opt-read.awk -f optc-save-gen.awk \
28 # [-v header_name=header.h] < inputfile > options-save.c
32 print "/* This file is auto-generated by optc-save-gen.awk. */"
35 for (i = 1; i <= n_headers; i++)
36 print "#include " quote headers[i] quote
43 print "#include " quote "hash-set.h" quote
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp1 //===--- MultiplexExternalSemaSource.cpp ---------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
33 ///\param[in] source - An ExternalSemaSource.
39 //===----------------------------------------------------------------------===//
41 //===----------------------------------------------------------------------===//
44 for(size_t i = 0; i < Sources.size(); ++i) in GetExternalDecl() local
45 if (Decl *Result = Sources[i]->GetExternalDecl(ID)) in GetExternalDecl()
51 for (size_t i = 0; i < Sources.size(); ++i) in CompleteRedeclChain() local
[all …]
/netbsd-src/external/gpl2/groff/dist/tmac/
H A Ddvi.tmac22 .\" This uses the dvi-char-_-1 string in fixed-width fonts, dvi-char-_-0
24 .fchar _ \R'dvi-char (\w'M' == \w'i')'\E*[dvi-char-_-\\n[dvi-char]]
27 .\" In fixed-width fonts (CW and CWI) use a real _ character.
31 \R'dvi-char ((\w'M' == \w'i') + \
32 (\En[.f] == \f[CWI]\En[.f]\f[]))'\E*[dvi-char-/l-\\n[dvi-char]]
38 \R'dvi-char ((\w'M' == \w'i') + \
39 (\En[.f] == \f[CWI]\En[.f]\f[]))'\E*[dvi-char-/L-\\n[dvi-char]]
45 .char \[br] \Z'\v'.25m'\D'R .04m -1m''
47 .char \[rn] \Z'\v'-.77m'\D'R .54m .04m''\h'.5m'
49 .char \[or] \h'.1m'\Z'\D'l 0 -.675m''\h'.1m'
[all …]
/netbsd-src/external/apache2/argon2/dist/phc-winner-argon2/src/
H A Dopt.c2 * Argon2 reference source code package - reference C implementations
5 * Daniel Dinu, Dmitry Khovratovich, Jean-Philippe Aumasson, and Samuel Neves
11 * - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
12 * - Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
26 #include "blake2/blamka-round-opt.h"
41 unsigned int i; in fill_block() local
44 for (i = 0; i < ARGON2_512BIT_WORDS_IN_BLOCK; i++) { in fill_block()
45 state[i] = _mm512_xor_si512( in fill_block()
46 state[i], _mm512_loadu_si512((const __m512i *)ref_block->v + i)); in fill_block()
47 block_XY[i] = _mm512_xor_si512( in fill_block()
[all …]
/netbsd-src/external/gpl2/gmake/dist/
H A Dbuild_w32.bat16 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
31 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D TIVOLI /D _DEBUG /D WINDOWS32…
33 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 …
35I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDe…
36 echo WinDebug\remote-stub.obj >>link.dbg
37 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 …
39 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 …
41 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 …
43 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 …
45 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 …
[all …]
/netbsd-src/games/fortune/datfiles/
H A Dzippy7 A wide-eyed, innocent UNICORN, poised delicately in a MEADOW filled
10 Actually, what I'd like is a little toy spaceship!!
12 Adopt my lifestyle or I'll have to press charges.
14 All I can think of is a platter of organic PRUNE CRISPS being trampled
17 All of a sudden, I want to THROW OVER my promising ACTING CAREER, grow
18 a LONG BLACK BEARD and wear a BASEBALL HAT!! ... Although I don't know
23 All right, you degenerates! I want this place evacuated in 20 seconds!
25 All this time I've been VIEWING a RUSSIAN MIDGET SODOMIZE a HOUSECAT!
29 Am I accompanied by a PARENT or GUARDIAN?
31 Am I elected yet?
[all …]
/netbsd-src/external/mit/isl/dist/test_inputs/codegen/
H A Droman.in3i] -> { S_17[i0, i1, i2] -> [0, i0, 2, i1, 1, i2, 1] : exists (e0 = [(np1 - i)/4294967296], e1 = […
4i] -> { : exists (e0 = [(np1 - i)/4294967296]: 4294967296e0 <= np1 - i and 4294967296e0 >= -20 + …
5 [np1, i] -> { [i0, i1, i2, i3, i4, i5, i6] -> separate[o0] }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ShuffleDecode.cpp1 //===-- X86ShuffleDecode.cpp - X86 shuffle decode logic -------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
19 //===----------------------------------------------------------------------===//
21 //===----------------------------------------------------------------------===//
52 for (unsigned i = 0; i != NumElts; ++i) in DecodeInsertElementMask() local
53 ShuffleMask.push_back(i); in DecodeInsertElementMask()
54 for (unsigned i = 0; i != Len; ++i) in DecodeInsertElementMask() local
55 ShuffleMask[Idx + i] = NumElts + i; in DecodeInsertElementMask()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/html/
H A Dpostconf.1.html1 <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <link rel='stylesheet' type='text/css' href='postfix-doc.css'>
6 <title> Postfix manual - postconf(1) </title>
11 postconf - Postfix configuration utility
16 …<b>postconf</b> [<b>-dfhHnopvx</b>] [<b>-c</b> <i>config</i><b>_</b><i>dir</i>] [<b>-C</b> <i>clas…
18 …<b>postconf</b> [<b>-epv</b>] [<b>-c</b> <i>config</i><b>_</b><i>dir</i>] <i>parameter</i><b>=</b>…
20 … <b>postconf -#</b> [<b>-pv</b>] [<b>-c</b> <i>config</i><b>_</b><i>dir</i>] <i>parameter ...</i>
22 … <b>postconf -X</b> [<b>-pv</b>] [<b>-c</b> <i>config</i><b>_</b><i>dir</i>] <i>parameter ...</i>
26 …<b>postconf -M</b> [<b>-fovx</b>] [<b>-c</b> <i>config</i><b>_</b><i>dir</i>] [<i>service</i>[<b>/…
[all …]
H A Dsmtp-sink.1.html1 <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <link rel='stylesheet' type='text/css' href='postfix-doc.css'>
6 <title> Postfix manual - smtp-sink(1) </title>
8 SMTP-SINK(1) SMTP-SINK(1)
11 smtp-sink - parallelized SMTP/LMTP test server
14 <b>smtp-sink</b> [<i>options</i>] [<b>inet:</b>][<i>host</i>]:<i>port backlog</i>
16 <b>smtp-sink</b> [<i>options</i>] <b>unix:</b><i>pathname backlog</i>
19 <b>smtp-sink</b> listens on the named host (or address) and port. It takes
23 <b>smtp-sink</b> may also be configured to capture each mail delivery transac-
[all …]
/netbsd-src/sys/arch/ia64/disasm/
H A Ddisasm_extract.c3 /*-
4 * Copyright (c) 2000-2006 Marcel Moolenaar
30 /* __FBSDID("$FreeBSD: releng/10.1/sys/ia64/disasm/disasm_extract.c 159916 2006-06-24 19:21:11Z mar…
46 asm_cmpltr_add(struct asm_inst *i, enum asm_cmpltr_class c, in asm_cmpltr_add() argument
50 i->i_cmpltr[i->i_ncmpltrs].c_class = c; in asm_cmpltr_add()
51 i->i_cmpltr[i->i_ncmpltrs].c_type = t; in asm_cmpltr_add()
52 i->i_ncmpltrs++; in asm_cmpltr_add()
53 KASSERT(i->i_ncmpltrs < 6); in asm_cmpltr_add()
57 asm_hint(struct asm_inst *i, enum asm_cmpltr_class c) in asm_hint() argument
60 switch (FIELD(i->i_bits, 28, 2)) { /* hint */ in asm_hint()
[all …]
/netbsd-src/sys/dev/raidframe/
H A Drf_parityloggingdags.c3 * Copyright (c) 1995 Carnegie-Mellon University.
23 * Pittsburgh PA 15213-3890
58 * creates a DAG to perform a large-write operation:
61 * H -- NIL- Rod - NIL - Wnd ------ NIL - T
62 * \ Rod / \ Xor - Lpo /
89 int nWndNodes, nRodNodes, i; in rf_CommonCreateParityLoggingLargeWriteDAG() local
90 RF_RaidLayout_t *layoutPtr = &(raidPtr->Layout); in rf_CommonCreateParityLoggingLargeWriteDAG()
96 …RF_StripeNum_t parityStripeID = rf_RaidAddressToParityStripeID(&(raidPtr->Layout), asmap->raidAddr… in rf_CommonCreateParityLoggingLargeWriteDAG()
99 printf("[Creating parity-logging large-write DAG]\n"); in rf_CommonCreateParityLoggingLargeWriteDAG()
101 dag_h->creator = "ParityLoggingLargeWriteDAG"; in rf_CommonCreateParityLoggingLargeWriteDAG()
[all …]
/netbsd-src/external/gpl2/groff/dist/src/preproc/eqn/
H A Dlist.cpp3 // -*- C++ -*-
21 Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */
38 list_box *q = pp->to_list_box(); in append()
42 for (int i = 0; i < q->list.len; i++) { in append() local
43 list.append(q->list.p[i]); in append()
44 q->list.p[i] = 0; in append()
46 q->list.len = 0; in append()
51 list_box::list_box(box *pp) : list(pp), sty(-1) in list_box()
53 list_box *q = pp->to_list_box(); in list_box()
56 list.p[0] = q->list.p[0]; in list_box()
[all …]
H A Dpile.cpp3 // -*- C++ -*-
21 Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */
32 int i; in compute_metrics() local
33 for (i = 0; i < col.len; i++) in compute_metrics()
34 col.p[i]->compute_metrics(style); in compute_metrics()
36 for (i = 0; i < col.len; i++) in compute_metrics()
37 printf(">?\\n[" WIDTH_FORMAT "]", col.p[i]->uid); in compute_metrics()
41 for (i = 1; i < col.len; i++) in compute_metrics()
43 col.p[i-1]->uid, col.p[i]->uid, default_rule_thickness*5); in compute_metrics()
49 uid, uid, col.len-1, axis_height - shift_down); in compute_metrics()
[all …]
/netbsd-src/external/mit/isl/dist/test_inputs/codegen/cloog/
H A Dwalters.st1i, div36, div37, div38] : 3div37 = 2 + i and i >= 1 and i <= 10 and 3div36 >= -2 + i and 3div38 <=…
5i, div36, div37, div38] -> [(i)]; S4[i, div36, div37, div38] -> [(i)]; S3[i, div36, div37, div38]
9 - filter: "{ S1[i, div36, div37, div38] }"
10 - filter: "{ S2[i, div36, div37, div38] }"
11 - filter: "{ S3[i, div36, div37, div38] }"
12 - filter: "{ S4[i, div36, div37, div38] }"
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
H A Dtsan_clock_test.cc1 //===-- tsan_clock_test.cc ------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
66 for (uptr i = 0; i < size; i++) in TEST() local
67 vector.set(&cache, i, i + 1); in TEST()
70 uptr i = 0; in TEST() local
72 ASSERT_LT(i, size); in TEST()
73 ASSERT_EQ(sync.get_clean(i), ce.epoch); in TEST()
74 i++; in TEST()
76 ASSERT_EQ(i, size); in TEST()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_vector_clock.cpp1 //===-- tsan_vector_clock.cpp ---------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
27 for (uptr i = 0; i < kThreadSlotCount; i++) in Reset() local
28 clk_[i] = kEpochZero; in Reset()
32 for (uptr i = 0; i < kVectorClockSize; i++) _mm_store_si128(&vclk[i], z); in Reset()
40 for (uptr i = 0; i < kThreadSlotCount; i++) in Acquire() local
41 clk_[i] = max(clk_[i], src->clk_[i]); in Acquire()
44 m128 const* __restrict vsrc = reinterpret_cast<m128 const*>(src->clk_); in Acquire()
[all …]
/netbsd-src/external/mit/isl/dist/
H A Disl_dim_map.c2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010-2011 INRIA Saclay
8 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
9 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
31 int i; in isl_dim_map_alloc() local
37 dim_map->len = 1 + len; in isl_dim_map_alloc()
38 dim_map->m[0].pos = 0; in isl_dim_map_alloc()
39 dim_map->m[0].sgn = 1; in isl_dim_map_alloc()
40 for (i = 0; i < len; ++i) in isl_dim_map_alloc()
41 dim_map->m[1 + i].sgn = 0; in isl_dim_map_alloc()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
H A Damdgpu_smu_helper.c42 return (uint8_t) ((6200 - (vddc * VOLTAGE_SCALE)) / 25); in convert_to_vid()
47 return (uint16_t) ((6200 - (vid * 25)) / VOLTAGE_SCALE); in convert_to_vddc()
56 uint32_t array_size, i; in phm_copy_clock_limits_array() local
62 return -ENOMEM; in phm_copy_clock_limits_array()
64 for (i = 0; i < power_saving_clock_count; i++) in phm_copy_clock_limits_array()
65 table[i] = le32_to_cpu(pptable_array[i]); in phm_copy_clock_limits_array()
78 uint32_t array_size, i; in phm_copy_overdrive_settings_limits_array() local
84 return -ENOMEM; in phm_copy_overdrive_settings_limits_array()
86 for (i = 0; i < od_setting_count; i++) in phm_copy_overdrive_settings_limits_array()
87 table[i] = le32_to_cpu(pptable_array[i]); in phm_copy_overdrive_settings_limits_array()
[all …]
/netbsd-src/sys/dev/isapnp/
H A Disapnpdebug.c3 /*-
54 printf("%sMemory: %s,%sshadowable,decode-%s,%scacheable,%s", str, in isapnp_print_mem()
55 (mem->flags & ISAPNP_MEMATTR_ROM) ? "ROM," : "RAM,", in isapnp_print_mem()
56 (mem->flags & ISAPNP_MEMATTR_SHADOWABLE) ? "" : "non-", in isapnp_print_mem()
57 (mem->flags & ISAPNP_MEMATTR_HIGH_ADDR) ? in isapnp_print_mem()
58 "high-addr," : "range-len,", in isapnp_print_mem()
59 (mem->flags & ISAPNP_MEMATTR_CACHEABLE) ? "" : "non-", in isapnp_print_mem()
60 (mem->flags & ISAPNP_MEMATTR_WRITABLE) ? in isapnp_print_mem()
61 "writable," : "read-only,"); in isapnp_print_mem()
63 switch (mem->flags & ISAPNP_MEMWIDTH_MASK) { in isapnp_print_mem()
[all …]

12345678910>>...50