Home
last modified time | relevance | path

Searched +full:count +full:- +full:up (Results 1 – 25 of 1214) sorted by relevance

12345678910>>...49

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp1 //===- LoopUnroll.cpp - Loop unroller pass --------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // been canonicalized by the -indvars pass, allowing it to determine the trip
12 //===----------------------------------------------------------------------===//
74 #define DEBUG_TYPE "loop-unroll"
77 "forget-scev-loop-unroll", cl::init(false), cl::Hidden,
79 " the current top-most loop. This is sometimes preferred to reduce"
83 UnrollThreshold("unroll-threshold", cl::Hidden,
88 "unroll-optsize-threshold", cl::init(0), cl::Hidden,
[all …]
H A DLoopUnrollAndJamPass.cpp1 //===- LoopUnrollAndJam.cpp - Loop unroll and jam pass --------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
54 #define DEBUG_TYPE "loop-unroll-and-jam"
71 AllowUnrollAndJam("allow-unroll-and-jam", cl::Hidden,
72 cl::desc("Allows loops to be unroll-and-jammed."));
75 "unroll-and-jam-count", cl::Hidden,
76 cl::desc("Use this unroll count for all loops including those with "
80 "unroll-and-jam-threshold", cl::init(60), cl::Hidden,
[all …]
/freebsd/share/doc/usd/12.vi/vi/
H A Dvi.chars41 characters are presented in their order in the \s-2ASCII\s0 character
63 A count specifies repetition.
68 As a command, scrolls down a half-window of text.
69 A count gives the number of (logical) lines to scroll, and is remembered
78 Forward window. A count specifies repetition.
81 Equivalent to \fB:f\fR\s-2CR\s0, printing the current file, whether
85 .iP "^H (\fR\s-2BS\s0\fP)" 15
93 .iP "^I\ (\fR\s-2TAB\s0\fP)" 15
100 .iP "^J\ (\fR\s-2LF\s0\fP)" 15
108 The \s-2ASCII\s0 formfeed character, this causes the screen to be cleared
[all …]
/freebsd/tests/sys/netinet/
H A Dlpm.sh1 #!/usr/bin/env atf-sh
2 #-
3 # SPDX-License-Identifier: BSD-2-Clause
41 jexec ${jname}a ifconfig ${epair0}a up
43 jexec ${jname}a ifconfig ${epair1}a up
47 jexec ${jname}b ifconfig ${epair0}b up
49 jexec ${jname}b ifconfig ${epair1}b up
51 jexec ${jname}b ifconfig ${lo_dst} up
68 jname="v4t-lpm_test1_success"
80 # A -> towards B via epair0a
[all …]
H A Ddivert.sh1 #!/usr/bin/env atf-sh
2 #-
3 # SPDX-License-Identifier: BSD-2-Clause
44 [ "$(uname -p)" = "i386" ]; then
50 if [ $$ -gt 65535 ]; then
51 xl=`printf "%x" $(($$ - 65535))`
66 ifconfig ${epair}a up
69 jname="v4t-${id}-${yl}-${xl}"
71 jexec ${jname} ifconfig ${epair}b up
74 atf_check -s exit:0 $(atf_get_srcdir)/${script_name} \
[all …]
/freebsd/tests/sys/netinet6/
H A Dlpm6.sh1 #!/usr/bin/env atf-sh
2 #-
3 # SPDX-License-Identifier: BSD-2-Clause
40 # enable link-local IPv6
41 jexec ${jname}a ndp -i ${epair0}a -- -disabled
42 jexec ${jname}a ifconfig ${epair0}a up
43 jexec ${jname}a ndp -i ${epair1}a -- -disabled
44 jexec ${jname}a ifconfig ${epair1}a up
45 jexec ${jname}a ifconfig ${lo_src} up
48 jexec ${jname}b ndp -i ${epair0}b -- -disabled
[all …]
/freebsd/usr.sbin/bluetooth/bluetooth-config/
H A Dbluetooth-config.sh2 #-
3 # ----------------------------------------------------------------------------
4 # "THE BEER-WARE LICENSE" (Revision 42):
7 # this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp
8 # ----------------------------------------------------------------------------
13 exerr () { echo -e "Error: $*" >&2 ; exit 1; }
14 print_syntax () { echo -e "Syntax: $0 scan [-d device] [-n node]"; exit 1; }
31 shift "$((OPTIND-1))"
34 [ "$#" -eq 0 ] || print_syntax
39 if [ $( id -u ) -ne 0 ]; then
[all …]
/freebsd/contrib/nvi/vi/
H A Dv_cmd.c1 /*-
28 /* 000 NUL -- The code in vi.c expects key 0 to be undefined. */
32 "[count]^A",
36 "[count]^B",
37 "^B scroll up by screens"},
44 "[count]^D",
45 "^D scroll down by half screens (setting count)"},
48 "[count]^E",
52 "[count]^F",
60 "[count]^H",
[all …]
H A Dv_scroll.c1 /*-
35 * ^F -- if the window is fairly small, using physical lines can result in
36 * a half-page scroll repainting the entire screen, which is not what the
38 * lines can make it impossible to display parts of the line -- there aren't
42 * M commands -- for large lines, they may all refer to the same line and
45 * Another issue is that page and half-page scrolling commands historically
46 * moved to the first non-blank character in the new line. If the line is
49 * this implementation, scrolling commands set the cursor to the first non-
59 * v_lgoto -- [count]G
60 * Go to first non-blank character of the line count, the last line
[all …]
H A Dvs_smap.c1 /*-
35 * vs_change --
74 if (lno > TMAP->lno) in vs_change()
82 if (lno < HMAP->lno) { in vs_change()
88 for (p = HMAP, cnt = sp->t_rows; cnt--; ++p) in vs_change()
89 --p->lno; in vs_change()
90 if (sp->lno >= lno) in vs_change()
91 --sp->lno; in vs_change()
95 for (p = HMAP, cnt = sp->t_rows; cnt--; ++p) in vs_change()
96 ++p->lno; in vs_change()
[all …]
/freebsd/contrib/ldns/ldns/
H A Dupdate.h6 * Copyright (c) 2005-2008, NLnet Labs. All rights reserved.
52 * Get the zo count
54 * \return the zo count
58 * Get the zo count
60 * \return the pr count
64 * Get the zo count
66 * \return the up count
70 * Get the zo count
72 * \return the ad count
76 * Set the zo count
[all …]
/freebsd/share/doc/psd/03.iosys/
H A Diosys1 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
37 .EH 'PSD:3-%''The UNIX I/O System'
38 .OH 'The UNIX I/O System''PSD:3-%'
61 in the paper ``The UNIX Time-sharing System.''
79 which work, or can work, with addressible 512-byte blocks.
91 Character-type devices have a much
102 in the low-order 8 bits and the major device number
103 in the next-higher 8 bits;
129 system calls is to set up entries in three separate
134 which is stored in the system's per-process
[all …]
/freebsd/contrib/nvi/man/
H A Dvi.144 is a screen-oriented text editor.
46 is a line-oriented text editor.
55 .Pq read-only
65 are intended as bug-for-bug compatible replacements for the original
89 .Bl -tag -width "-w size "
112 Start editing in read-only mode, as if the command name was
138 .Dq -
179 This means that it takes up almost the entire screen,
231 .Bl -tag -width Ds
237 Move the cursor up one line.
[all …]
/freebsd/share/doc/usd/13.viref/
H A Dvi.cmd.roff11 takes up the entire screen to display the edited file,
67 characters which take up more than one column on the screen.
71 characters which take up more than one column on the screen.
96 .CO <control-B> ,
97 .CO <control-D> ,
98 .CO <control-E> ,
99 .CO <control-F> ,
100 .CO <control-U> ,
101 .CO <control-Y> ,
154 command described below notes where the cursor ends up after it is
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DX509_new.pod9 - X509 certificate ASN1 allocation and deallocation functions
29 count of B<1>. Many X509 functions such as X509_check_purpose(), and
38 X509_free() decrements the reference count of B<X509> structure B<a> and
39 frees it up if the reference count is zero. If the argument is NULL,
42 X509_up_ref() increments the reference count of B<a>.
44 X509_chain_up_ref() increases the reference count of all certificates in
54 used by several different operations each of which will free it up after
57 The function X509_chain_up_ref() doesn't just up the reference count of
101 Copyright 2002-2024 The OpenSSL Project Authors. All Rights Reserved.
H A DX509_get_pubkey.pod7 X509_REQ_get_X509_PUBKEY - get or set certificate or certificate request
28 reference count incremented: this means the returned key must be freed up
30 the reference count of the returned B<EVP_PKEY> so it must not be freed up
35 must not be freed up after use.
38 B<pkey>. The key B<pkey> should be freed up after use.
47 return the cached structure with its reference count incremented to
80 Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
/freebsd/contrib/arm-optimized-routines/string/aarch64/
H A Dmemcpy-sve.S2 * memcpy - copy memory area
4 * Copyright (c) 2019-2023, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64, Advanced SIMD, SVE, unaligned accesses.
16 .arch armv8-a+sve
20 #define count x2 macro
41 Copies are split into 3 main cases: small copies of up to 32 bytes, medium
42 copies of up to 128 bytes, and large copies. The overhead of the overlap
46 The source pointer is 16-byte aligned to minimize unaligned accesses.
52 cmp count, 128
[all …]
H A Dmemcpy-advsimd.S2 * memcpy - copy memory area
4 * Copyright (c) 2019-2023, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64, Advanced SIMD, unaligned accesses.
18 #define count x2 macro
44 Copies are split into 3 main cases: small copies of up to 32 bytes, medium
45 copies of up to 128 bytes, and large copies. The overhead of the overlap
49 The source pointer is 16-byte aligned to minimize unaligned accesses.
55 add srcend, src, count
56 cmp count, 128
[all …]
/freebsd/sys/dev/mlx5/mlx5_lib/
H A Dmlx5_gid.c1 /*-
14 * - Redistributions of source code must retain the above
18 * - Redistributions in binary form must reproduce the above
42 ida_init(&dev->roce.reserved_gids.ida); in mlx5_init_reserved_gids()
43 dev->roce.reserved_gids.start = tblsz; in mlx5_init_reserved_gids()
44 dev->roce.reserved_gids.count = 0; in mlx5_init_reserved_gids()
49 WARN_ON(!ida_is_empty(&dev->roce.reserved_gids.ida)); in mlx5_cleanup_reserved_gids()
50 dev->roce.reserved_gids.start = 0; in mlx5_cleanup_reserved_gids()
51 dev->roce.reserved_gids.count = 0; in mlx5_cleanup_reserved_gids()
52 ida_destroy(&dev->roce.reserved_gids.ida); in mlx5_cleanup_reserved_gids()
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DX509_new.31 .\" -*- mode: troff; coding: utf-8 -*-
58 .TH X509_NEW 3ossl 2025-09-30 3.5.4 OpenSSL
68 \&\- X509 certificate ASN1 allocation and deallocation functions
88 count of \fB1\fR. Many X509 functions such as \fBX509_check_purpose()\fR, and
97 \&\fBX509_free()\fR decrements the reference count of \fBX509\fR structure \fBa\fR and
98 frees it up if the reference count is zero. If the argument is NULL,
101 \&\fBX509_up_ref()\fR increments the reference count of \fBa\fR.
103 \&\fBX509_chain_up_ref()\fR increases the reference count of all certificates in
112 used by several different operations each of which will free it up after
115 The function \fBX509_chain_up_ref()\fR doesn't just up the reference count of
[all …]
/freebsd/contrib/unbound/util/
H A Dtimehist.c2 * util/timehist.c - make histogram of time values.
56 if(v->tv_sec == 0 && v->tv_usec == 0) { in timestwo()
57 v->tv_usec = 1; in timestwo()
60 v->tv_sec *= 2; in timestwo()
61 v->tv_usec *= 2; in timestwo()
62 if(v->tv_usec == 1024*1024) { in timestwo()
64 v->tv_sec = 1; in timestwo()
65 v->tv_usec = 0; in timestwo()
77 for(i=0; i<hist->num; i++) { in dosetup()
78 hist->buckets[i].lower = last; in dosetup()
[all …]
/freebsd/sys/arm64/arm64/
H A Dmemset.S29 * ARMv8-a, AArch64
40 #define count x2 macro
65 cmp count, #64
68 cmp count, #15
71 ands tmp1, count, #0x30
77 stp A_l, A_l, [dst, #-48]
79 stp A_l, A_l, [dst, #-32]
81 stp A_l, A_l, [dst, #-16]
84 and count, count, #15
85 add dst, dst, count
[all …]
/freebsd/sys/kern/
H A Dsubr_blist.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
30 * BLIST.C - Bitmap allocator/deallocator, using a radix tree with hinting
61 * The non-blocking nature of allocations and frees is required by swap
66 * memory) by BLIST_RADIX lower-level nodes. This is a recursive
72 * BLIST_RADIX lower-level nodes of a some nodes may not be allocated.
82 * This code can be compiled stand-alone for debugging.
131 int *count, int maxcount);
132 static daddr_t blst_meta_alloc(blmeta_t *scan, daddr_t cursor, int *count,
134 static void blst_leaf_free(blmeta_t *scan, daddr_t relblk, int count);
[all …]
/freebsd/contrib/ntp/ntpd/
H A Drefclock_wwv.c2 * refclock_wwv - clock driver for NIST WWV/H time/frequency station
43 * kHz and mu-law companding. This is the same standard as used by the
53 * Report 97-8-1, University of Delaware, August 1997, 25 pp., available
61 * a nonzero ICOM ID select code. The C-IV trace is turned on if the
68 * port, where 0 is the mike port (default) and 1 is the line-in port.
74 * CEVNT_PROP propagation failure - no stations heard
82 #define PRECISION (-10) /* precision assumed (about 1 ms) */
99 #define AUDIO_PHI 5e-6 /* dispersion growth factor */
193 #define AMIN 3 /* min bit count */
468 int count; /* match count */ global() member
494 int count; /* bit counter */ global() member
636 struct wwvunit *up; wwv_start() local
761 struct wwvunit *up; wwv_shutdown() local
792 struct wwvunit *up; wwv_receive() local
880 struct wwvunit *up; wwv_poll() local
928 struct wwvunit *up; wwv_rf() local
1302 struct wwvunit *up; wwv_qrz() local
1389 struct wwvunit *up; wwv_endpoc() local
1619 struct wwvunit *up; wwv_epoch() local
1755 struct wwvunit *up; wwv_rsec() local
2054 struct wwvunit *up; wwv_clock() local
2124 struct wwvunit *up; wwv_corr4() local
2220 struct wwvunit *up; wwv_tsec() local
2400 struct wwvunit *up; wwv_newchan() local
2493 struct wwvunit *up; wwv_newgame() local
2574 struct wwvunit *up; wwv_qsy() local
2617 timecode(struct wwvunit * up,char * tc,size_t tcsiz) timecode() argument
2681 struct wwvunit *up; wwv_gain() local
[all...]
/freebsd/contrib/netbsd-tests/net/ndp/
H A Dt_dad.sh1 # $NetBSD: t_dad.sh,v 1.12 2016/11/25 08:51:17 ozaki-r Exp $
31 DEBUG=${DEBUG:-false}
53 atf_set "descr" "Tests for IPv6 DAD count behavior"
65 atf_check -s exit:0 rump.ifconfig shmif0 inet6 $ip
66 atf_check -s exit:0 rump.ifconfig shmif0 up
67 atf_check -s exit:0 rump.ifconfig -w 10
93 atf_check -s exit:0 rump.ifconfig shmif0 inet6 $localip1
94 atf_check -s exit:0 rump.ifconfig shmif0 inet6 $localip2
97 atf_check -s exit:0 rump.ifconfig shmif0 up
102 atf_check -s not-exit:0 -x "cat ./out |grep $localip1 |grep -q tentative"
[all …]

12345678910>>...49