Home
last modified time | relevance | path

Searched refs:parts (Results 1 – 25 of 358) sorted by relevance

12345678910>>...15

/freebsd-14.2/crypto/openssh/openbsd-compat/
H A Dinet_aton.c92 u_int parts[4]; in inet_aton() local
93 u_int *pp = parts; in inet_aton()
130 if (pp >= parts + 3) in inet_aton()
146 n = pp - parts + 1; in inet_aton()
156 if ((val > 0xffffff) || (parts[0] > 0xff)) in inet_aton()
158 val |= parts[0] << 24; in inet_aton()
162 if ((val > 0xffff) || (parts[0] > 0xff) || (parts[1] > 0xff)) in inet_aton()
164 val |= (parts[0] << 24) | (parts[1] << 16); in inet_aton()
168 if ((val > 0xff) || (parts[0] > 0xff) || (parts[1] > 0xff) || (parts[2] > 0xff)) in inet_aton()
170 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in inet_aton()
/freebsd-14.2/contrib/unbound/compat/
H A Dinet_aton.c96 unsigned int parts[4]; in inet_aton() local
97 unsigned int *pp = parts; in inet_aton()
134 if (pp >= parts + 3) in inet_aton()
150 n = pp - parts + 1; in inet_aton()
160 if ((val > 0xffffff) || (parts[0] > 0xff)) in inet_aton()
162 val |= parts[0] << 24; in inet_aton()
166 if ((val > 0xffff) || (parts[0] > 0xff) || (parts[1] > 0xff)) in inet_aton()
168 val |= (parts[0] << 24) | (parts[1] << 16); in inet_aton()
172 if ((val > 0xff) || (parts[0] > 0xff) || (parts[1] > 0xff) || (parts[2] > 0xff)) in inet_aton()
174 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in inet_aton()
/freebsd-14.2/contrib/ldns/compat/
H A Dinet_aton.c96 unsigned int parts[4]; in inet_aton() local
97 unsigned int *pp = parts; in inet_aton()
134 if (pp >= parts + 3) in inet_aton()
150 n = pp - parts + 1; in inet_aton()
160 if ((val > 0xffffff) || (parts[0] > 0xff)) in inet_aton()
162 val |= parts[0] << 24; in inet_aton()
166 if ((val > 0xffff) || (parts[0] > 0xff) || (parts[1] > 0xff)) in inet_aton()
168 val |= (parts[0] << 24) | (parts[1] << 16); in inet_aton()
172 if ((val > 0xff) || (parts[0] > 0xff) || (parts[1] > 0xff) || (parts[2] > 0xff)) in inet_aton()
174 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in inet_aton()
/freebsd-14.2/sys/libkern/
H A Dinet_aton.c40 u_long parts[4]; in inet_aton() local
72 parts[n] = val; in inet_aton()
111 if (val > 0xffffff || parts[0] > 0xff) in inet_aton()
113 val |= parts[0] << 24; in inet_aton()
117 if (val > 0xffff || parts[0] > 0xff || parts[1] > 0xff) in inet_aton()
119 val |= (parts[0] << 24) | (parts[1] << 16); in inet_aton()
123 if (val > 0xff || parts[0] > 0xff || parts[1] > 0xff || in inet_aton()
124 parts[2] > 0xff) in inet_aton()
126 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in inet_aton()
/freebsd-14.2/lib/libc/inet/
H A Dinet_addr.c109 u_int8_t parts[4]; in inet_aton() local
110 u_int8_t *pp = parts; in inet_aton()
155 if (pp >= parts + 3 || val > 0xffU) in inet_aton()
176 n = pp - parts + 1; in inet_aton()
184 val |= (uint32_t)parts[0] << 24; in inet_aton()
190 val |= ((uint32_t)parts[0] << 24) | (parts[1] << 16); in inet_aton()
196 val |= ((uint32_t)parts[0] << 24) | (parts[1] << 16) | in inet_aton()
197 (parts[2] << 8); in inet_aton()
H A Dinet_network.c54 in_addr_t parts[4], *pp = parts; in inet_network() local
83 if (pp >= parts + 4 || val > 0xffU) in inet_network()
92 n = pp - parts; in inet_network()
97 val |= parts[i] & 0xff; in inet_network()
/freebsd-14.2/sbin/ipf/libipf/
H A Dinet_addr.c99 u_int parts[4]; in inet_aton() local
100 register u_int *pp = parts; in inet_aton()
137 if (pp >= parts + 3) in inet_aton()
153 n = pp - parts + 1; in inet_aton()
165 val |= parts[0] << 24; in inet_aton()
171 val |= (parts[0] << 24) | (parts[1] << 16); in inet_aton()
177 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in inet_aton()
/freebsd-14.2/contrib/tcpdump/
H A Dstrtoaddr.c62 u_int parts[4]; in strtoaddr() local
63 u_int *pp = parts; in strtoaddr()
98 if (pp >= parts + 3) in strtoaddr()
115 n = pp - parts + 1; in strtoaddr()
124 if ((parts[0] | parts[1] | parts[2] | val) > 0xff) in strtoaddr()
129 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in strtoaddr()
/freebsd-14.2/stand/libsa/
H A Dnet.c154 u_int parts[4]; in inet_addr() local
155 u_int *pp = parts; in inet_addr()
179 if (pp >= parts + 3 || val > 0xff) in inet_addr()
195 n = pp - parts + 1; in inet_addr()
204 val |= parts[0] << 24; in inet_addr()
210 val |= (parts[0] << 24) | (parts[1] << 16); in inet_addr()
216 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in inet_addr()
/freebsd-14.2/lib/libc/gen/
H A Dmodf.c38 } parts; member
52 } parts; member
63 (ix0) = ew_u.parts.msw; \
64 (ix1) = ew_u.parts.lsw; \
73 (i) = gh_u.parts.msw; \
81 iw_u.parts.msw = (ix0); \
82 iw_u.parts.lsw = (ix1); \
/freebsd-14.2/tools/test/stress2/tools/
H A Dsplitall.sh38 parts=$2
39 [ $pno -lt 1 -o $pno -gt $parts -o $parts -lt 1 ] &&
40 { echo "<part number> must be between 1 and <parts> ($parts)"; exit 1; }
54 (cd /tmp; echo $lst | tr ' ' '\n' | split -d -l $((n / parts + 1)) - str)
/freebsd-14.2/crypto/openssl/util/perl/OpenSSL/Config/
H A DQuery.pm112 my %parts = ( %{$self->get_sources(@sources)},
114 my @parts = map { @{$_} } values %parts;
125 ( ( map { @{$_} } values %parts ),
126 ( grep { !defined($parts{$_}) } @sources, @generator ) );
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp152 auto parts = &trace->parts; in DoResetImpl() local
154 while (!parts->Empty()) { in DoResetImpl()
155 auto part = parts->Front(); in DoResetImpl()
175 parts->Remove(part); in DoResetImpl()
178 CHECK_LE(parts->Size(), 1); in DoResetImpl()
329 auto* parts = &trace->parts; in SlotDetachImpl() local
333 CHECK_LE(parts->Size(), 1); in SlotDetachImpl()
334 part = parts->PopFront(); in SlotDetachImpl()
969 if (trace->parts.Empty()) in TraceSwitchPartImpl()
975 trace->parts.PushBack(part); in TraceSwitchPartImpl()
[all …]
H A Dtsan_rtl_thread.cpp257 auto parts = &trace.parts; in OnFinished() local
259 CHECK(parts->Queued(trace.local_head)); in OnFinished()
261 trace.local_head = parts->Next(trace.local_head); in OnFinished()
263 ctx->trace_part_recycle_finished += parts->Size(); in OnFinished()
265 ctx->trace_part_finished_excess += parts->Size(); in OnFinished()
268 parts->Size() > 1) { in OnFinished()
269 ctx->trace_part_finished_excess += parts->Size() - 1; in OnFinished()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp2322 assert(parts > 0); in tcSet()
2362 if (parts[i] != 0) { in tcLSB()
2377 if (parts[n] != 0) { in tcMSB()
2498 tcComplement(dst, parts); in tcNegate()
2499 tcIncrement(dst, parts); in tcNegate()
2599 tcSet(dst, 0, parts); in tcMultiply()
2650 tcSet(lhs, 0, parts); in tcDivide()
2731 while (parts) { in tcCompare()
2732 parts--; in tcCompare()
2733 if (lhs[parts] != rhs[parts]) in tcCompare()
[all …]
/freebsd-14.2/lib/msun/src/
H A Dmath_private.h100 } parts; member
118 } parts; member
133 (ix0) = ew_u.parts.msw; \
134 (ix1) = ew_u.parts.lsw; \
151 (i) = gh_u.parts.msw; \
160 (i) = gl_u.parts.lsw; \
168 iw_u.parts.msw = (ix0); \
169 iw_u.parts.lsw = (ix1); \
187 sh_u.parts.msw = (v); \
197 sl_u.parts.lsw = (v); \
/freebsd-14.2/crypto/openssl/crypto/asn1/
H A Dasn_mime.c405 STACK_OF(BIO) *parts = NULL; in SMIME_read_ASN1_ex()
440 sk_BIO_pop_free(parts, BIO_vfree); in SMIME_read_ASN1_ex()
445 asnin = sk_BIO_value(parts, 1); in SMIME_read_ASN1_ex()
449 sk_BIO_pop_free(parts, BIO_vfree); in SMIME_read_ASN1_ex()
459 sk_BIO_pop_free(parts, BIO_vfree); in SMIME_read_ASN1_ex()
480 *bcont = sk_BIO_value(parts, 0); in SMIME_read_ASN1_ex()
482 sk_BIO_free(parts); in SMIME_read_ASN1_ex()
616 STACK_OF(BIO) *parts; in multi_split()
623 parts = sk_BIO_new_null(); in multi_split()
624 *ret = parts; in multi_split()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegexCommand.cpp36 llvm::SmallVector<llvm::StringRef, 4> parts; in SubstituteVariables() local
37 input.split(parts, '%'); in SubstituteVariables()
39 output << parts[0]; in SubstituteVariables()
40 for (llvm::StringRef part : drop_begin(parts)) { in SubstituteVariables()
/freebsd-14.2/contrib/ofed/libibverbs/
H A Ddevice.c117 uint16_t parts[4]; in __ibv_get_device_guid() local
125 parts, parts + 1, parts + 2, parts + 3) != 4) in __ibv_get_device_guid()
129 guid = (guid << 16) | parts[i]; in __ibv_get_device_guid()
/freebsd-14.2/contrib/cortex-strings/scripts/
H A Dbench.py73 parts = got.split(':')
74 took = float(parts[7])
162 parts = line.split(':')
163 cache[':'.join(parts[:7])] = line
/freebsd-14.2/usr.bin/sort/
H A Dfile.c1385 merge_sub_lists(parts, n, f_out); in merge_list_parts()
1413 struct sort_list **parts; in mt_sort() local
1429 parts[i]->list = list->list + cstart; in mt_sort()
1430 parts[i]->memsize = 0; in mt_sort()
1431 parts[i]->sub_list_pos = i; in mt_sort()
1436 parts[i]->count = sz; in mt_sort()
1438 parts[i]->size = parts[i]->count; in mt_sort()
1456 mt_sort_thread, parts[i]); in mt_sort()
1478 merge_list_parts(parts, nthreads, fn); in mt_sort()
1482 sort_free(parts[i]); in mt_sort()
[all …]
/freebsd-14.2/sbin/fdisk/
H A Dfdisk.c82 struct dos_partition parts[NDOSPART]; member
352 partp = &mboot.parts[i]; in main()
373 partp = &mboot.parts[i]; in main()
389 partp = &mboot.parts[0]; in main()
471 print_part(&mboot.parts[i - 1]); in print_s0()
874 &mboot.parts[i]); in read_s0()
889 &mboot.parts[i]); in write_s0()
1148 partp = &mboot.parts[partition - 1]; in process_partition()
1158 &mboot.parts) + i - 1; in process_partition()
1289 partp = mboot.parts; in process_active()
[all …]
/freebsd-14.2/contrib/bmake/unit-tests/
H A Dposix1.exp16 Directory and filename parts of local variables
56 Directory and filename parts of local variables
102 Directory and filename parts of local variables
149 Directory and filename parts of local variables
/freebsd-14.2/stand/efi/gptboot/
H A Dproto.c228 int parts; in choice_protocol() local
255 parts = 0; in choice_protocol()
257 parts++; in choice_protocol()
274 if (parts == 0) in choice_protocol()
/freebsd-14.2/sys/contrib/device-tree/Bindings/iio/adc/
H A Dadi,ad9467.yaml13 The AD9467 and the parts similar with it, are high-speed analog-to-digital
15 per second (MSPS). Some parts support higher MSPS and some
18 All the parts support the register map described by Application Note AN-877

12345678910>>...15